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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }