コード例 #1
0
 public NlontCollection FetchAll()
 {
     NlontCollection coll = new NlontCollection();
     Query qry = new Query(Nlont.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #2
0
 public NlontCollection FetchByQuery(Query qry)
 {
     NlontCollection coll = new NlontCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader()); 
     return coll;
 }
コード例 #3
0
 public NlontCollection FetchByID(object OrderNumber)
 {
     NlontCollection coll = new NlontCollection().Where("OrderNumber", OrderNumber).Load();
     return coll;
 }