Gets a OleroTrainingBiz.Student from the already loaded records in this DataManager, by primary key.
A Student, or null if not found
This method is made available for when the dataset has been serialized from session state or disk.
This example shows a reason to use this method.
/* first web page - save dataset and primary keys */ Session["DataSet"] = dm.DataSet; Session["StudentID"] = _Student.ID; /* second web page - need to get currend contact */ DataManager dm = new DataManager(Config.Dsn); dm.DataSet = (DataSet)Session["DataSet"]; _Student = dm.GetContactFromDataSet((System.Int32)Session["StudentID"]);
DataManager Class | OleroTrainingBiz Namespace