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

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

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

            return(coll);
        }