ADO.NET 绑定到强类型对象(列表)?
我可以在 .NET 4 中创建 ab 对象,对存储过程结果运行 DataReader,然后将 DataReader 绑定到新对象的属性,然后将其添加到列表中。但这在 2011 年缺乏一些“酷因素”……有谁知道有什么好的方法可以“更好”地做到这一点?我不想使用 Linq to SQL 或实体框架,不需要 GUI。只是一种新的/更好的方法,可以将 TDS 输出简单地绑定到对象集合。
谢谢。
I can create ab object in .NET 4, run a DataReader over a sproc result, and then bind the DataReader to the properties of a new object and then add it to a List. But that lacks some "cool factor" in 2011.... Does anyone know of a decent way to do that "better"? I am not looking to use Linq to SQL or Entity Framework, no GUIs necessary. Just a new/better way to simply bind TDS output to a collection of objects.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个问题 LINQ to map a datatable into a list 有一个答案将允许您添加一个扩展方法,让您可以在一行中完成此操作,这绝对是 2011 年。
This question LINQ to map a datatable into a list has an answer which would allow you to add an extension method, letting you do this in a one-liner which is definitely 2011.