Ejemplo n.º 1
0
 public EmbeeObjectCollection FetchAll()
 {
     EmbeeObjectCollection coll = new EmbeeObjectCollection();
     Query qry = new Query(EmbeeObject.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Ejemplo n.º 2
0
 public EmbeeObjectCollection FetchByQuery(Query qry)
 {
     EmbeeObjectCollection coll = new EmbeeObjectCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Ejemplo n.º 3
0
 public EmbeeObjectCollection FetchByID(object EmbeeObjectKey)
 {
     EmbeeObjectCollection coll = new EmbeeObjectCollection().Where("embee_object_key", EmbeeObjectKey).Load();
     return coll;
 }