Exemplo n.º 1
0
        public LUserCollection FetchByQuery(Query qry)
        {
            var coll = new LUserCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 2
0
        public LUserCollection FetchAll()
        {
            var coll = new LUserCollection();
            var qry  = new Query(LUser.Schema);

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

            return(coll);
        }