예제 #1
0
        public LUserCollection FetchByQuery(Query qry)
        {
            var coll = new LUserCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
예제 #2
0
        public LUserCollection FetchAll()
        {
            var coll = new LUserCollection();
            var qry  = new Query(LUser.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
예제 #3
0
        public LUserCollection FetchByID(object UserId)
        {
            LUserCollection coll = new LUserCollection().Where("User_ID", UserId).Load();

            return(coll);
        }