DbEntityEntry.Member(String) Method

Definition

Gets an object that represents a member of the entity. The runtime type of the returned object will vary depending on what kind of member is asked for. The currently supported member types and their return types are: Reference navigation property: DbReferenceEntry. Collection navigation property: DbCollectionEntry. Primitive/scalar property: DbPropertyEntry. Complex property: DbComplexPropertyEntry.

public System.Data.Entity.Infrastructure.DbMemberEntry Member (string propertyName);
member this.Member : string -> System.Data.Entity.Infrastructure.DbMemberEntry
Public Function Member (propertyName As String) As DbMemberEntry

Parameters

propertyName
String

The name of the member.

Returns

An object representing the member.

Applies to