DbUpdatableDataRecord.Item Property

 

Retrieves the value with the given field name and ordinal.

Namespace:   System.Data.Entity.Core.Objects
Assembly:  EntityFramework (in EntityFramework.dll)

NameDescription
System_CAPS_pubpropertyItem[Int32]

Returns a value that has the given field ordinal.(Overrides DbDataRecord.Item[Int32].)

System_CAPS_pubpropertyItem[String]

Gets a value that has the given field name.(Overrides DbDataRecord.Item[String].)


DbUpdatableDataRecord.Item Property (Int32)

Returns a value that has the given field ordinal.

public override object this[
	int i
] { get; }

Property Value

Type: System.Object

The value that has the given field ordinal.


DbUpdatableDataRecord.Item Property (String)

Gets a value that has the given field name.

public override object this[
	string name
] { get; }

Property Value

Type: System.Object

The field value.