OwnedNavigationSplitViewBuilder<TOwnerEntity,TDependentEntity>.Property<TProperty> Method

Definition

Maps the property to a column on the current view and returns an object that can be used to provide view-specific configuration if the property is mapped to more than one view.

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.ViewColumnBuilder<TProperty> Property<TProperty> (System.Linq.Expressions.Expression<Func<TDependentEntity,TProperty>> propertyExpression);
override this.Property : System.Linq.Expressions.Expression<Func<'DependentEntity, 'Property>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.ViewColumnBuilder<'Property>
Public Overridable Function Property(Of TProperty) (propertyExpression As Expression(Of Func(Of TDependentEntity, TProperty))) As ViewColumnBuilder(Of TProperty)

Type Parameters

TProperty

Parameters

propertyExpression
Expression<Func<TDependentEntity,TProperty>>

A lambda expression representing the property to be configured (blog => blog.Url).

Returns

An object that can be used to configure the property.

Applies to