强类型数据行值得吗?
我有一个数据行,我传递它并使用它进行操作,并且想要对其进行强类型化,但不需要对表本身进行强类型化。
是否有一个工具可以使用 isnull 方法等自动生成强类型行?
I have a datarow that I pass around and do things with, and would like to strongly type it, but don't need to strongly-type the table itself.
Is there a tool that will autogenerate a strongly-typed row with isnull methods and such?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为为 ADO 数据类型创建强类型类是值得的。有两种方法可以做到这一点:
DataRow
的子类或封装您想要的行为的任何内容。第一种方法的优点是它提供了一个自定义 API,可以准确地公开您想要的内容。第二种方法通常更快。
In my opinion is is worthwhile to create a strongly-typed class for ADO data types. There are two ways you can do this:
DataRow
or whatever that encapsulates the behavior you want.The advantage of the first method is that it provides a custom API exposing exactly what you want. The second method is often faster.
这是值得的,因为您可以使用强类型 DataRow/DataSet 进行编译时间检查。
下面的代码(只是一个示例)展示了我是如何做到的。我有一个工具可以从数据库信息生成所有类,特别是存储过程的输出。因此,我有一个存储过程,它返回一个结果集,其字段映射到下面的 PostDtw 类的属性。
该工具(带有源代码)可以在我的博客上找到。它还以类似的方式生成 DataReaders 包装器。您可以从这里获取该工具
数据访问层 CodeGen
下面的“Main”方法显示了如何使用班级。请注意,在 foreach 循环中,您如何访问类的属性,但在幕后,属性获取器正在使用 DataRow。
方法“GetPosts1”和“GetPosts2”显示了如何基本上使用 DataTable 并将其“转换”为
. GetPosts1 本质上使用相同的实例,而 GetPosts2 为每一行创建一个新实例。
It is worthwhile since you could get compile time checking with strongly typed DataRow/DataSet.
The code below (just a sample) shows how I do it. I have a tool that generates all of the classes from Database information, in particular the output of stored procedures. So I have a stored procedure that returns a result set whose fields map to the properties of the PostDtw class below.
The tool (with source) is available on my blog. It also generates DataReaders wrappers in a similar manner. You can get the tool from here
Data Access Layer CodeGen
The "Main" method below shows how you'd use the class. Notice how in the foreach loop you're accessing properties of a class but behind the scenes the property getter is using a DataRow.
The methods "GetPosts1" and "GetPosts2" shows how you'd basically use a DataTable but "convert" it to an
. GetPosts1 essentially uses the same instance, while GetPosts2 creates a new instance for each row.