コード例 #1
0
ファイル: TRegListController.cs プロジェクト: khaha2210/VXIS
 public TRegListCollection FetchAll()
 {
     TRegListCollection coll = new TRegListCollection();
     Query qry = new Query(TRegList.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #2
0
ファイル: TRegListController.cs プロジェクト: khaha2210/VXIS
 public TRegListCollection FetchByQuery(Query qry)
 {
     TRegListCollection coll = new TRegListCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #3
0
ファイル: TRegListController.cs プロジェクト: khaha2210/VXIS
 public TRegListCollection FetchByID(object TestRegDetailId)
 {
     TRegListCollection coll = new TRegListCollection().Where("TestRegDetail_ID", TestRegDetailId).Load();
     return coll;
 }