Example #1
0
 public UsersInfoCollection FetchAll()
 {
     UsersInfoCollection coll = new UsersInfoCollection();
     Query qry = new Query(UsersInfo.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Example #2
0
 public UsersInfoCollection FetchByQuery(Query qry)
 {
     UsersInfoCollection coll = new UsersInfoCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Example #3
0
 public UsersInfoCollection FetchByID(object UserKey)
 {
     UsersInfoCollection coll = new UsersInfoCollection().Where("user_key", UserKey).Load();
     return coll;
 }