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