Gets a OleroTrainingBiz.Contact from the already loaded records in this DataManager, by primary key.
A Contact, 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["ContactID"] = _Contact.ID; /* second web page - need to get currend contact */ DataManager dm = new DataManager(Config.Dsn); dm.DataSet = (DataSet)Session["DataSet"]; _Contact = dm.GetContactFromDataSet((System.Int32)Session["ContactID"]);
DataManager Class | OleroTrainingBiz Namespace