字段扩展方法的要点 [英] the point of the Field extension method

查看:94
本文介绍了字段扩展方法的要点的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

DataRow上的字段扩展方法的点是什么(对于无类型的数据表)?

What is the point of the Field extension method on DataRow (for untyped DataTables)?

这里使用字段或不使用它。

字段

myRow.Field<Guid>("myColName")

没有字段

(Guid)myRow["myColName"]

我没有看到任何有意义的改进。

I don't see any compelling improvement.

推荐答案

扩展方法在两个方向上抽取了 DBNull 的概念 - Field SetField ,用于引用类型和可空值类型。对于不可空值类型,它们是等价的。

The extension methods abstract away the concept of DBNull, in both directions - Field and SetField, for reference types and nullable value types. For non-nullable value types they are equivalent.

这篇关于字段扩展方法的要点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆