Exemple #1
0
        public LStandardTestCollection FetchByQuery(Query qry)
        {
            var coll = new LStandardTestCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #2
0
        public LStandardTestCollection FetchAll()
        {
            var coll = new LStandardTestCollection();
            var qry  = new Query(LStandardTest.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #3
0
        public LStandardTestCollection FetchByID(object TestDataId)
        {
            LStandardTestCollection coll = new LStandardTestCollection().Where("TestData_ID", TestDataId).Load();

            return(coll);
        }