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

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

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

            return(coll);
        }