CollectionOwnershipBuilder<TEntity,TDependentEntity>.Ignore Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Ignore(Expression<Func<TDependentEntity,Object>>) |
Excludes the given property from the entity type. This method is typically used to remove properties from the owned entity type that were added by convention. |
Ignore(String) |
Excludes the given property from the entity type. This method is typically used to remove properties from the owned entity type that were added by convention. |
Ignore(Expression<Func<TDependentEntity,Object>>)
Excludes the given property from the entity type. This method is typically used to remove properties from the owned entity type that were added by convention.
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder<TEntity,TDependentEntity> Ignore (System.Linq.Expressions.Expression<Func<TDependentEntity,object>> propertyExpression);
override this.Ignore : System.Linq.Expressions.Expression<Func<'DependentEntity, obj>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder<'Entity, 'DependentEntity (requires 'Entity : null and 'DependentEntity : null)>
Public Overridable Function Ignore (propertyExpression As Expression(Of Func(Of TDependentEntity, Object))) As CollectionOwnershipBuilder(Of TEntity, TDependentEntity)
Parameters
- propertyExpression
- Expression<Func<TDependentEntity,Object>>
A lambda expression representing the property to be ignored
(blog => blog.Url
).
Returns
Applies to
Ignore(String)
Excludes the given property from the entity type. This method is typically used to remove properties from the owned entity type that were added by convention.
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder<TEntity,TDependentEntity> Ignore (string propertyName);
override this.Ignore : string -> Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder<'Entity, 'DependentEntity (requires 'Entity : null and 'DependentEntity : null)>
Public Overridable Function Ignore (propertyName As String) As CollectionOwnershipBuilder(Of TEntity, TDependentEntity)
Parameters
- propertyName
- String
The name of then property to be removed from the entity type.
Returns
Applies to
Entity Framework