StructuralTypeConfiguration<TStructuralType>.Ignore<TProperty> Method

Definition

Excludes a property from the model so that it will not be mapped to the database.

[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
public void Ignore<TProperty> (System.Linq.Expressions.Expression<Func<TStructuralType,TProperty>> propertyExpression);
member this.Ignore : System.Linq.Expressions.Expression<Func<'StructuralType, 'Property>> -> unit
Public Sub Ignore(Of TProperty) (propertyExpression As Expression(Of Func(Of TStructuralType, TProperty)))

Type Parameters

TProperty

The type of the property to be ignored.

Parameters

propertyExpression
Expression<Func<TStructuralType,TProperty>>

A lambda expression representing the property to be configured. C#: t => t.MyProperty
VB.Net: Function(t) t.MyProperty

Attributes

Applies to