DbUpdatableDataRecord.Item[] 属性

定义

获取一个字段值。

重载

Item[Int32]

返回具有给定字段序号的值。

Item[String]

获取具有给定字段名称的值。

Item[Int32]

返回具有给定字段序号的值。

public:
 virtual property System::Object ^ default[int] { System::Object ^ get(int ordinal); };
public override object this[int ordinal] { get; }
member this.Item(int) : obj
Default Public Overrides ReadOnly Property Item(ordinal As Integer) As Object

参数

ordinal
Int32

字段的序号。

属性值

具有给定字段序号的值。

实现

适用于

Item[String]

获取具有给定字段名称的值。

public:
 virtual property System::Object ^ default[System::String ^] { System::Object ^ get(System::String ^ name); };
public override object this[string name] { get; }
member this.Item(string) : obj
Default Public Overrides ReadOnly Property Item(name As String) As Object

参数

name
String

字段的名称。

属性值

字段值。

实现

适用于