BizBlox
Find Method
Namespacespixolut.BizBloxDOCollectionFind()()()
BizBlox
Perform a Find to populate the DOCollection, using the SQLBuilder that has been previously set in the SetCurrentQuery() method.
Declaration Syntax
C#Visual BasicVisual C++
public void Find()
Public Sub Find
public:
void Find()
Remarks

Before calling Find(), SetCurrentQuery() must first be called to set the DOCollection's SQLBuilder. It is this previously-set SQLBuilder that will be used in Find().

Examples

Find() is most commonly used where a SQLBuilder has been generated outside the DOCollection. For example:

CopyC#
Dim sColl as New StudentCollection
Dim mySql as SQLBuilder = sColl.GetSqlBuilder()
mySql.addWhere(Student.Columns.Name, name)
sColl.SetCurrentQuery(mySql)
sColl.Find()

Assembly: pixolut.BizBlox (Module: pixolut.BizBlox) Version: 1.8.5.0