示例#1
0
 public FilesystemCollection FetchAll()
 {
     var coll = new FilesystemCollection();
     var qry = new Query(Filesystem.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
示例#2
0
 public FilesystemCollection FetchByQuery(Query qry)
 {
     var coll = new FilesystemCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
示例#3
0
 public FilesystemCollection FetchByID(object Guid)
 {
     FilesystemCollection coll = new FilesystemCollection().Where("GUID", Guid).Load();
     return coll;
 }