public AsnFileLogCollection FetchAll()
 {
     AsnFileLogCollection coll = new AsnFileLogCollection();
     Query qry = new Query(AsnFileLog.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public AsnFileLogCollection FetchByQuery(Query qry)
 {
     AsnFileLogCollection coll = new AsnFileLogCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader()); 
     return coll;
 }
 public AsnFileLogCollection FetchByID(object LogId)
 {
     AsnFileLogCollection coll = new AsnFileLogCollection().Where("log_ID", LogId).Load();
     return coll;
 }