Interface IEntityFinder
- Namespace
- Microsoft.EntityFrameworkCore.Internal
- Assembly
- Microsoft.EntityFrameworkCore.dll
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
public interface IEntityFinder
Methods
Find(object?[]?)
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
object? Find(object?[]? keyValues)
Parameters
keyValues
object[]
Returns
FindAsync(object?[]?, CancellationToken)
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
ValueTask<object?> FindAsync(object?[]? keyValues, CancellationToken cancellationToken = default)
Parameters
keyValues
object[]cancellationToken
CancellationToken
Returns
FindEntry(IEnumerable<IProperty>, IEnumerable<object?>)
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
InternalEntityEntry? FindEntry(IEnumerable<IProperty> properties, IEnumerable<object?> propertyValues)
Parameters
properties
IEnumerable<IProperty>propertyValues
IEnumerable<object>
Returns
FindEntry(IEnumerable<object?>)
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
InternalEntityEntry? FindEntry(IEnumerable<object?> keyValues)
Parameters
keyValues
IEnumerable<object>
Returns
FindEntry<TProperty>(IProperty, TProperty)
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
InternalEntityEntry? FindEntry<TProperty>(IProperty property, TProperty propertyValue)
Parameters
property
IPropertypropertyValue
TProperty
Returns
Type Parameters
TProperty
FindEntry<TKey>(TKey)
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
InternalEntityEntry? FindEntry<TKey>(TKey keyValue)
Parameters
keyValue
TKey
Returns
Type Parameters
TKey
GetDatabaseValues(InternalEntityEntry)
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
object[]? GetDatabaseValues(InternalEntityEntry entry)
Parameters
entry
InternalEntityEntry
Returns
- object[]
GetDatabaseValuesAsync(InternalEntityEntry, CancellationToken)
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
Task<object[]?> GetDatabaseValuesAsync(InternalEntityEntry entry, CancellationToken cancellationToken = default)
Parameters
entry
InternalEntityEntrycancellationToken
CancellationToken
Returns
GetEntries(IEnumerable<IProperty>, IEnumerable<object?>)
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
IEnumerable<InternalEntityEntry> GetEntries(IEnumerable<IProperty> properties, IEnumerable<object?> propertyValues)
Parameters
properties
IEnumerable<IProperty>propertyValues
IEnumerable<object>
Returns
GetEntries<TProperty>(IProperty, TProperty)
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
IEnumerable<InternalEntityEntry> GetEntries<TProperty>(IProperty property, TProperty propertyValue)
Parameters
property
IPropertypropertyValue
TProperty
Returns
Type Parameters
TProperty
Load(INavigation, InternalEntityEntry, LoadOptions)
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
void Load(INavigation navigation, InternalEntityEntry entry, LoadOptions options)
Parameters
navigation
INavigationentry
InternalEntityEntryoptions
LoadOptions
LoadAsync(INavigation, InternalEntityEntry, LoadOptions, CancellationToken)
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
Task LoadAsync(INavigation navigation, InternalEntityEntry entry, LoadOptions options, CancellationToken cancellationToken = default)
Parameters
navigation
INavigationentry
InternalEntityEntryoptions
LoadOptionscancellationToken
CancellationToken
Returns
Query(INavigation, InternalEntityEntry)
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
IQueryable Query(INavigation navigation, InternalEntityEntry entry)
Parameters
navigation
INavigationentry
InternalEntityEntry