在 C# 中使用 DataView 搜索单个记录
我正在使用 C# 中的 WinForms 制作自定义报告。 StudentID设置为主键,当用户在上面的搜索框中输入学生ID时,我想仅在一行中显示学生的数据。我该如何使用 DataView 来做到这一点?谢谢。
I'm doing a custom report using WinForms in C#. StudentID is set as primary key, and when the user inputs the student ID in the search box above, i want to display the student's data in one row only. How do I do it using DataView? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以向 DataView 添加行筛选器
You can add a row filter to your DataView