Example #1
0
 public FBUserCollection FetchAll()
 {
     FBUserCollection coll = new FBUserCollection();
     Query qry = new Query(FBUser.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Example #2
0
 public FBUserCollection FetchByQuery(Query qry)
 {
     FBUserCollection coll = new FBUserCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }