public AspnetSchemaVersionCollection FetchAll()
 {
     AspnetSchemaVersionCollection coll = new AspnetSchemaVersionCollection();
     Query qry = new Query(AspnetSchemaVersion.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public AspnetSchemaVersionCollection FetchByQuery(Query qry)
 {
     AspnetSchemaVersionCollection coll = new AspnetSchemaVersionCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public AspnetSchemaVersionCollection FetchByID(object Feature)
 {
     AspnetSchemaVersionCollection coll = new AspnetSchemaVersionCollection().Where("Feature", Feature).Load();
     return coll;
 }