DbEntityEntry<TEntity>.Member Method

 

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

NameDescription
System_CAPS_pubmethodMember(String)

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.

System_CAPS_pubmethodMember<TMember>(String)

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<TEntity, TProperty>. Collection navigation property: DbCollectionEntry<TEntity, TElement>. Primitive/scalar property: DbPropertyEntry<TEntity, TProperty>. Complex property: DbComplexPropertyEntry<TEntity, TComplexProperty>.


DbEntityEntry<TEntity>.Member Method (String)

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 DbMemberEntry Member(
	string propertyName
)

Parameters

propertyName
Type: System.String

The name of the member.

Return Value

Type: System.Data.Entity.Infrastructure.DbMemberEntry

An object representing the member.


DbEntityEntry<TEntity>.Member<TMember> Method (String)

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<TEntity, TProperty>. Collection navigation property: DbCollectionEntry<TEntity, TElement>. Primitive/scalar property: DbPropertyEntry<TEntity, TProperty>. Complex property: DbComplexPropertyEntry<TEntity, TComplexProperty>.

public DbMemberEntry<TEntity, TMember> Member<TMember>(
	string propertyName
)

Parameters

propertyName
Type: System.String

The name of the member.

Return Value

Type: System.Data.Entity.Infrastructure.DbMemberEntry<TEntity, TMember>

An object representing the member.

Type Parameters

TMember

The type of the member.