public LStandardTestCollection FetchByQuery(Query qry) { LStandardTestCollection coll = new LStandardTestCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public LStandardTestCollection FetchAll() { LStandardTestCollection coll = new LStandardTestCollection(); Query qry = new Query(LStandardTest.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public LStandardTestCollection FetchByID(object TestDataId) { LStandardTestCollection coll = new LStandardTestCollection().Where("TestData_ID", TestDataId).Load(); return(coll); }