ORM Sample Class Library

DataManager.GetStudentCollectionFromDataSet Method 

Gets a collection of Student from the already loaded records in this DataManager instance.

[Visual Basic]
Public Function GetStudentCollectionFromDataSet() As StudentCollection
[C#]
public StudentCollection GetStudentCollectionFromDataSet();

Return Value

A collection of Student objects.

Remarks

This method is made available for when the dataset has been serialized from session state or disk. This method will return all Student loaded.

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 current contact */
DataManager dm = new DataManager(Config.Dsn);
dm.DataSet = (DataSet)Session["DataSet"];
_Student = dm.GetContactFromDataSet((int)Session["StudentID"]);

See Also

DataManager Class | OleroTrainingBiz Namespace


ataSet%C2%A0Method%C2%A0">Send comments on this topic.

Copyright Olero Software Inc. 2002-2004

Generated from assembly OleroTrainingBiz [1.0.1565.29993]

29993]

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