DbPropertyValues.Item 属性

[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]

获取或设置带指定属性名称的属性的值。 该值可能为此类的嵌套实例。

命名空间:  System.Data.Entity.Infrastructure
程序集:  EntityFramework(在 EntityFramework.dll 中)

语法

声明
Public Default Property Item ( _
    propertyName As String _
) As Object 
    Get 
    Set
用法
Dim instance As DbPropertyValues 
Dim propertyName As String 
Dim value As Object 

value = instance(propertyName)

instance(propertyName) = value
public Object this[
    string propertyName
] { get; set; }
public:
property Object^ default[String^ propertyName] {
    Object^ get (String^ propertyName);
    void set (String^ propertyName, Object^ value);
}
member Item : Object with get, set
JScript supports the use of indexed properties, but not the declaration of new ones.

参数

属性值

类型:System.Object
属性的值。

请参阅

参考

DbPropertyValues 类

System.Data.Entity.Infrastructure 命名空间