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