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