EntityDataReader.Item Property

 

Gets the value of the column.

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

NameDescription
System_CAPS_pubpropertyItem[Int32]

Gets the value of the specified column as an instance of Object.(Overrides DbDataReader.Item[Int32].)

System_CAPS_pubpropertyItem[String]

Gets the value of the specified column as an instance of Object.(Overrides DbDataReader.Item[String].)


EntityDataReader.Item Property (Int32)

Gets the value of the specified column as an instance of Object.

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

Property Value

Type: System.Object

The value of the specified column.


EntityDataReader.Item Property (String)

Gets the value of the specified column as an instance of Object.

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

Property Value

Type: System.Object

The value of the specified column.