コード例 #1
0
        public AspnetUsersInRoleCollection FetchByQuery(Query qry)
        {
            AspnetUsersInRoleCollection coll = new AspnetUsersInRoleCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #2
0
        public AspnetUsersInRoleCollection FetchAll()
        {
            AspnetUsersInRoleCollection coll = new AspnetUsersInRoleCollection();
            Query qry = new Query(AspnetUsersInRole.Schema);

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