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

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

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

            return(coll);
        }