本文整理汇总了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;
}
示例2: FetchAll
public StudyHistoryCollection FetchAll()
{
var coll = new StudyHistoryCollection();
var qry = new Query(StudyHistory.Schema);
coll.LoadAndCloseReader(qry.ExecuteReader());
return coll;
}
示例3: FetchAll
public DisposeTableCollection FetchAll()
{
DisposeTableCollection coll = new DisposeTableCollection();
Query qry = new Query(DisposeTable.Schema);
coll.LoadAndCloseReader(qry.ExecuteReader());
return coll;
}
示例4: FetchAll
public QheDoituongThuocCollection FetchAll()
{
QheDoituongThuocCollection coll = new QheDoituongThuocCollection();
Query qry = new Query(QheDoituongThuoc.Schema);
coll.LoadAndCloseReader(qry.ExecuteReader());
return coll;
}
示例5: FetchAll
public B3LookupContactIDCollection FetchAll()
{
B3LookupContactIDCollection coll = new B3LookupContactIDCollection();
Query qry = new Query(B3LookupContactID.Schema);
coll.LoadAndCloseReader(qry.ExecuteReader());
return coll;
}
示例6: FetchAll
public TDutruThuocCollection FetchAll()
{
TDutruThuocCollection coll = new TDutruThuocCollection();
Query qry = new Query(TDutruThuoc.Schema);
coll.LoadAndCloseReader(qry.ExecuteReader());
return coll;
}
示例7: FetchAll
public AspnetPersonalizationAllUserCollection FetchAll()
{
AspnetPersonalizationAllUserCollection coll = new AspnetPersonalizationAllUserCollection();
Query qry = new Query(AspnetPersonalizationAllUser.Schema);
coll.LoadAndCloseReader(qry.ExecuteReader());
return coll;
}
示例8: FetchAll
public URLTagsExtCollection FetchAll()
{
URLTagsExtCollection coll = new URLTagsExtCollection();
Query qry = new Query(URLTagsExt.Schema);
coll.LoadAndCloseReader(qry.ExecuteReader());
return coll;
}
示例9: FetchAll
public DmucDiachinhCollection FetchAll()
{
DmucDiachinhCollection coll = new DmucDiachinhCollection();
Query qry = new Query(DmucDiachinh.Schema);
coll.LoadAndCloseReader(qry.ExecuteReader());
return coll;
}
示例10: FetchAll
public PGenuCollection FetchAll()
{
PGenuCollection coll = new PGenuCollection();
Query qry = new Query(PGenu.Schema);
coll.LoadAndCloseReader(qry.ExecuteReader());
return coll;
}
示例11: FetchAll
public KcbDangkySokhamCollection FetchAll()
{
KcbDangkySokhamCollection coll = new KcbDangkySokhamCollection();
Query qry = new Query(KcbDangkySokham.Schema);
coll.LoadAndCloseReader(qry.ExecuteReader());
return coll;
}
示例12: FetchAll
public ErrorLogCollection FetchAll()
{
ErrorLogCollection coll = new ErrorLogCollection();
Query qry = new Query(ErrorLog.Schema);
coll.LoadAndCloseReader(qry.ExecuteReader());
return coll;
}
示例13: FetchAll
public TResultDetailCollection FetchAll()
{
TResultDetailCollection coll = new TResultDetailCollection();
Query qry = new Query(TResultDetail.Schema);
coll.LoadAndCloseReader(qry.ExecuteReader());
return coll;
}
示例14: FetchAll
public HostCollection FetchAll()
{
HostCollection coll = new HostCollection();
Query qry = new Query(Host.Schema);
coll.LoadAndCloseReader(qry.ExecuteReader());
return coll;
}
示例15: FetchAll
public Registration1Collection FetchAll()
{
Registration1Collection coll = new Registration1Collection();
Query qry = new Query(Registration1.Schema);
coll.LoadAndCloseReader(qry.ExecuteReader());
return coll;
}