在 C# 中返回强类型数据集中的单行
我在 C# 中有一个强类型数据集 TableAdapter,如何从中获取单行?
I have a Strongly typed Dataset TableAdapter in C#, how do I get a single row from it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
编辑:强类型数据集为表中的每一列创建一个属性,因此要获取 Id,这应该可行:
您还可以按名称获取字段:
EDIT: Strongly-typed datasets create a property for each column in the table, so to get the Id, this should work:
You can also get fields by name:
您可以尝试:
You can try:
您还可以创建一个额外的参数化查询(即“WHERE ID = @id”)并调用它而不是默认的 GetData 方法:
You can also create an additional parameterized query (i.e. 'WHERE ID = @id') and call that instead of the default GetData method: