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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }