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

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

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

            return(coll);
        }