OwnedNavigationBuilder<TOwnerEntity,TDependentEntity>.Ignore メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
Ignore(Expression<Func<TDependentEntity,Object>>) |
指定されたプロパティをエンティティ型から除外します。 通常、このメソッドは、規則によって追加された所有エンティティ型からプロパティまたはナビゲーションを削除するために使用されます。 |
Ignore(String) |
指定されたプロパティをエンティティ型から除外します。 通常、このメソッドは、規則によって追加された所有エンティティ型からプロパティまたはナビゲーションを削除するために使用されます。 |
Ignore(Expression<Func<TDependentEntity,Object>>)
指定されたプロパティをエンティティ型から除外します。 通常、このメソッドは、規則によって追加された所有エンティティ型からプロパティまたはナビゲーションを削除するために使用されます。
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TEntity,TDependentEntity> Ignore (System.Linq.Expressions.Expression<Func<TDependentEntity,object>> propertyExpression);
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TDependentEntity> Ignore (System.Linq.Expressions.Expression<Func<TDependentEntity,object?>> propertyExpression);
override this.Ignore : System.Linq.Expressions.Expression<Func<'DependentEntity, obj>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'Entity, 'DependentEntity (requires 'Entity : null and 'DependentEntity : null)>
override this.Ignore : System.Linq.Expressions.Expression<Func<'DependentEntity, obj>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)>
Public Overridable Function Ignore (propertyExpression As Expression(Of Func(Of TDependentEntity, Object))) As OwnedNavigationBuilder(Of TEntity, TDependentEntity)
Public Overridable Function Ignore (propertyExpression As Expression(Of Func(Of TDependentEntity, Object))) As OwnedNavigationBuilder(Of TOwnerEntity, TDependentEntity)
パラメーター
- propertyExpression
- Expression<Func<TDependentEntity,Object>>
無視されるプロパティを表すラムダ式 (blog => blog.Url
)。
戻り値
OwnedNavigationBuilder<TEntity,TDependentEntity>
適用対象
Ignore(String)
指定されたプロパティをエンティティ型から除外します。 通常、このメソッドは、規則によって追加された所有エンティティ型からプロパティまたはナビゲーションを削除するために使用されます。
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TEntity,TDependentEntity> Ignore (string propertyName);
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TDependentEntity> Ignore (string propertyName);
override this.Ignore : string -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'Entity, 'DependentEntity (requires 'Entity : null and 'DependentEntity : null)>
override this.Ignore : string -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)>
Public Overridable Function Ignore (propertyName As String) As OwnedNavigationBuilder(Of TEntity, TDependentEntity)
Public Overridable Function Ignore (propertyName As String) As OwnedNavigationBuilder(Of TOwnerEntity, TDependentEntity)
パラメーター
- propertyName
- String
エンティティ型から削除するプロパティの名前。
戻り値
OwnedNavigationBuilder<TEntity,TDependentEntity>
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Entity Framework