コード例 #1
0
        public TblVersionCollection FetchByQuery(Query qry)
        {
            var coll = new TblVersionCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #2
0
        public TblVersionCollection FetchAll()
        {
            var coll = new TblVersionCollection();
            var qry  = new Query(TblVersion.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #3
0
        public TblVersionCollection FetchByID(object PkIntID)
        {
            TblVersionCollection coll = new TblVersionCollection().Where("PK_intID", PkIntID).Load();

            return(coll);
        }