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