Exemple #1
0
        public AspnetPersonalizationAllUserCollection FetchByQuery(Query qry)
        {
            AspnetPersonalizationAllUserCollection coll = new AspnetPersonalizationAllUserCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #2
0
        public AspnetPersonalizationAllUserCollection FetchAll()
        {
            AspnetPersonalizationAllUserCollection coll = new AspnetPersonalizationAllUserCollection();
            Query qry = new Query(AspnetPersonalizationAllUser.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #3
0
        public AspnetPersonalizationAllUserCollection FetchByID(object PathId)
        {
            AspnetPersonalizationAllUserCollection coll = new AspnetPersonalizationAllUserCollection().Where("PathId", PathId).Load();

            return(coll);
        }