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

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

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

            return(coll);
        }