Esempio n. 1
0
 public FBUserCollection FetchAll()
 {
     FBUserCollection coll = new FBUserCollection();
     Query qry = new Query(FBUser.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Esempio n. 2
0
 public FBUserCollection FetchByQuery(Query qry)
 {
     FBUserCollection coll = new FBUserCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Esempio n. 3
0
 public FBUserCollection FetchByID(object Fbid)
 {
     FBUserCollection coll = new FBUserCollection().Where("fbid", Fbid).Load();
     return coll;
 }