当前位置: 首页>>代码示例>>C#>>正文


C# Query.ExecuteReader方法代码示例

本文整理汇总了C#中Query.ExecuteReader方法的典型用法代码示例。如果您正苦于以下问题:C# Query.ExecuteReader方法的具体用法?C# Query.ExecuteReader怎么用?C# Query.ExecuteReader使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Query的用法示例。


在下文中一共展示了Query.ExecuteReader方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: FetchAll

 public ContactTableCollection FetchAll()
 {
     ContactTableCollection coll = new ContactTableCollection();
     Query qry = new Query(ContactTable.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
开发者ID:Publiship,项目名称:WWI_CRM_folders,代码行数:7,代码来源:ContactTableController.cs

示例2: FetchAll

 public StudyHistoryCollection FetchAll()
 {
     var coll = new StudyHistoryCollection();
     var qry = new Query(StudyHistory.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
开发者ID:khaha2210,项目名称:radio,代码行数:7,代码来源:StudyHistoryController.cs

示例3: FetchAll

 public DisposeTableCollection FetchAll()
 {
     DisposeTableCollection coll = new DisposeTableCollection();
     Query qry = new Query(DisposeTable.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
开发者ID:howgoo,项目名称:SubSonic-2.0,代码行数:7,代码来源:DisposeTableController.cs

示例4: FetchAll

 public QheDoituongThuocCollection FetchAll()
 {
     QheDoituongThuocCollection coll = new QheDoituongThuocCollection();
     Query qry = new Query(QheDoituongThuoc.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
开发者ID:khaha2210,项目名称:VXIS,代码行数:7,代码来源:QheDoituongThuocController.cs

示例5: FetchAll

 public B3LookupContactIDCollection FetchAll()
 {
     B3LookupContactIDCollection coll = new B3LookupContactIDCollection();
     Query qry = new Query(B3LookupContactID.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
开发者ID:Publiship,项目名称:WWI_CRM_folders,代码行数:7,代码来源:B3LookupContactIDController.cs

示例6: FetchAll

 public TDutruThuocCollection FetchAll()
 {
     TDutruThuocCollection coll = new TDutruThuocCollection();
     Query qry = new Query(TDutruThuoc.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
开发者ID:khaha2210,项目名称:VXIS,代码行数:7,代码来源:TDutruThuocController.cs

示例7: FetchAll

 public AspnetPersonalizationAllUserCollection FetchAll()
 {
     AspnetPersonalizationAllUserCollection coll = new AspnetPersonalizationAllUserCollection();
     Query qry = new Query(AspnetPersonalizationAllUser.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
开发者ID:unepwcmc,项目名称:sigtrade,代码行数:7,代码来源:AspnetPersonalizationAllUserController.cs

示例8: FetchAll

 public URLTagsExtCollection FetchAll()
 {
     URLTagsExtCollection coll = new URLTagsExtCollection();
     Query qry = new Query(URLTagsExt.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
开发者ID:rafathan,项目名称:OriginalIntranet,代码行数:7,代码来源:URLTagsExtController.cs

示例9: FetchAll

 public DmucDiachinhCollection FetchAll()
 {
     DmucDiachinhCollection coll = new DmucDiachinhCollection();
     Query qry = new Query(DmucDiachinh.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
开发者ID:khaha2210,项目名称:VXIS,代码行数:7,代码来源:DmucDiachinhController.cs

示例10: FetchAll

 public PGenuCollection FetchAll()
 {
     PGenuCollection coll = new PGenuCollection();
     Query qry = new Query(PGenu.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
开发者ID:unepwcmc,项目名称:sigtrade,代码行数:7,代码来源:PGenuController.cs

示例11: FetchAll

 public KcbDangkySokhamCollection FetchAll()
 {
     KcbDangkySokhamCollection coll = new KcbDangkySokhamCollection();
     Query qry = new Query(KcbDangkySokham.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
开发者ID:vmshis2020,项目名称:VMSHISServer,代码行数:7,代码来源:KcbDangkySokhamController.cs

示例12: FetchAll

 public ErrorLogCollection FetchAll()
 {
     ErrorLogCollection coll = new ErrorLogCollection();
     Query qry = new Query(ErrorLog.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
开发者ID:khaha2210,项目名称:radio,代码行数:7,代码来源:ErrorLogController.cs

示例13: FetchAll

 public TResultDetailCollection FetchAll()
 {
     TResultDetailCollection coll = new TResultDetailCollection();
     Query qry = new Query(TResultDetail.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
开发者ID:khaha2210,项目名称:VXIS,代码行数:7,代码来源:TResultDetailController.cs

示例14: FetchAll

 public HostCollection FetchAll()
 {
     HostCollection coll = new HostCollection();
     Query qry = new Query(Host.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
开发者ID:Letractively,项目名称:dotnetkicks,代码行数:7,代码来源:HostController.cs

示例15: FetchAll

 public Registration1Collection FetchAll()
 {
     Registration1Collection coll = new Registration1Collection();
     Query qry = new Query(Registration1.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
开发者ID:Publiship,项目名称:WWI_CRM_folders,代码行数:7,代码来源:Registration1Controller.cs


注:本文中的Query.ExecuteReader方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。