コード例 #1
0
ファイル: OrdersLogController.cs プロジェクト: eleooo/App
 public OrdersLogCollection FetchAll()
 {
     OrdersLogCollection coll = new OrdersLogCollection();
     Query qry = new Query(OrdersLog.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #2
0
ファイル: OrdersLogController.cs プロジェクト: eleooo/App
 public OrdersLogCollection FetchByQuery(Query qry)
 {
     OrdersLogCollection coll = new OrdersLogCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #3
0
ファイル: OrdersLogController.cs プロジェクト: eleooo/App
 public OrdersLogCollection FetchByID(object Id)
 {
     OrdersLogCollection coll = new OrdersLogCollection().Where("ID", Id).Load();
     return coll;
 }