DbEntityEntry<TEntity>.Member Method
Assembly: EntityFramework (in EntityFramework.dll)
Name | Description | |
---|---|---|
![]() | Member(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. |
![]() | Member<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.
Parameters
- propertyName
-
Type:
System.String
The name of the member.
Return Value
Type: System.Data.Entity.Infrastructure.DbMemberEntryAn 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>.
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.