示例#1
0
        public LUserCollection FetchByQuery(Query qry)
        {
            LUserCollection coll = new LUserCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#2
0
 public LUserCollection FetchAll()
 {
     LUserCollection coll = new LUserCollection();
     Query qry = new Query(LUser.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
示例#3
0
        public LUserCollection FetchAll()
        {
            LUserCollection coll = new LUserCollection();
            Query           qry  = new Query(LUser.Schema);

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

            return(coll);
        }
示例#5
0
 public LUserCollection FetchByQuery(Query qry)
 {
     LUserCollection coll = new LUserCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
示例#6
0
 public LUserCollection FetchByID(object UserId)
 {
     LUserCollection coll = new LUserCollection().Where("User_ID", UserId).Load();
     return coll;
 }