IConventionModel.FindIgnoredConfigurationSource 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
FindIgnoredConfigurationSource(Type) |
Indicates whether the given entity type is ignored. |
FindIgnoredConfigurationSource(String) |
Indicates whether the given entity type name is ignored. |
FindIgnoredConfigurationSource(Type)
Indicates whether the given entity type is ignored.
public Microsoft.EntityFrameworkCore.Metadata.ConfigurationSource? FindIgnoredConfigurationSource (Type type);
abstract member FindIgnoredConfigurationSource : Type -> Nullable<Microsoft.EntityFrameworkCore.Metadata.ConfigurationSource>
Public Function FindIgnoredConfigurationSource (type As Type) As Nullable(Of ConfigurationSource)
Parameters
- type
- Type
The entity type that might be ignored.
Returns
The configuration source if the given entity type is ignored,
null
otherwise.
Applies to
FindIgnoredConfigurationSource(String)
Indicates whether the given entity type name is ignored.
public Microsoft.EntityFrameworkCore.Metadata.ConfigurationSource? FindIgnoredConfigurationSource (string typeName);
abstract member FindIgnoredConfigurationSource : string -> Nullable<Microsoft.EntityFrameworkCore.Metadata.ConfigurationSource>
Public Function FindIgnoredConfigurationSource (typeName As String) As Nullable(Of ConfigurationSource)
Parameters
- typeName
- String
The name of the entity type that could be ignored.
Returns
The configuration source if the given entity type name is ignored,
null
otherwise.
Applies to
Entity Framework