ORM Sample Class Library

DataManager.GetStudentFromDataSet Method 

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

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

Parameters

ID
Primary key of the data row to retrieve.

Return Value

A Student, 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["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"]);

See Also

DataManager Class | OleroTrainingBiz Namespace


div>29993]

delICustomTypeDescriptorGetClassName.html">ICustomTypeDescriptor.GetClassName (inherited from BusinessBase)GetClassName