Ejemplo n.º 1
0
 public CannedTextCollection FetchAll()
 {
     var coll = new CannedTextCollection();
     var qry = new Query(CannedText.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Ejemplo n.º 2
0
 public CannedTextCollection FetchByQuery(Query qry)
 {
     var coll = new CannedTextCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Ejemplo n.º 3
0
 public CannedTextCollection FetchByID(object Guid)
 {
     CannedTextCollection coll = new CannedTextCollection().Where("GUID", Guid).Load();
     return coll;
 }