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);
        }