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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#3
0
        public AspnetSchemaVersionCollection FetchByID(object Feature)
        {
            AspnetSchemaVersionCollection coll = new AspnetSchemaVersionCollection().Where("Feature", Feature).Load();

            return(coll);
        }