public PhpssSvarCollection FetchByQuery(Query qry) { PhpssSvarCollection coll = new PhpssSvarCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public PhpssSvarCollection FetchAll() { PhpssSvarCollection coll = new PhpssSvarCollection(); Query qry = new Query(PhpssSvar.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public PhpssSvarCollection FetchByID(object Id) { PhpssSvarCollection coll = new PhpssSvarCollection().Where("id", Id).Load(); return(coll); }