ORM Sample Class Library

DataManager.GetContactFromDataSet Method 

Gets a OleroTrainingBiz.Contact from the already loaded records in this DataManager, by primary key.

[Visual Basic]
Public Function GetContactFromDataSet( _
   ByVal ID As Integer _
) As Contact
[C#]
public Contact GetContactFromDataSet(
   int ID
);

Parameters

ID
Primary key of the data row to retrieve.

Return Value

A Contact, or null if not found

Remarks

This method is made available for when the dataset has been serialized from session state or disk.

Example

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"]);

See Also

DataManager Class | OleroTrainingBiz Namespace


od.gif">ICustomTypeDescriptor.GetClassName (inherited from BusinessBase)GetClassName