コード例 #1
0
ファイル: LangController.cs プロジェクト: hieuuk/pingpoong
 public LangCollection FetchAll()
 {
     LangCollection coll = new LangCollection();
     Query qry = new Query(Lang.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #2
0
ファイル: LangController.cs プロジェクト: hieuuk/pingpoong
 public LangCollection FetchByQuery(Query qry)
 {
     LangCollection coll = new LangCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }