Microsoft.EntityFrameworkCore Indicates how the context detects changes to properties for an instance of the entity type. Original values are recorded when an entity is queried from the database. Changes are detected by scanning the current property values and comparing them to the recorded values. This scanning takes place when is called, or when another API call (such as ) triggers the change detection process. To use this strategy, the entity class must implement . Original values are recorded when an entity is queried from the database. Properties are marked as modified when the entity raises the event. To use this strategy, the entity class must implement and . Original values are recorded when the entity raises the event. Properties are marked as modified when the entity raises the event. Original values are only recorded when they are required to save changes to the entity. For example, properties that are configured as concurrency tokens. To use this strategy, the entity class must implement and . Original values are recorded when the entity raises the . Properties are marked as modified when the entity raises the event. Original values are recorded for all properties, regardless of whether they are required to save changes to the entity. Specifies value snapshotting and comparison for arrays where each element is compared a new array is constructed when snapshotting. The array element type. Creates a comparer instance. Defines different strategies for when cascading actions will be performed. See and . Cascading actions are made to dependent/child entities as soon as the principal/parent entity changes. Cascading actions are made to dependent/child entities as part of . Cascading actions are never made automatically to dependent/child entities, but must instead be triggered by an explicit call. Provides access to change tracking information and operations for entity instances the context is tracking. Instances of this class are typically obtained from and it is not designed to be directly constructed in your application code. 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. Gets or sets a value indicating whether the method is called automatically by methods of and related classes. The default value is true. This ensures the context is aware of any changes to tracked entity instances before performing operations such as or returning change tracking information. If you disable automatic detect changes then you must ensure that is called when entity instances have been modified. Failure to do so may result in some changes not being persisted during or out-of-date change tracking information being returned. Gets or sets a value indicating whether navigation properties for tracked entities will be loaded on first access. The default value is true. However, lazy loading will only occur for navigation properties of entities that have also been configured in the model for lazy loading. Gets or sets the tracking behavior for LINQ queries run against the context. Disabling change tracking is useful for read-only scenarios because it avoids the overhead of setting up change tracking for each entity instance. You should not disable change tracking if you want to manipulate entity instances and persist those changes to the database using . This method sets the default behavior for the context, but you can override this behavior for individual queries using the and methods. The default value is . This means the change tracker will keep track of changes for all entities that are returned from a LINQ query. Gets or sets a value indicating when a dependent/child entity will have its state set to once severed from a parent/principal entity through either a navigation or foreign key property being set to null. The default value is . Dependent/child entities are only deleted automatically when the relationship is configured with . This is set by default for required relationships. Gets or sets a value indicating when a dependent/child entity will have its state set to once its parent/principal entity has been marked as . The default value is. Dependent/child entities are only deleted automatically when the relationship is configured with . This is set by default for required relationships. Gets an for each entity being tracked by the context. The entries provide access to change tracking information and operations for each entity. An entry for each entity being tracked. Gets an for all entities of a given type being tracked by the context. The entries provide access to change tracking information and operations for each entity. The type of entities to get entries for. An entry for each entity of the given type that is being tracked. Checks if any new, deleted, or changed entities are being tracked such that these changes will be sent to the database if or is called. Note that this method calls unless has been set to false. True if there are changes to save, otherwise false. Gets the context this change tracker belongs to. Scans the tracked entity instances to detect any changes made to the instance data. is usually called automatically by the context when up-to-date information is required (before and when returning change tracking information). You typically only need to call this method if you have disabled . Accepts all changes made to entities in the context. It will be assumed that the tracked entities represent the current state of the database. This method is typically called by after changes have been successfully saved to the database. Begins tracking an entity and any entities that are reachable by traversing it's navigation properties. Traversal is recursive so the navigation properties of any discovered entities will also be scanned. The specified is called for each discovered entity and must set the that each entity should be tracked in. If no state is set, the entity remains untracked. This method is designed for use in disconnected scenarios where entities are retrieved using one instance of the context and then changes are saved using a different instance of the context. An example of this is a web service where one service call retrieves entities from the database and another service call persists any changes to the entities. Each service call uses a new instance of the context that is disposed when the call is complete. If an entity is discovered that is already tracked by the context, that entity is not processed (and it's navigation properties are not traversed). The entity to begin traversal from. An action to configure the change tracking information for each entity. For the entity to begin being tracked, the must be set. Begins tracking an entity and any entities that are reachable by traversing it's navigation properties. Traversal is recursive so the navigation properties of any discovered entities will also be scanned. The specified is called for each discovered entity and must set the that each entity should be tracked in. If no state is set, the entity remains untracked. This method is designed for use in disconnected scenarios where entities are retrieved using one instance of the context and then changes are saved using a different instance of the context. An example of this is a web service where one service call retrieves entities from the database and another service call persists any changes to the entities. Each service call uses a new instance of the context that is disposed when the call is complete. Typically traversal of the graph should stop whenever an already tracked entity is encountered or when an entity is reached that should not be tracked. For this typical behavior, use the overload. This overload, on the other hand, allows the callback to decide when traversal will end, but the onus is then on the caller to ensure that traversal will not enter an infinite loop. The entity to begin traversal from. An arbitrary state object passed to the callback. An delegate to configure the change tracking information for each entity. The second parameter to the callback is the arbitrary state object passed above. Iteration of the graph will not continue down the graph if the callback returns false. The type of the state object. An event fired when an entity is tracked by the context, either because it was returned from a tracking query, or because it was attached or added to the context. An event fired when an entity that is tracked by the associated has moved from one to another. Note that this event does not fire for entities when they are first tracked by the context. Use the event to get notified when the context begins tracking an entity. Forces immediate cascading deletion of child/dependent entities when they are either severed from a required parent/principal entity, or the required parent/principal entity is itself deleted. See . This method is usually used when and/or have been set to to manually force the deletes to have at a time controlled by the application. If is true then this method will call . Returns a string that represents the current object. A string that represents the current object. Determines whether the specified object is equal to the current object. The object to compare with the current object. true if the specified object is equal to the current object; otherwise, false. Serves as the default hash function. A hash code for the current object. Provides access to change tracking and loading information for a collection navigation property that associates this entity to a collection of another entities. Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. 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. 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. Gets or sets the value currently assigned to this property. If the current value is set using this property, the change tracker is aware of the change and is not required for the context to detect the change. Loads the entities referenced by this navigation property, unless is already set to true. Note that entities that are already being tracked are not overwritten with new data from the database. Loads entities referenced by this navigation property, unless is already set to true. Note that entities that are already being tracked are not overwritten with new data from the database. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A to observe while waiting for the task to complete. A task that represents the asynchronous save operation. Returns the query that would be used by to load entities referenced by this navigation property. The query can be composed over using LINQ to perform filtering, counting, etc. without actually loading all entities from the database. The of an entity this navigation targets. The entity to get the entry for. An entry for an entity that this navigation targets. 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. Provides access to change tracking and loading information for a collection navigation property that associates this entity to a collection of another entities. Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. The type of the entity the property belongs to. The type of the property. 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. 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. The to which this member belongs. An entry for the entity that owns this member. Gets or sets the value currently assigned to this property. If the current value is set using this property, the change tracker is aware of the change and is not required for the context to detect the change. Returns the query that would be used by to load entities referenced by this navigation property. The query can be composed over using LINQ to perform filtering, counting, etc. without actually loading all entities from the database. The of an entity this navigation targets. The entity to get the entry for. An entry for an entity that this navigation targets. Provides access to change tracking information and operations for a given entity. Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. 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. 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. Gets the entity being tracked by this entry. Gets or sets that state that this entity is being tracked in. This method sets only the state of the single entity represented by this entry. It does not change the state of other entities reachable from this one. When setting the state, the entity will always end up in the specified state. For example, if you change the state to the entity will be marked for deletion regardless of its current state. This is different than calling where the entity will be disconnected (rather than marked for deletion) if it is in the state. Scans this entity instance to detect any changes made to the instance data. is usually called automatically by the context to get up-to-date information on an individual entity before returning change tracking information. You typically only need to call this method if you have disabled . 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. Gets the context that is tracking the entity. Gets the metadata about the shape of the entity, its relationships to other entities, and how it maps to the database. Provides access to change tracking information and operations for a given property or navigation property of this entity. The property to access information and operations for. An object that exposes change tracking information and operations for the given property. Provides access to change tracking information and operations for all properties and navigation properties of this entity. Provides access to change tracking information and operations for a given navigation property of this entity. The property to access information and operations for. An object that exposes change tracking information and operations for the given property. Provides access to change tracking information and operations for all navigation properties of this entity. Provides access to change tracking information and operations for a given property of this entity. The property to access information and operations for. An object that exposes change tracking information and operations for the given property. Provides access to change tracking information and operations for all properties of this entity. Provides access to change tracking and loading information for a reference (i.e. non-collection) navigation property that associates this entity to another entity. The name of the navigation property. An object that exposes change tracking information and operations for the given navigation property. Provides access to change tracking information and loading information for all reference (i.e. non-collection) navigation properties of this entity. Provides access to change tracking and loading information for a collection navigation property that associates this entity to a collection of another entities. The name of the navigation property. An object that exposes change tracking information and operations for the given navigation property. Provides access to change tracking information and loading information for all collection navigation properties of this entity. Gets a value indicating if the key values of this entity have been assigned a value. For keys with store-generated properties (e.g. mapping to Identity columns), the return value will be false if any of the store-generated properties have the CLR default value. For keys without any store-generated properties, the return value will always be true since any value is considered a valid key value. Gets the current property values for this entity. The current values. Gets the original property values for this entity. The original values are the property values as they were when the entity was retrieved from the database. The original values. Queries the database for copies of the values of the tracked entity as they currently exist in the database. If the entity is not found in the database, then null is returned. Note that changing the values in the returned dictionary will not update the values in the database. The store values, or null if the entity does not exist in the database. Queries the database for copies of the values of the tracked entity as they currently exist in the database. If the entity is not found in the database, then null is returned. Note that changing the values in the returned dictionary will not update the values in the database. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the store values, or null if the entity does not exist in the database. Reloads the entity from the database overwriting any property values with values from the database. The entity will be in the state after calling this method, unless the entity does not exist in the database, in which case the entity will be . Finally, calling Reload on an entity that does not exist in the database is a no-op. Note, however, that an Added entity may not yet have had its permanent key value created. Reloads the entity from the database overwriting any property values with values from the database. The entity will be in the state after calling this method, unless the entity does not exist in the database, in which case the entity will be . Finally, calling Reload on an entity that does not exist in the database is a no-op. Note, however, that an Added entity may not yet have had its permanent key value created. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. Returns a string that represents the current object. A string that represents the current object. Determines whether the specified object is equal to the current object. The object to compare with the current object. true if the specified object is equal to the current object; otherwise, false. Serves as the default hash function. A hash code for the current object. Event arguments for events relating to tracked s. 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. The for the entity. Provides access to change tracking information and operations for a node in a graph of entities that is being traversed. 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. Gets the entry tracking information about this entity. Gets the navigation property that is being traversed to reach this node in the graph. Gets the entry tracking information about this entity. Gets the internal entry that is tracking information about this entity. This property is intended for use by extension methods. It is not intended to be used in application code. Creates a new node for the entity that is being traversed next in the graph. The node that the entity is being traversed from. The internal entry tracking information about the entity being traversed to. The navigation property that is being traversed to reach the new node. The newly created node. Provides access to change tracking information and operations for a node in a graph of entities that is being traversed. 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. Gets or sets state that will be available to all nodes that are visited after this node. Creates a new node for the entity that is being traversed next in the graph. The node that the entity is being traversed from. The internal entry tracking information about the entity being traversed to. The navigation property that is being traversed to reach the new node. The newly created node. Provides access to change tracking information and operations for a given entity. Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. The type of entity being tracked by this entry. 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. Gets the entity being tracked by this entry. Provides access to change tracking information and operations for a given property of this entity. A lambda expression representing the property to access information and operations for (t => t.Property1). An object that exposes change tracking information and operations for the given property. Provides access to change tracking and loading information for a reference (i.e. non-collection) navigation property that associates this entity to another entity. A lambda expression representing the property to access information and operations for (t => t.Property1). An object that exposes change tracking information and operations for the given navigation property. Provides access to change tracking and loading information for a collection navigation property that associates this entity to a collection of another entities. A lambda expression representing the property to access information and operations for (t => t.Property1). An object that exposes change tracking information and operations for the given navigation property. Provides access to change tracking and loading information for a reference (i.e. non-collection) navigation property that associates this entity to another entity. The name of the navigation property. An object that exposes change tracking information and operations for the given navigation property. Provides access to change tracking and loading information for a collection navigation property that associates this entity to a collection of another entities. The name of the navigation property. An object that exposes change tracking information and operations for the given navigation property. Provides access to change tracking information and operations for a given property of this entity. The type of the property. The property to access information and operations for. An object that exposes change tracking information and operations for the given property. Event arguments for the event. 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. The state that the entity is transitioning from. The state that the entity is transitioning to. Event arguments for the event. 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. True if the entity is being tracked as part of a database query; false otherwise. Value snapshotting and comparison logic for NetTopologySuite.Geometries.Geometry instances. Initializes a new instance of the class. A service to traverse a graph of entities and perform some action on at each node. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Traverses a graph of entities allowing an action to be taken at each node. The node that is being visited. A delegate to call to handle the node. The type of the state object. Traverses a graph of entities allowing an action to be taken at each node. The node that is being visited. A delegate to call to handle the node. A to observe while waiting for the task to complete. The type of the state object. A task that represents the asynchronous operation. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. A to observe while waiting for the task to complete. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. Service dependencies parameter class for This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Creates the service dependencies parameter object for a . 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. Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. A collection that stays in sync with entities of a given type being tracked by a . Call to obtain a local view. This local view will stay in sync as entities are added or removed from the context. Likewise, entities added to or removed from the local view will automatically be added to or removed from the context. Adding an entity to this collection will cause it to be tracked in the state by the context unless it is already being tracked. Removing an entity from this collection will cause it to be marked as , unless it was previously in the Added state, in which case it will be detached from the context. The collection implements , , and such that notifications are generated when an entity starts being tracked by the context or is marked as or . Do not use this type directly for data binding. Instead call for WPF binding, or for WinForms. The type of the entity in the local view. 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. Returns an implementation that stays in sync with this collection. Use this for WPF data binding. The collection. Returns an for all tracked entities of type TEntity that are not marked as deleted. An enumerator for the collection. Returns an for all tracked entities of type TEntity that are not marked as deleted. An enumerator for the collection. Adds a new entity to the . If the entity is not being tracked or is currently marked as deleted, then it becomes tracked as . Note that only the given entity is tracked. Any related entities discoverable from the given entity are not automatically tracked. The item to start tracking. Marks all entities of type TEntity being tracked by the as . Entities that are currently marked as will be marked as since the Added state indicates that the entity has not been saved to the database and hence it does not make sense to attempt to delete it from the database. Returns true if the entity is being tracked by the context and has not been marked as Deleted. The entity to check. True if the entity is being tracked by the context and has not been marked as Deleted. Copies to an array all entities of type TEntity that are being tracked and are not marked as Deleted. The array into which to copy entities. The index into the array to start copying. Marks the given entity as . Entities that are currently marked as will be marked as since the Added state indicates that the entity has not been saved to the database and hence it does not make sense to attempt to delete it from the database. The entity to delete. True if the entity was being tracked and was not already Deleted. The number of entities of type TEntity that are being tracked and are not marked as Deleted. False, since the collection is not read-only. Occurs when a property of this collection (such as ) changes. Occurs when a property of this collection (such as ) is changing. Occurs when the contents of the collection changes, either because an entity has been directly added or removed from the collection, or because an entity starts being tracked, or because an entity is marked as Deleted. Raises the event. Details of the property that changed. Raises the event. Details of the property that is changing. Raises the event. Details of the change. Returns an implementation that stays in sync with this collection. Use this for WinForms data binding. The binding list. This method is called by data binding frameworks when attempting to data bind directly to a . This implementation always throws an exception as does not maintain an ordered list with indexes. Instead call for WPF binding, or for WinForms. Always thrown. Never returns, always throws an exception. Gets a value indicating whether the collection is a collection of System.Collections.IList objects. Always returns false. Provides access to change tracking information and operations for a given property or navigation property. Scalar properties use the derived class , reference navigation properties use the derived class , and collection navigation properties use the derived class . Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. 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. 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. For non-navigation properties, gets or sets a value indicating whether the value of this property has been modified and should be updated in the database when is called. For navigation properties, gets or sets a value indicating whether any of foreign key property values associated with this navigation property have been modified and should be updated in the database when is called. Gets the metadata that describes the facets of this property and how it maps to the database. Gets or sets the value currently assigned to this property. If the current value is set using this property, the change tracker is aware of the change and is not required for the context to detect the change. The to which this member belongs. An entry for the entity that owns this member. 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. Returns a string that represents the current object. A string that represents the current object. Determines whether the specified object is equal to the current object. The object to compare with the current object. true if the specified object is equal to the current object; otherwise, false. Serves as the default hash function. A hash code for the current object. Provides access to change tracking and loading information for a navigation property that associates this entity to one or more other entities. Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. 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. 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. Loads the entity or entities referenced by this navigation property, unless is already set to true. Note that entities that are already being tracked are not overwritten with new data from the database. Loads the entity or entities referenced by this navigation property, unless is already set to true. Note that entities that are already being tracked are not overwritten with new data from the database. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. Returns the query that would be used by to load entities referenced by this navigation property. The query can be composed over using LINQ to perform filtering, counting, etc. without actually loading all entities from the database. The query to load related entities. Gets or sets a value indicating whether the entity or entities referenced by this navigation property are known to be loaded. Loading entities from the database using or , , or will set this flag. Subsequent calls to or will then be a no-op. It is possible for IsLoaded to be false even if all related entities are loaded. This is because, depending on how entities are loaded, it is not always possible to know for sure that all entities in a related collection have been loaded. In such cases, calling or will ensure all related entities are loaded and will set this flag to true. True if all the related entities are loaded or the IsLoaded has been explicitly set to true. Gets or sets a value indicating whether any of foreign key property values associated with this navigation property have been modified and should be updated in the database when is called. Gets the metadata that describes the facets of this property and how it maps to the database. Extends and adds an explicit implementation of . The method is implemented to return an implementation that stays in sync with the ObservableCollection. This class can be used to implement navigation properties on entities for use in Windows Forms data binding. For WPF data binding use an ObservableCollection rather than an instance of this class. The type of elements in the collection. Initializes a new instance of the class. Initializes a new instance of the class that contains elements copied from the specified collection. The collection from which the elements are copied. Initializes a new instance of the class that contains elements copied from the specified list. The list from which the elements are copied. Always false because there is never a contained collection. Returns an implementation that stays in sync with this . The returned list is cached on this object such that the same list is returned each time this method is called. An in sync with the ObservableCollection. A hash set that implements the interfaces required for Entity Framework to use notification based change tracking for a collection navigation property. The type of elements in the hash set. Initializes a new instance of the class that is empty and uses the default equality comparer for the set type. Initializes a new instance of the class that is empty and uses the specified equality comparer for the set type. The implementation to use when comparing values in the set, or null to use the default implementation for the set type. Initializes a new instance of the class that uses the default equality comparer for the set type, contains elements copied from the specified collection, and has sufficient capacity to accommodate the number of elements copied. The collection whose elements are copied to the new set. Initializes a new instance of the class that uses the specified equality comparer for the set type, contains elements copied from the specified collection, and has sufficient capacity to accommodate the number of elements copied. The collection whose elements are copied to the new set. The implementation to use when comparing values in the set, or null to use the default implementation for the set type. Occurs when a property of this hash set (such as ) changes. Occurs when a property of this hash set (such as ) is changing. Occurs when the contents of the hash set changes. Removes all elements from the hash set. Determines whether the hash set object contains the specified element. The element to locate in the hash set. True if the hash set contains the specified element; otherwise, false. Copies the elements of the hash set to an array, starting at the specified array index. The one-dimensional array that is the destination of the elements copied from the hash set. The array must have zero-based indexing. The zero-based index in array at which copying begins. Removes the specified element from the hash set. The element to remove. True if the element is successfully found and removed; otherwise, false. Gets the number of elements that are contained in the hash set. Gets a value indicating whether the hash set is read-only. Returns an enumerator that iterates through the hash set. An enumerator for the hash set. Adds the specified element to the hash set. The element to add to the set. true if the element is added to the hash set; false if the element is already present. Modifies the hash set to contain all elements that are present in itself, the specified collection, or both. The collection to compare to the current hash set. Modifies the current hash set to contain only elements that are present in that object and in the specified collection. The collection to compare to the current hash set. Removes all elements in the specified collection from the hash set. The collection of items to remove from the current hash set. Modifies the current hash set to contain only elements that are present either in that object or in the specified collection, but not both. The collection to compare to the current hash set. Determines whether the hash set is a subset of the specified collection. The collection to compare to the current hash set. True if the hash set is a subset of other; otherwise, false. Determines whether the hash set is a proper subset of the specified collection. The collection to compare to the current hash set. True if the hash set is a proper subset of other; otherwise, false. Determines whether the hash set is a superset of the specified collection. The collection to compare to the current hash set. True if the hash set is a superset of other; otherwise, false. Determines whether the hash set is a proper superset of the specified collection. The collection to compare to the current hash set. True if the hash set is a proper superset of other; otherwise, false. Determines whether the current System.Collections.Generic.HashSet`1 object and a specified collection share common elements. The collection to compare to the current hash set. True if the hash set and other share at least one common element; otherwise, false. Determines whether the hash set and the specified collection contain the same elements. The collection to compare to the current hash set. True if the hash set is equal to other; otherwise, false. Copies the elements of the hash set to an array. The one-dimensional array that is the destination of the elements copied from the hash set. The array must have zero-based indexing. Copies the specified number of elements of the hash set to an array, starting at the specified array index. The one-dimensional array that is the destination of the elements copied from the hash set. The array must have zero-based indexing. The zero-based index in array at which copying begins. The number of elements to copy to array. Removes all elements that match the conditions defined by the specified predicate from the hash set. The delegate that defines the conditions of the elements to remove. The number of elements that were removed from the hash set. Gets the object that is used to determine equality for the values in the set. Sets the capacity of the hash set to the actual number of elements it contains, rounded up to a nearby, implementation-specific value. Raises the event. Details of the property that changed. Raises the event. Details of the property that is changing. Raises the event. Details of the change. Provides access to change tracking information and operations for a given property. Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. 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. 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. Gets or sets a value indicating whether the value of this property has been modified and should be updated in the database when is called. Gets or sets a value indicating whether the value of this property is considered a temporary value which will be replaced by a value generated from the store when is called. Gets the metadata that describes the facets of this property and how it maps to the database. Gets or sets the value that was assigned to this property when it was retrieved from the database. This property is populated when an entity is retrieved from the database, but setting it may be useful in disconnected scenarios where entities are retrieved with one context instance and saved with a different context instance. Provides access to change tracking information and operations for a given property. Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. The type of the entity the property belongs to. The type of the property. 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. 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. The to which this member belongs. An entry for the entity that owns this member. Gets or sets the value currently assigned to this property. If the current value is set using this property, the change tracker is aware of the change and is not required for the context to detect the change. Gets or sets the value that was assigned to this property when it was retrieved from the database. This property is populated when an entity is retrieved from the database, but setting it may be useful in disconnected scenarios where entities are retrieved with one context instance and saved with a different context instance. A collection of all property values for an entity. Objects of this type can be obtained from , , , or . Once obtained, the objects are usually used in various combinations to resolve optimistic concurrency exceptions signaled by the throwing of a . 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. 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. Creates an instance of the entity type and sets all its properties using the values from this object. The values of this object copied into a new entity instance. Sets the values of this object by copying values from the given object. The given object can be of any type. Any property on the object with a name that matches a property name in the entity type and can be read will be copied. Other properties will be ignored. This allows, for example, copying of properties from simple Data Transfer Objects (DTOs). The object to read values from. Creates a clone of the values in this object. Changes made to the new object will not be reflected in this object and vice versa. A clone of this object. Sets the values of this object by reading values from another object. The other object must be based on the same type as this object, or a type derived from the type for this object. The object from which values should be copied. Sets the values of this object by copying values from the given dictionary. The keys of the dictionary must match property names. Any key in the dictionary that does not match the name of a property in the entity type will be ignored. The dictionary to read values from. Gets the properties for which this object is storing values. The properties. Gets the underlying entity type for which this object is storing values. Gets or sets the value of the property with the specified property name. The property name. The value of the property. Gets or sets the value of the property. The property. The value of the property. Gets the value of the property just like using the indexed property getter but typed to the type of the generic parameter. The type of the property. The property name. The value of the property. Gets the value of the property just like using the indexed property getter but typed to the type of the generic parameter. The type of the property. The property. The value of the property. Returns a string that represents the current object. A string that represents the current object. Determines whether the specified object is equal to the current object. The object to compare with the current object. true if the specified object is equal to the current object; otherwise, false. Serves as the default hash function. A hash code for the current object. Provides access to change tracking and loading information for a reference (i.e. non-collection) navigation property that associates this entity to another entity. Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. 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. 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. The of the entity this navigation targets. An entry for the entity that this navigation targets. 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. Provides access to change tracking and loading information for a reference (i.e. non-collection) navigation property that associates this entity to another entity. Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. The type of the entity the property belongs to. The type of the property. 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. 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. The to which this member belongs. An entry for the entity that owns this member. The of the entity this navigation targets. An entry for the entity that owns this navigation targets. Gets or sets the value currently assigned to this property. If the current value is set using this property, the change tracker is aware of the change and is not required for the context to detect the change. Returns the query that would be used by to load the entity referenced by this navigation property. The query can be composed over using LINQ to perform filtering, counting, etc. without actually loading the entity from the database. Specifies custom value snapshotting and comparison for CLR types that cannot be compared with and/or need a deep/structural copy when taking a snapshot. For example, arrays of primitive types will require both if mutation is to be detected. Snapshotting is the process of creating a copy of the value into a snapshot so it can later be compared to determine if it has changed. For some types, such as collections, this needs to be a deep copy of the collection rather than just a shallow copy of the reference. Creates a new with the given comparison and snapshotting expressions. The comparison expression. The associated hash code generator. The snapshot expression. The type. Compares the two instances to determine if they are equal. The first instance. The second instance. True if they are equal; false otherwise. Returns the hash code for the given instance. The instance. The hash code. Creates a snapshot of the given instance. Snapshotting is the process of creating a copy of the value into a snapshot so it can later be compared to determine if it has changed. For some types, such as collections, this needs to be a deep copy of the collection rather than just a shallow copy of the reference. The instance. The snapshot. The comparison expression. The hash code expression. The snapshot expression. Snapshotting is the process of creating a copy of the value into a snapshot so it can later be compared to determine if it has changed. For some types, such as collections, this needs to be a deep copy of the collection rather than just a shallow copy of the reference. Takes and replaces the two parameters with the given expressions, returning the transformed body. The new left expression. The new right expression. The body of the lambda with left and right parameters replaced. Takes the and replaces the parameter with the given expression, returning the transformed body. The new expression. The body of the lambda with the parameter replaced. Takes the and replaces the parameter with the given expression, returning the transformed body. The new expression. The body of the lambda with the parameter replaced. Specifies custom value snapshotting and comparison for CLR types that cannot be compared with and/or need a deep copy when taking a snapshot. For example, arrays of primitive types will require both if mutation is to be detected. Snapshotting is the process of creating a copy of the value into a snapshot so it can later be compared to determine if it has changed. For some types, such as collections, this needs to be a deep copy of the collection rather than just a shallow copy of the reference. The type. Creates a new with a default comparison expression and a shallow copy for the snapshot. If true, then EF will use if the type implements it. This is usually used when byte arrays act as keys. Creates a new with the given comparison expression. A shallow copy will be used for the snapshot. The comparison expression. The associated hash code generator. Creates a new with the given comparison and snapshotting expressions. Snapshotting is the process of creating a copy of the value into a snapshot so it can later be compared to determine if it has changed. For some types, such as collections, this needs to be a deep copy of the collection rather than just a shallow copy of the reference. The comparison expression. The associated hash code generator. The snapshot expression. Creates an expression for equality. The equality expression. Creates an expression for generated a hash code. If true, then is used if the type implements it. The hash code expression. Compares the two instances to determine if they are equal. The first instance. The second instance. True if they are equal; false otherwise. Returns the hash code for the given instance. The instance. The hash code. Compares the two instances to determine if they are equal. The first instance. The second instance. True if they are equal; false otherwise. Returns the hash code for the given instance. The instance. The hash code. Creates a snapshot of the given instance. Snapshotting is the process of creating a copy of the value into a snapshot so it can later be compared to determine if it has changed. For some types, such as collections, this needs to be a deep copy of the collection rather than just a shallow copy of the reference. The instance. The snapshot. Creates a snapshot of the given instance. Snapshotting is the process of creating a copy of the value into a snapshot so it can later be compared to determine if it has changed. For some types, such as collections, this needs to be a deep copy of the collection rather than just a shallow copy of the reference. The instance. The snapshot. The type. The comparison expression. The hash code expression. The snapshot expression. Snapshotting is the process of creating a copy of the value into a snapshot so it can later be compared to determine if it has changed. For some types, such as collections, this needs to be a deep copy of the collection rather than just a shallow copy of the reference. A DbContext instance represents a session with the database and can be used to query and save instances of your entities. DbContext is a combination of the Unit Of Work and Repository patterns. Typically you create a class that derives from DbContext and contains properties for each entity in the model. If the properties have a public setter, they are automatically initialized when the instance of the derived context is created. Override the method to configure the database (and other options) to be used for the context. Alternatively, if you would rather perform configuration externally instead of inline in your context, you can use (or ) to externally create an instance of (or ) and pass it to a base constructor of . The model is discovered by running a set of conventions over the entity classes found in the properties on the derived context. To further configure the model that is discovered by convention, you can override the method. Initializes a new instance of the class. The method will be called to configure the database (and other options) to be used for this context. Initializes a new instance of the class using the specified options. The method will still be called to allow further configuration of the options. The options for this context. Provides access to database related information and operations for this context. Provides access to information and operations for entity instances this context is tracking. The metadata about the shape of entities, the relationships between them, and how they map to the database. A unique identifier for the context instance and pool lease, if any. This identifier is primarily intended as a correlation ID for logging and debugging such that it is easy to identify that multiple events are using the same or different context instances. 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. 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. 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. 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. 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. 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. 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. 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. 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. Creates a that can be used to query and save instances of . The type of entity for which a set should be returned. A set for the given entity type. Creates a that can be used to query instances of . The type of query for which a DbQuery should be returned. A DbQuery for the given keyless entity type. Override this method to configure the database (and other options) to be used for this context. This method is called for each instance of the context that is created. The base implementation does nothing. In situations where an instance of may or may not have been passed to the constructor, you can use to determine if the options have already been set, and skip some or all of the logic in . A builder used to create or modify options for this context. Databases (and other extensions) typically define extension methods on this object that allow you to configure the context. Override this method to further configure the model that was discovered by convention from the entity types exposed in properties on your derived context. The resulting model may be cached and re-used for subsequent instances of your derived context. If a model is explicitly set on the options for this context (via ) then this method will not be run. The builder being used to construct the model for this context. Databases (and other extensions) typically define extension methods on this object that allow you to configure aspects of the model that are specific to a given database. Saves all changes made in this context to the database. This method will automatically call to discover any changes to entity instances before saving to the underlying database. This can be disabled via . The number of state entries written to the database. An error is encountered while saving to the database. A concurrency violation is encountered while saving to the database. A concurrency violation occurs when an unexpected number of rows are affected during save. This is usually because the data in the database has been modified since it was loaded into memory. Saves all changes made in this context to the database. This method will automatically call to discover any changes to entity instances before saving to the underlying database. This can be disabled via . Indicates whether is called after the changes have been sent successfully to the database. The number of state entries written to the database. An error is encountered while saving to the database. A concurrency violation is encountered while saving to the database. A concurrency violation occurs when an unexpected number of rows are affected during save. This is usually because the data in the database has been modified since it was loaded into memory. Saves all changes made in this context to the database. This method will automatically call to discover any changes to entity instances before saving to the underlying database. This can be disabled via . Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A to observe while waiting for the task to complete. A task that represents the asynchronous save operation. The task result contains the number of state entries written to the database. An error is encountered while saving to the database. A concurrency violation is encountered while saving to the database. A concurrency violation occurs when an unexpected number of rows are affected during save. This is usually because the data in the database has been modified since it was loaded into memory. Saves all changes made in this context to the database. This method will automatically call to discover any changes to entity instances before saving to the underlying database. This can be disabled via . Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. Indicates whether is called after the changes have been sent successfully to the database. A to observe while waiting for the task to complete. A task that represents the asynchronous save operation. The task result contains the number of state entries written to the database. An error is encountered while saving to the database. A concurrency violation is encountered while saving to the database. A concurrency violation occurs when an unexpected number of rows are affected during save. This is usually because the data in the database has been modified since it was loaded into memory. 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. 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. 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. 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. 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. A to observe while waiting for the task to complete. Releases the allocated resources for this context. Releases the allocated resources for this context. Gets an for the given entity. The entry provides access to change tracking information and operations for the entity. The type of the entity. The entity to get the entry for. The entry for the given entity. Gets an for the given entity. The entry provides access to change tracking information and operations for the entity. This method may be called on an entity that is not tracked. You can then set the property on the returned entry to have the context begin tracking the entity in the specified state. The entity to get the entry for. The entry for the given entity. Begins tracking the given entity, and any other reachable entities that are not already being tracked, in the state such that they will be inserted into the database when is called. Use to set the state of only a single entity. The type of the entity. The entity to add. The for the entity. The entry provides access to change tracking information and operations for the entity. Begins tracking the given entity, and any other reachable entities that are not already being tracked, in the state such that they will be inserted into the database when is called. This method is async only to allow special value generators, such as the one used by 'Microsoft.EntityFrameworkCore.Metadata.SqlServerValueGenerationStrategy.SequenceHiLo', to access the database asynchronously. For all other cases the non async method should be used. The type of the entity. The entity to add. A to observe while waiting for the task to complete. A task that represents the asynchronous Add operation. The task result contains the for the entity. The entry provides access to change tracking information and operations for the entity. Begins tracking the given entity and entries reachable from the given entity using the state by default, but see below for cases when a different state will be used. Generally, no database interaction will be performed until is called. A recursive search of the navigation properties will be performed to find reachable entities that are not already being tracked by the context. All entities found will be tracked by the context. For entity types with generated keys if an entity has its primary key value set then it will be tracked in the state. If the primary key value is not set then it will be tracked in the state. This helps ensure only new entities will be inserted. An entity is considered to have its primary key value set if the primary key property is set to anything other than the CLR default for the property type. For entity types without generated keys, the state set is always . Use to set the state of only a single entity. The type of the entity. The entity to attach. The for the entity. The entry provides access to change tracking information and operations for the entity. Begins tracking the given entity and entries reachable from the given entity using the state by default, but see below for cases when a different state will be used. Generally, no database interaction will be performed until is called. A recursive search of the navigation properties will be performed to find reachable entities that are not already being tracked by the context. All entities found will be tracked by the context. For entity types with generated keys if an entity has its primary key value set then it will be tracked in the state. If the primary key value is not set then it will be tracked in the state. This helps ensure new entities will be inserted, while existing entities will be updated. An entity is considered to have its primary key value set if the primary key property is set to anything other than the CLR default for the property type. For entity types without generated keys, the state set is always . Use to set the state of only a single entity. The type of the entity. The entity to update. The for the entity. The entry provides access to change tracking information and operations for the entity. Begins tracking the given entity in the state such that it will be removed from the database when is called. If the entity is already tracked in the state then the context will stop tracking the entity (rather than marking it as ) since the entity was previously added to the context and does not exist in the database. Any other reachable entities that are not already being tracked will be tracked in the same way that they would be if was called before calling this method. This allows any cascading actions to be applied when is called. Use to set the state of only a single entity. The type of the entity. The entity to remove. The for the entity. The entry provides access to change tracking information and operations for the entity. Begins tracking the given entity, and any other reachable entities that are not already being tracked, in the state such that they will be inserted into the database when is called. Use to set the state of only a single entity. The entity to add. The for the entity. The entry provides access to change tracking information and operations for the entity. Begins tracking the given entity, and any other reachable entities that are not already being tracked, in the state such that they will be inserted into the database when is called. Use to set the state of only a single entity. This method is async only to allow special value generators, such as the one used by 'Microsoft.EntityFrameworkCore.Metadata.SqlServerValueGenerationStrategy.SequenceHiLo', to access the database asynchronously. For all other cases the non async method should be used. The entity to add. A to observe while waiting for the task to complete. A task that represents the asynchronous Add operation. The task result contains the for the entity. The entry provides access to change tracking information and operations for the entity. Begins tracking the given entity and entries reachable from the given entity using the state by default, but see below for cases when a different state will be used. Generally, no database interaction will be performed until is called. A recursive search of the navigation properties will be performed to find reachable entities that are not already being tracked by the context. All entities found will be tracked by the context. For entity types with generated keys if an entity has its primary key value set then it will be tracked in the state. If the primary key value is not set then it will be tracked in the state. This helps ensure only new entities will be inserted. An entity is considered to have its primary key value set if the primary key property is set to anything other than the CLR default for the property type. For entity types without generated keys, the state set is always . Use to set the state of only a single entity. The entity to attach. The for the entity. The entry provides access to change tracking information and operations for the entity. Begins tracking the given entity and entries reachable from the given entity using the state by default, but see below for cases when a different state will be used. Generally, no database interaction will be performed until is called. A recursive search of the navigation properties will be performed to find reachable entities that are not already being tracked by the context. All entities found will be tracked by the context. For entity types with generated keys if an entity has its primary key value set then it will be tracked in the state. If the primary key value is not set then it will be tracked in the state. This helps ensure new entities will be inserted, while existing entities will be updated. An entity is considered to have its primary key value set if the primary key property is set to anything other than the CLR default for the property type. For entity types without generated keys, the state set is always . Use to set the state of only a single entity. The entity to update. The for the entity. The entry provides access to change tracking information and operations for the entity. Begins tracking the given entity in the state such that it will be removed from the database when is called. If the entity is already tracked in the state then the context will stop tracking the entity (rather than marking it as ) since the entity was previously added to the context and does not exist in the database. Any other reachable entities that are not already being tracked will be tracked in the same way that they would be if was called before calling this method. This allows any cascading actions to be applied when is called. Use to set the state of only a single entity. The entity to remove. The for the entity. The entry provides access to change tracking information and operations for the entity. Begins tracking the given entities, and any other reachable entities that are not already being tracked, in the state such that they will be inserted into the database when is called. The entities to add. Begins tracking the given entity, and any other reachable entities that are not already being tracked, in the state such that they will be inserted into the database when is called. This method is async only to allow special value generators, such as the one used by 'Microsoft.EntityFrameworkCore.Metadata.SqlServerValueGenerationStrategy.SequenceHiLo', to access the database asynchronously. For all other cases the non async method should be used. The entities to add. A task that represents the asynchronous operation. Begins tracking the given entities and entries reachable from the given entities using the state by default, but see below for cases when a different state will be used. Generally, no database interaction will be performed until is called. A recursive search of the navigation properties will be performed to find reachable entities that are not already being tracked by the context. All entities found will be tracked by the context. For entity types with generated keys if an entity has its primary key value set then it will be tracked in the state. If the primary key value is not set then it will be tracked in the state. This helps ensure only new entities will be inserted. An entity is considered to have its primary key value set if the primary key property is set to anything other than the CLR default for the property type. For entity types without generated keys, the state set is always . Use to set the state of only a single entity. The entities to attach. Begins tracking the given entities and entries reachable from the given entities using the state by default, but see below for cases when a different state will be used. Generally, no database interaction will be performed until is called. A recursive search of the navigation properties will be performed to find reachable entities that are not already being tracked by the context. All entities found will be tracked by the context. For entity types with generated keys if an entity has its primary key value set then it will be tracked in the state. If the primary key value is not set then it will be tracked in the state. This helps ensure new entities will be inserted, while existing entities will be updated. An entity is considered to have its primary key value set if the primary key property is set to anything other than the CLR default for the property type. For entity types without generated keys, the state set is always . Use to set the state of only a single entity. The entities to update. Begins tracking the given entity in the state such that it will be removed from the database when is called. If any of the entities are already tracked in the state then the context will stop tracking those entities (rather than marking them as ) since those entities were previously added to the context and do not exist in the database. Any other reachable entities that are not already being tracked will be tracked in the same way that they would be if was called before calling this method. This allows any cascading actions to be applied when is called. The entities to remove. Begins tracking the given entities, and any other reachable entities that are not already being tracked, in the state such that they will be inserted into the database when is called. The entities to add. Begins tracking the given entity, and any other reachable entities that are not already being tracked, in the state such that they will be inserted into the database when is called. This method is async only to allow special value generators, such as the one used by 'Microsoft.EntityFrameworkCore.Metadata.SqlServerValueGenerationStrategy.SequenceHiLo', to access the database asynchronously. For all other cases the non async method should be used. The entities to add. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. Begins tracking the given entities and entries reachable from the given entities using the state by default, but see below for cases when a different state will be used. Generally, no database interaction will be performed until is called. A recursive search of the navigation properties will be performed to find reachable entities that are not already being tracked by the context. All entities found will be tracked by the context. For entity types with generated keys if an entity has its primary key value set then it will be tracked in the state. If the primary key value is not set then it will be tracked in the state. This helps ensure only new entities will be inserted. An entity is considered to have its primary key value set if the primary key property is set to anything other than the CLR default for the property type. For entity types without generated keys, the state set is always . Use to set the state of only a single entity. The entities to attach. Begins tracking the given entities and entries reachable from the given entities using the state by default, but see below for cases when a different state will be used. Generally, no database interaction will be performed until is called. A recursive search of the navigation properties will be performed to find reachable entities that are not already being tracked by the context. All entities found will be tracked by the context. For entity types with generated keys if an entity has its primary key value set then it will be tracked in the state. If the primary key value is not set then it will be tracked in the state. This helps ensure new entities will be inserted, while existing entities will be updated. An entity is considered to have its primary key value set if the primary key property is set to anything other than the CLR default for the property type. For entity types without generated keys, the state set is always . Use to set the state of only a single entity. The entities to update. Begins tracking the given entity in the state such that it will be removed from the database when is called. If any of the entities are already tracked in the state then the context will stop tracking those entities (rather than marking them as ) since those entities were previously added to the context and do not exist in the database. Any other reachable entities that are not already being tracked will be tracked in the same way that they would be if was called before calling this method. This allows any cascading actions to be applied when is called. The entities to remove. Finds an entity with the given primary key values. If an entity with the given primary key values is being tracked by the context, then it is returned immediately without making a request to the database. Otherwise, a query is made to the database for an entity with the given primary key values and this entity, if found, is attached to the context and returned. If no entity is found, then null is returned. The type of entity to find. The values of the primary key for the entity to be found. The entity found, or null. Finds an entity with the given primary key values. If an entity with the given primary key values is being tracked by the context, then it is returned immediately without making a request to the database. Otherwise, a query is made to the database for an entity with the given primary key values and this entity, if found, is attached to the context and returned. If no entity is found, then null is returned. The type of entity to find. The values of the primary key for the entity to be found. The entity found, or null. Finds an entity with the given primary key values. If an entity with the given primary key values is being tracked by the context, then it is returned immediately without making a request to the database. Otherwise, a query is made to the database for an entity with the given primary key values and this entity, if found, is attached to the context and returned. If no entity is found, then null is returned. The type of entity to find. The values of the primary key for the entity to be found. A to observe while waiting for the task to complete. The entity found, or null. Finds an entity with the given primary key values. If an entity with the given primary key values is being tracked by the context, then it is returned immediately without making a request to the database. Otherwise, a query is made to the database for an entity with the given primary key values and this entity, if found, is attached to the context and returned. If no entity is found, then null is returned. The type of entity to find. The values of the primary key for the entity to be found. The entity found, or null. Finds an entity with the given primary key values. If an entity with the given primary key values is being tracked by the context, then it is returned immediately without making a request to the database. Otherwise, a query is made to the database for an entity with the given primary key values and this entity, if found, is attached to the context and returned. If no entity is found, then null is returned. The type of entity to find. The values of the primary key for the entity to be found. The entity found, or null. Finds an entity with the given primary key values. If an entity with the given primary key values is being tracked by the context, then it is returned immediately without making a request to the database. Otherwise, a query is made to the database for an entity with the given primary key values and this entity, if found, is attached to the context and returned. If no entity is found, then null is returned. The type of entity to find. The values of the primary key for the entity to be found. A to observe while waiting for the task to complete. The entity found, or null. Gets the scoped being used to resolve services. This property is intended for use by extension methods that need to make use of services not directly exposed in the public API surface. Returns a string that represents the current object. A string that represents the current object. Determines whether the specified object is equal to the current object. The object to compare with the current object. true if the specified object is equal to the current object; otherwise, false. Serves as the default hash function. A hash code for the current object. A unique identifier for the context instance and pool lease, if any. This identifier is primarily intended as a correlation ID for logging and debugging such that it is easy to identify that multiple events are using the same or different context instances. Compares this ID to another ID to see if they represent the same leased context. The other ID. True if they represent the same leased context; false otherwise. Compares this ID to another ID to see if they represent the same leased context. The other ID. True if they represent the same leased context; false otherwise. A hash code for this ID. The hash code. Compares one ID to another ID to see if they represent the same leased context. The first ID. The second ID. True if they represent the same leased context; false otherwise. Compares one ID to another ID to see if they represent different leased contexts. The first ID. The second ID. True if they represent different leased contexts; false otherwise. Creates a new with the given and lease number. A unique identifier for the being used. A number indicating whether this is the first, second, third, etc. lease of this instance. A unique identifier for the being used. When context pooling is being used, then this ID must be combined with the in order to get a unique ID for the effective instance being used. A number that is incremented each time this particular instance is leased from the context pool. Will be zero if context pooling is not being used. Returns the fully qualified type name of this instance. The fully qualified type name. The options to be used by a . You normally override or use a to create instances of this class and it is not designed to be directly constructed in your application code. Initializes a new instance of the class. You normally override or use a to create instances of this class and it is not designed to be directly constructed in your application code. The extensions that store the configured options. Gets the extensions that store the configured options. Gets the extension of the specified type. Returns null if no extension of the specified type is configured. The type of the extension to get. The extension, or null if none was found. Gets the extension of the specified type. Throws if no extension of the specified type is configured. The type of the extension to get. The extension. Adds the given extension to the underlying options and creates a new with the extension added. The type of extension to be added. The extension to be added. The new options instance with the given extension added. The type of context that these options are for. Will return if the options are not built for a specific derived context. Specifies that no further configuration of this options object should occur. Returns true if . has been called. A frozen options object cannot be further configured with . Provides a simple API surface for configuring . Databases (and other extensions) typically define extension methods on this object that allow you to configure the database connection (and other options) to be used for a context. You can use to configure a context by overriding or creating a externally and passing it to the context constructor. Initializes a new instance of the class with no options set. Initializes a new instance of the class to further configure a given . The options to be configured. Gets the options being configured. Gets a value indicating whether any options have been configured. This can be useful when you have overridden to configure the context, but in some cases you also externally provide options via the context constructor. This property can be used to determine if the options have already been set, and skip some or all of the logic in . Sets the model to be used for the context. If the model is set, then will not be run. If setting an externally created model should be called first. The model to be used. The same builder instance so that multiple calls can be chained. Sets the that will be used to create instances for logging done by this context. There is no need to call this method when using one of the 'AddDbContext' methods. 'AddDbContext' will ensure that the used by EF is obtained from the application service provider. This method cannot be used if the application is setting the internal service provider through a call to . In this case, the should be configured directly in that service provider. The logger factory to be used. The same builder instance so that multiple calls can be chained. Enables detailed errors when handling of data value exceptions that occur during processing of store query results. Such errors most often occur due to misconfiguration of entity properties. E.g. If a property is configured to be of type 'int', but the underlying data in the store is actually of type 'string', then an exception will be generated at runtime during processing of the data value. When this option is enabled and a data error is encountered, the generated exception will include details of the specific entity property that generated the error. Enabling this option incurs a small performance overhead during query execution. Note that if the application is setting the internal service provider through a call to , then this option must configured the same way for all uses of that service provider. Consider instead not calling so that EF will manage the service providers and can create new instances as required. The same builder instance so that multiple calls can be chained. Sets the to be used for query caching by this context. Note that changing the memory cache can cause EF to build a new internal service provider, which may cause issues with performance. Generally it is expected that no more than one or two different instances will be used for a given application. This method cannot be used if the application is setting the internal service provider through a call to . In this case, the should be configured directly in that service provider. The memory cache to be used. The same builder instance so that multiple calls can be chained. Sets the that the context should resolve all of its services from. EF will create and manage a service provider if none is specified. The service provider must contain all the services required by Entity Framework (and the database being used). The Entity Framework services can be registered using an extension method on . For example, the Microsoft SQL Server provider includes an AddEntityFrameworkSqlServer() method to add the required services. If the has a or registered, then this will be used as the options for this context instance. The service provider to be used. The same builder instance so that multiple calls can be chained. Sets the from which application services will be obtained. This is done automatically when using 'AddDbContext', so it is rare that this method needs to be called. The service provider to be used. The same builder instance so that multiple calls can be chained. Enables application data to be included in exception messages, logging, etc. This can include the values assigned to properties of your entity instances, parameter values for commands being sent to the database, and other such data. You should only enable this flag if you have the appropriate security measures in place based on the sensitivity of this data. Note that if the application is setting the internal service provider through a call to , then this option must configured the same way for all uses of that service provider. Consider instead not calling so that EF will manage the service providers and can create new instances as required. If true, then sensitive data is logged. The same builder instance so that multiple calls can be chained. Enables or disables caching of internal service providers. Disabling caching can massively impact performance and should only be used in testing scenarios that build many service providers for test isolation. Note that if the application is setting the internal service provider through a call to , then setting this option wil have no effect. If true, then the internal service provider is cached. The same builder instance so that multiple calls can be chained. Sets the tracking behavior for LINQ queries run against the context. Disabling change tracking is useful for read-only scenarios because it avoids the overhead of setting up change tracking for each entity instance. You should not disable change tracking if you want to manipulate entity instances and persist those changes to the database using . This method sets the default behavior for all contexts created with these options, but you can override this behavior for a context instance using or on individual queries using the and methods. The default value is . This means the change tracker will keep track of changes for all entities that are returned from a LINQ query. The same builder instance so that multiple calls can be chained. Configures the runtime behavior of warnings generated by Entity Framework. You can set a default behavior and behaviors for each warning type. Note that changing this configuration can cause EF to build a new internal service provider, which may cause issues with performance. Generally it is expected that no more than one or two different configurations will be used for a given application. Note that if the application is setting the internal service provider through a call to , then this option must configured the same way for all uses of that service provider. Consider instead not calling so that EF will manage the service providers and can create new instances as required. optionsBuilder.ConfigureWarnings(warnings => warnings.Default(WarningBehavior.Ignore) .Log(CoreEventId.IncludeIgnoredWarning, CoreEventId.ModelValidationWarning) .Throw(RelationalEventId.BoolWithDefaultWarning)) An action to configure the warning behavior. The same builder instance so that multiple calls can be chained. Replaces the internal Entity Framework implementation of a service contract with a different implementation. This method can only be used when EF is building and managing its internal service provider. If the service provider is being built externally and passed to , then replacement services should be configured on that service provider before it is passed to EF. The replacement service gets the same scope as the EF service that it is replacing. The type (usually an interface) that defines the contract of the service to replace. The new implementation type for the service. The same builder instance so that multiple calls can be chained. Adds instances to those registered on the context. Interceptors can be used to view, change, or suppress operations taken by Entity Framework. See the specific implementations of for details. For example, 'IDbCommandInterceptor'. A single interceptor instance can implement multiple different interceptor interfaces. I will be registered as an interceptor for all interfaces that it implements. Extensions can also register multiple s in the internal service provider. If both injected and application interceptors are found, then the injected interceptors are run in the order that they are resolved from the service provider, and then the application interceptors are run in the order that they were added to the context. Calling this method multiple times will result in all interceptors in every call being added to the context. Interceptors added in a previous call are not overridden by interceptors added in a later call. The interceptors to add. The same builder instance so that multiple calls can be chained. Adds instances to those registered on the context. Interceptors can be used to view, change, or suppress operations taken by Entity Framework. See the specific implementations of for details. For example, 'IDbCommandInterceptor'. Extensions can also register multiple s in the internal service provider. If both injected and application interceptors are found, then the injected interceptors are run in the order that they are resolved from the service provider, and then the application interceptors are run in the order that they were added to the context. Calling this method multiple times will result in all interceptors in every call being added to the context. Interceptors added in a previous call are not overridden by interceptors added in a later call. The interceptors to add. The same builder instance so that multiple calls can be chained. Adds the given extension to the options. If an existing extension of the same type already exists, it will be replaced. This method is intended for use by extension methods to configure the context. It is not intended to be used in application code. The type of extension to be added. The extension to be added. Returns a string that represents the current object. A string that represents the current object. Determines whether the specified object is equal to the current object. The object to compare with the current object. true if the specified object is equal to the current object; otherwise, false. Serves as the default hash function. A hash code for the current object. Provides a simple API surface for configuring . Databases (and other extensions) typically define extension methods on this object that allow you to configure the database connection (and other options) to be used for a context. You can use to configure a context by overriding or creating a externally and passing it to the context constructor. The type of context to be configured. Initializes a new instance of the class with no options set. Initializes a new instance of the class to further configure a given . The options to be configured. Gets the options being configured. Sets the model to be used for the context. If the model is set, then will not be run. The model to be used. The same builder instance so that multiple calls can be chained. Sets the that will be used to create instances for logging done by this context. There is no need to call this method when using one of the 'AddDbContext' methods. 'AddDbContext' will ensure that the used by EF is obtained from the application service provider. This method cannot be used if the application is setting the internal service provider through a call to . In this case, the should be configured directly in that service provider. The logger factory to be used. The same builder instance so that multiple calls can be chained. Enables detailed errors when handling data value exceptions that occur during processing of store query results. Such errors most often occur due to misconfiguration of entity properties. E.g. If a property is configured to be of type 'int', but the underlying data in the store is actually of type 'string', then an exception will be generated at runtime during processing of the data value. When this option is enabled and a data error is encountered, the generated exception will include details of the specific entity property that generated the error. Enabling this option incurs a small performance overhead during query execution. Note that if the application is setting the internal service provider through a call to , then this option must configured the same way for all uses of that service provider. Consider instead not calling so that EF will manage the service providers and can create new instances as required. The same builder instance so that multiple calls can be chained. Sets the to be used for query caching by this context. Note that changing the memory cache can cause EF to build a new internal service provider, which may cause issues with performance. Generally it is expected that no more than one or two different instances will be used for a given application. This method cannot be used if the application is setting the internal service provider through a call to . In this case, the should be configured directly in that service provider. The memory cache to be used. The same builder instance so that multiple calls can be chained. Sets the that the context should resolve all of its services from. EF will create and manage a service provider if none is specified. The service provider must contain all the services required by Entity Framework (and the database being used). The Entity Framework services can be registered using an extension method on . For example, the Microsoft SQL Server provider includes an AddEntityFrameworkSqlServer() method to add the required services. If the has a or registered, then this will be used as the options for this context instance. The service provider to be used. The same builder instance so that multiple calls can be chained. Sets the from which application services will be obtained. This is done automatically when using 'AddDbContext', so it is rare that this method needs to be called. The service provider to be used. The same builder instance so that multiple calls can be chained. Enables application data to be included in exception messages, logging, etc. This can include the values assigned to properties of your entity instances, parameter values for commands being sent to the database, and other such data. You should only enable this flag if you have the appropriate security measures in place based on the sensitivity of this data. Note that if the application is setting the internal service provider through a call to , then this option must configured the same way for all uses of that service provider. Consider instead not calling so that EF will manage the service providers and can create new instances as required. The same builder instance so that multiple calls can be chained. Enables or disables caching of internal service providers. Disabling caching can massively impact performance and should only be used in testing scenarios that build many service providers for test isolation. Note that if the application is setting the internal service provider through a call to , then setting this option wil have no effect. If true, then the internal service provider is cached. The same builder instance so that multiple calls can be chained. Sets the tracking behavior for LINQ queries run against the context. Disabling change tracking is useful for read-only scenarios because it avoids the overhead of setting up change tracking for each entity instance. You should not disable change tracking if you want to manipulate entity instances and persist those changes to the database using . This method sets the default behavior for all contexts created with these options, but you can override this behavior for a context instance using or on individual queries using the and methods. The default value is . This means the change tracker will keep track of changes for all entities that are returned from a LINQ query. Configures the runtime behavior of warnings generated by Entity Framework. You can set a default behavior and behaviors for each warning type. Note that changing this configuration can cause EF to build a new internal service provider, which may cause issues with performance. Generally it is expected that no more than one or two different configurations will be used for a given application. Note that if the application is setting the internal service provider through a call to , then this option must configured the same way for all uses of that service provider. Consider instead not calling so that EF will manage the service providers and can create new instances as required. optionsBuilder.ConfigureWarnings(warnings => warnings.Default(WarningBehavior.Ignore) .Log(CoreEventId.IncludeIgnoredWarning, CoreEventId.ModelValidationWarning) .Throw(RelationalEventId.BoolWithDefaultWarning)) An action to configure the warning behavior. The same builder instance so that multiple calls can be chained. Replaces the internal Entity Framework implementation of a service contract with a different implementation. This method can only be used when EF is building and managing its internal service provider. If the service provider is being built externally and passed to , then replacement services should be configured on that service provider before it is passed to EF. The replacement service gets the same scope as the EF service that it is replacing. The type (usually an interface) that defines the contract of the service to replace. The new implementation type for the service. The same builder instance so that multiple calls can be chained. The options to be used by a . You normally override or use a to create instances of this class and it is not designed to be directly constructed in your application code. The type of the context these options apply to. Initializes a new instance of the class. You normally override or use a to create instances of this class and it is not designed to be directly constructed in your application code. Initializes a new instance of the class. You normally override or use a to create instances of this class and it is not designed to be directly constructed in your application code. The extensions that store the configured options. Adds the given extension to the underlying options and creates a new with the extension added. The type of extension to be added. The extension to be added. The new options instance with the given extension added. The type of context that these options are for (). Provides CLR methods that get translated to database functions when used in LINQ to Entities queries. The methods on this class are accessed via . Returns a string that represents the current object. A string that represents the current object. Determines whether the specified object is equal to the current object. The object to compare with the current object. true if the specified object is equal to the current object; otherwise, false. Serves as the default hash function. A hash code for the current object. Provides CLR methods that get translated to database functions when used in LINQ to Entities queries. The methods on this class are accessed via . An implementation of the SQL LIKE operation. On relational databases this is usually directly translated to SQL. Note that if this function is translated into SQL, then the semantics of the comparison will depend on the database configuration. In particular, it may be either case-sensitive or case-insensitive. If this function is evaluated on the client, then it will always use a case-insensitive comparison. The DbFunctions instance. The string that is to be matched. The pattern which may involve wildcards %,_,[,],^. true if there is a match. An implementation of the SQL LIKE operation. On relational databases this is usually directly translated to SQL. Note that if this function is translated into SQL, then the semantics of the comparison will depend on the database configuration. In particular, it may be either case-sensitive or case-insensitive. If this function is evaluated on the client, then it will always use a case-insensitive comparison. The DbFunctions instance. The string that is to be matched. The pattern which may involve wildcards %,_,[,],^. The escape character (as a single character string) to use in front of %,_,[,],^ if they are not used as wildcards. true if there is a match. An API for getting logger categories in an Intellisense/tab-completion friendly manner. Get an Entity Framework Core logger category using its Name property. For example, LoggerCategory.Database.Sql.Name. Use these types with or to create a logger. The root/prefix for all Entity Framework categories. Logger categories for messages related to database interactions. Logger category for messages related to connection operations. Logger category for command execution, including SQL sent to the database. Logger category for messages related to transaction operations. Logger category for messages related to , excluding messages specifically relating to database interactions which are covered by the categories. Logger categories for messages related to model building and metadata. Logger category for messages from model validation. Logger category for messages related to queries, excluding the generated SQL, which is in the category. Logger category for miscellaneous messages from the Entity Framework infrastructure. Logger category for messages from scaffolding/reverse engineering. Logger category messages from Migrations. Logger category for messages from change detection and tracking. A can be used to query instances of . LINQ queries against a will be translated into queries against the database. The results of a LINQ query against a will contain the results returned from the database and may not reflect changes made in the context that have not been persisted to the database. For example, the results will not contain newly added views and may still contain views that are marked for deletion. Depending on the database being used, some parts of a LINQ query against a may be evaluated in memory rather than being translated into a database query. objects are usually obtained from a property on a derived or from the method. The type of view being operated on by this view. A can be used to query and save instances of . LINQ queries against a will be translated into queries against the database. The results of a LINQ query against a will contain the results returned from the database and may not reflect changes made in the context that have not been persisted to the database. For example, the results will not contain newly added entities and may still contain entities that are marked for deletion. Depending on the database being used, some parts of a LINQ query against a may be evaluated in memory rather than being translated into a database query. objects are usually obtained from a property on a derived or from the method. The type of entity being operated on by this set. Returns this object typed as . This is a convenience method to help with disambiguation of extension methods in the same namespace that extend both interfaces. This object. Returns this object typed as . This is a convenience method to help with disambiguation of extension methods in the same namespace that extend both interfaces. This object. Gets an that represents a local view of all Added, Unchanged, and Modified entities in this set. This local view will stay in sync as entities are added or removed from the context. Likewise, entities added to or removed from the local view will automatically be added to or removed from the context. This property can be used for data binding by populating the set with data, for example by using the extension method, and then binding to the local data through this property by calling for WPF binding, or for WinForms. Finds an entity with the given primary key values. If an entity with the given primary key values is being tracked by the context, then it is returned immediately without making a request to the database. Otherwise, a query is made to the database for an entity with the given primary key values and this entity, if found, is attached to the context and returned. If no entity is found, then null is returned. The values of the primary key for the entity to be found. The entity found, or null. Finds an entity with the given primary key values. If an entity with the given primary key values is being tracked by the context, then it is returned immediately without making a request to the database. Otherwise, a query is made to the database for an entity with the given primary key values and this entity, if found, is attached to the context and returned. If no entity is found, then null is returned. The values of the primary key for the entity to be found. The entity found, or null. Finds an entity with the given primary key values. If an entity with the given primary key values is being tracked by the context, then it is returned immediately without making a request to the database. Otherwise, a query is made to the database for an entity with the given primary key values and this entity, if found, is attached to the context and returned. If no entity is found, then null is returned. The values of the primary key for the entity to be found. A to observe while waiting for the task to complete. The entity found, or null. Begins tracking the given entity, and any other reachable entities that are not already being tracked, in the state such that they will be inserted into the database when is called. Use to set the state of only a single entity. The entity to add. The for the entity. The entry provides access to change tracking information and operations for the entity. Begins tracking the given entity, and any other reachable entities that are not already being tracked, in the state such that they will be inserted into the database when is called. This method is async only to allow special value generators, such as the one used by 'Microsoft.EntityFrameworkCore.Metadata.SqlServerValueGenerationStrategy.SequenceHiLo', to access the database asynchronously. For all other cases the non async method should be used. Use to set the state of only a single entity. The entity to add. A to observe while waiting for the task to complete. A task that represents the asynchronous Add operation. The task result contains the for the entity. The entry provides access to change tracking information and operations for the entity. Begins tracking the given entity and entries reachable from the given entity using the state by default, but see below for cases when a different state will be used. Generally, no database interaction will be performed until is called. A recursive search of the navigation properties will be performed to find reachable entities that are not already being tracked by the context. All entities found will be tracked by the context. For entity types with generated keys if an entity has its primary key value set then it will be tracked in the state. If the primary key value is not set then it will be tracked in the state. This helps ensure only new entities will be inserted. An entity is considered to have its primary key value set if the primary key property is set to anything other than the CLR default for the property type. For entity types without generated keys, the state set is always . Use to set the state of only a single entity. The entity to attach. The for the entity. The entry provides access to change tracking information and operations for the entity. Begins tracking the given entity in the state such that it will be removed from the database when is called. If the entity is already tracked in the state then the context will stop tracking the entity (rather than marking it as ) since the entity was previously added to the context and does not exist in the database. Any other reachable entities that are not already being tracked will be tracked in the same way that they would be if was called before calling this method. This allows any cascading actions to be applied when is called. Use to set the state of only a single entity. The entity to remove. The for the entity. The entry provides access to change tracking information and operations for the entity. Begins tracking the given entity and entries reachable from the given entity using the state by default, but see below for cases when a different state will be used. Generally, no database interaction will be performed until is called. A recursive search of the navigation properties will be performed to find reachable entities that are not already being tracked by the context. All entities found will be tracked by the context. For entity types with generated keys if an entity has its primary key value set then it will be tracked in the state. If the primary key value is not set then it will be tracked in the state. This helps ensure new entities will be inserted, while existing entities will be updated. An entity is considered to have its primary key value set if the primary key property is set to anything other than the CLR default for the property type. For entity types without generated keys, the state set is always . Use to set the state of only a single entity. The entity to update. The for the entity. The entry provides access to change tracking information and operations for the entity. Begins tracking the given entities, and any other reachable entities that are not already being tracked, in the state such that they will be inserted into the database when is called. The entities to add. Begins tracking the given entities, and any other reachable entities that are not already being tracked, in the state such that they will be inserted into the database when is called. This method is async only to allow special value generators, such as the one used by 'Microsoft.EntityFrameworkCore.Metadata.SqlServerValueGenerationStrategy.SequenceHiLo', to access the database asynchronously. For all other cases the non async method should be used. The entities to add. A task that represents the asynchronous operation. Begins tracking the given entities and entries reachable from the given entities using the state by default, but see below for cases when a different state will be used. Generally, no database interaction will be performed until is called. A recursive search of the navigation properties will be performed to find reachable entities that are not already being tracked by the context. All entities found will be tracked by the context. For entity types with generated keys if an entity has its primary key value set then it will be tracked in the state. If the primary key value is not set then it will be tracked in the state. This helps ensure only new entities will be inserted. An entity is considered to have its primary key value set if the primary key property is set to anything other than the CLR default for the property type. For entity types without generated keys, the state set is always . Use to set the state of only a single entity. The entities to attach. Begins tracking the given entities in the state such that they will be removed from the database when is called. If any of the entities are already tracked in the state then the context will stop tracking those entities (rather than marking them as ) since those entities were previously added to the context and do not exist in the database. Any other reachable entities that are not already being tracked will be tracked in the same way that they would be if was called before calling this method. This allows any cascading actions to be applied when is called. The entities to remove. Begins tracking the given entities and entries reachable from the given entities using the state by default, but see below for cases when a different state will be used. Generally, no database interaction will be performed until is called. A recursive search of the navigation properties will be performed to find reachable entities that are not already being tracked by the context. All entities found will be tracked by the context. For entity types with generated keys if an entity has its primary key value set then it will be tracked in the state. If the primary key value is not set then it will be tracked in the state. This helps ensure new entities will be inserted, while existing entities will be updated. An entity is considered to have its primary key value set if the primary key property is set to anything other than the CLR default for the property type. For entity types without generated keys, the state set is always . Use to set the state of only a single entity. The entities to update. Begins tracking the given entities, and any other reachable entities that are not already being tracked, in the state such that they will be inserted into the database when is called. The entities to add. Begins tracking the given entities, and any other reachable entities that are not already being tracked, in the state such that they will be inserted into the database when is called. This method is async only to allow special value generators, such as the one used by 'Microsoft.EntityFrameworkCore.Metadata.SqlServerValueGenerationStrategy.SequenceHiLo', to access the database asynchronously. For all other cases the non async method should be used. The entities to add. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. Begins tracking the given entities and entries reachable from the given entities using the state by default, but see below for cases when a different state will be used. Generally, no database interaction will be performed until is called. A recursive search of the navigation properties will be performed to find reachable entities that are not already being tracked by the context. All entities found will be tracked by the context. For entity types with generated keys if an entity has its primary key value set then it will be tracked in the state. If the primary key value is not set then it will be tracked in the state. This helps ensure only new entities will be inserted. An entity is considered to have its primary key value set if the primary key property is set to anything other than the CLR default for the property type. For entity types without generated keys, the state set is always . Use to set the state of only a single entity. The entities to attach. Begins tracking the given entities in the state such that they will be removed from the database when is called. If any of the entities are already tracked in the state then the context will stop tracking those entities (rather than marking them as ) since those entities were previously added to the context and do not exist in the database. Any other reachable entities that are not already being tracked will be tracked in the same way that they would be if was called before calling this method. This allows any cascading actions to be applied when is called. The entities to remove. Begins tracking the given entities and entries reachable from the given entities using the state by default, but see below for cases when a different state will be used. Generally, no database interaction will be performed until is called. A recursive search of the navigation properties will be performed to find reachable entities that are not already being tracked by the context. All entities found will be tracked by the context. For entity types with generated keys if an entity has its primary key value set then it will be tracked in the state. If the primary key value is not set then it will be tracked in the state. This helps ensure new entities will be inserted, while existing entities will be updated. An entity is considered to have its primary key value set if the primary key property is set to anything other than the CLR default for the property type. For entity types without generated keys, the state set is always . Use to set the state of only a single entity. The entities to update. Returns an which when enumerated will execute a query against the database to load all entities from the database. The query results. Returns an which when enumerated will execute a query against the database to load all entities from the database. The query results. Returns an which when enumerated will asynchronously execute a query against the database. The query results. Gets the IQueryable element type. Gets the IQueryable LINQ Expression. Gets the IQueryable provider. Gets the scoped being used to resolve services. This property is intended for use by extension methods that need to make use of services not directly exposed in the public API surface. This method is called by data binding frameworks when attempting to data bind directly to a . This implementation always throws an exception as binding directly to a will result in a query being sent to the database every time the data binding framework requests the contents of the collection. Instead load the results into the context, for example, by using the extension method, and then bind to the local data through the by calling for WPF binding, or for WinForms. Always thrown. Never returns, always throws an exception. Gets a value indicating whether the collection is a collection of System.Collections.IList objects. Always returns false. Returns a string that represents the current object. A string that represents the current object. Determines whether the specified object is equal to the current object. The object to compare with the current object. true if the specified object is equal to the current object; otherwise, false. Serves as the default hash function. A hash code for the current object. An exception that is thrown when a concurrency violation is encountered while saving to the database. A concurrency violation occurs when an unexpected number of rows are affected during save. This is usually because the data in the database has been modified since it was loaded into memory. Initializes a new instance of the class. Initializes a new instance of the class. The error message that explains the reason for the exception. Initializes a new instance of the class. The error message that explains the reason for the exception. The exception that is the cause of the current exception. Initializes a new instance of the class. The error message that explains the reason for the exception. The exception that is the cause of the current exception. The entries that were involved in the error. Initializes a new instance of the class. The error message that explains the reason for the exception. The entries that were involved in the concurrency violation. Initializes a new instance of the class from a serialized form. The serialization info. The streaming context being used. An exception that is thrown when an error is encountered while saving to the database. Initializes a new instance of the class. Initializes a new instance of the class. The error message that explains the reason for the exception. Initializes a new instance of the class. The error message that explains the reason for the exception. The exception that is the cause of the current exception. Initializes a new instance of the class. The error message that explains the reason for the exception. The entries that were involved in the error. Initializes a new instance of the class. The error message that explains the reason for the exception. The exception that is the cause of the current exception. The entries that were involved in the error. Initializes a new instance of the class from a serialized form. The serialization info. The streaming context being used. Gets the entries that were involved in the error. Typically this is a single entry, but in some cases it may be zero or multiple entries. Indicates how a delete operation is applied to dependent entities in a relationship when the principal is deleted or the relationship is severed. Behaviors in the database are dependent on the database schema being created appropriately. Using Entity Framework Migrations or will create the appropriate schema. Note that the in-memory behavior for entities that are currently tracked by the can be different from the behavior that happens in the database. For entities being tracked by the , the values of foreign key properties in dependent entities are set to null when the related principal is deleted. This helps keep the graph of entities in a consistent state while they are being tracked, such that a fully consistent graph can then be written to the database. If a property cannot be set to null because it is not a nullable type, then an exception will be thrown when is called. If the database has been created from the model using Entity Framework Migrations or the method, then the behavior in the database is to generate an error if a foreign key constraint is violated. This is the default for optional relationships. That is, for relationships that have nullable foreign keys. For entities being tracked by the , the values of foreign key properties in dependent entities are set to null when the related principal is deleted. This helps keep the graph of entities in a consistent state while they are being tracked, such that a fully consistent graph can then be written to the database. If a property cannot be set to null because it is not a nullable type, then an exception will be thrown when is called. If the database has been created from the model using Entity Framework Migrations or the method, then the behavior in the database is to generate an error if a foreign key constraint is violated. For entities being tracked by the , the values of foreign key properties in dependent entities are set to null when the related principal is deleted. This helps keep the graph of entities in a consistent state while they are being tracked, such that a fully consistent graph can then be written to the database. If a property cannot be set to null because it is not a nullable type, then an exception will be thrown when is called. If the database has been created from the model using Entity Framework Migrations or the method, then the behavior in the database is the same as is described above for tracked entities. Keep in mind that some databases cannot easily support this behavior, especially if there are cycles in relationships, in which case it may be better to use which will allow EF to cascade null values on loaded entities even if the database does not support this. For entities being tracked by the , dependent entities will deleted when the related principal is deleted. If the database has been created from the model using Entity Framework Migrations or the method, then the behavior in the database is the same as is described above for tracked entities. Keep in mind that some databases cannot easily support this behavior, especially if there are cycles in relationships, in which case it may be better to use which will allow EF to perform cascade deletes on loaded entities even if the database does not support this. This is the default for required relationships. That is, for relationships that have non-nullable foreign keys. For entities being tracked by the , dependent entities will deleted when the related principal is deleted. If the database has been created from the model using Entity Framework Migrations or the method, then the behavior in the database is to generate an error if a foreign key constraint is violated. For entities being tracked by the , the values of foreign key properties in dependent entities are set to null when the related principal is deleted. This helps keep the graph of entities in a consistent state while they are being tracked, such that a fully consistent graph can then be written to the database. If a property cannot be set to null because it is not a nullable type, then an exception will be thrown when is called. If the database has been created from the model using Entity Framework Migrations or the method, then the behavior in the database is to generate an error if a foreign key constraint is violated. Note: it is unusual to use this value. Consider using instead to match the behavior of EF6 with cascading deletes disabled. For entities being tracked by the , the values of foreign key properties in dependent entities are not changed when the related principal entity is deleted. This can result in an inconsistent graph of entities where the values of foreign key properties do not match the relationships in the graph. If the database has been created from the model using Entity Framework Migrations or the method, then the behavior in the database is to generate an error if a foreign key constraint is violated. Identifies where to find the design time services for a given database provider. This attribute should be present in the primary assembly of the database provider. This attribute is typically used by database providers (and other extensions). It is generally not used in application code. Initializes a new instance of the class. The name of the type that can be used to add the database providers design time services to a . This type should implement . Gets the name of the type that can be used to add the database providers design time services to a . This type should implement . Identifies where to find additional design time services. This attribute is typically used by design-time extensions. It is generally not used in application code. Initializes a new instance of the class. The assembly-qualified name of the type that can be used to add additional design time services to a . This type should implement . Initializes a new instance of the class. The assembly-qualified name of the type that can be used to add additional design time services to a . This type should implement . The name of the provider for which these services should be added. If null, the services will be added for all providers. Gets the assembly-qualified name of the type that can be used to add additional design time services to a . This type should implement . Gets the name of the provider for which these services should be added. If null, the services will be added for all providers. A factory for creating derived instances. Implement this interface to enable design-time services for context types that do not have a public default constructor. At design-time, derived instances can be created in order to enable specific design-time experiences such as Migrations. Design-time services will automatically discover implementations of this interface that are in the startup assembly or the same assembly as the derived context. The type of the context. Creates a new instance of a derived context. Arguments provided by the design-time service. An instance of . Enables configuring design-time services. Tools will automatically discover implementations of this interface that are in the startup assembly. Configures design-time services. Use this method to override the default design-time services with your own implementations. The design-time service collection. A event payload class for events that have a query expression. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The left . The right . The left . The right . A event payload class for events that indicate an entity is being deleted because its parent entity has been deleted. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The entity entry for the entity that is being deleted. The entity entry for the parent that trigger the cascade. The state that the child is transitioning to--usually 'Deleted'. The state that the child is transitioning to--usually 'Deleted'. The entity entry for the parent that trigger the cascade. A event payload class for events that indicate an entity is being deleted because its required relationship to a parent has been severed. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The entity entry for the entity that is being deleted. The entity type to which the relationship was severed. The state that the child is transitioning to--usually 'Deleted'. The state that the child is transitioning to--usually 'Deleted'. The entity type to which the relationship was severed. A event payload class for events that indicate a collection navigation property has had entities added and/or removed. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The entry for the entity instance on which the property value has changed. The navigation property. The entities added to the collection. The entities removed from the collection. The entry for the entity instance on which the navigation property has been added to or removed from. The entities added to the collection. The entities removed from the collection. A event payload class for context initialization events. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The that is initialized. The being used. The that is initialized. The being used. Event IDs for events that correspond to messages logged to an and events sent to a . These IDs are also used with to configure the behavior of warnings. The lower-bound for event IDs used by any Entity Framework or provider code. The lower-bound for event IDs used by any relational database provider. The lower-bound for event IDs used only by database providers. The lower-bound for event IDs used only by database provider design-time and tooling. An error occurred while attempting to save changes to the database. This event is in the category. This event uses the payload when used with a . The same entity is being tracked as a different weak entity type. This event is in the category. An error occurred while processing the results of a query. This event is in the category. This event uses the payload when used with a . A query model is being compiled. This event is in the category. A query uses a row limiting operation (Skip/Take) without OrderBy which may lead to unpredictable results. This event is in the category. A query uses First/FirstOrDefault operation without OrderBy and filter which may lead to unpredictable results. This event is in the category. A query model was optimized. This event is in the category. A navigation was included in the query. This event is in the category. A navigation was ignored while compiling a query. This event is in the category. A query is planned for execution. This event is in the category. This event uses the payload when used with a . Possible unintended comparison of collection navigation to null. This event is in the category. This event uses the payload when used with a . Possible unintended reference comparison. This event is in the category. This event uses the payload when used with a . A warning indicating that sensitive data logging is enabled and may be logged. This event may be in different categories depending on where sensitive data is being logged. This event uses the payload when used with a . A service provider was created for internal use by Entity Framework. This event is in the category. This event uses the payload when used with a . Many service providers were created in a single app domain. This event is in the category. This event uses the payload when used with a . A was initialized. This event is in the category. This event uses the payload when used with a . Provides debug information for why a new internal service provider was created. This event is in the category. This event uses the payload when used with a . A transient exception has been encountered during execution and the operation will be retried. This event is in the category. This event uses the payload when used with a . A navigation property is being lazy-loaded. This event is in the category. This event uses the payload when used with a . An attempt was made to lazy-load a property after the DbContext had been disposed. This event is in the category. This event uses the payload when used with a . An attempt was made to lazy-load a property from a detached/no-tracking entity. This event is in the category. This event uses the payload when used with a . 'AddEntityFramework*' was called on the service provider, but 'UseInternalServiceProvider' wasn't. This event is in the category. This event uses the payload when used with a . A shadow property has been created. This event is in the category. This event uses the payload when used with a . An index was not created as the properties are already covered. This event is in the category. This event uses the payload when used with a . The best match for foreign key properties are incompatible with the principal key. This event is in the category. This event uses the payload when used with a . The entity type with the navigation property that has the was configured as the dependent side in the relationship. This event is in the category. This event uses the payload when used with a . The entity type with the navigation property that has non-nullability was configured as the dependent side in the relationship. This event is in the category. This event uses the payload when used with a . Navigations separated into two relationships as was specified on both navigations. This event is in the category. This event uses the payload when used with a . Navigations separated into two relationships as non-nullability was specified on both navigations. This event is in the category. This event uses the payload when used with a . The on the navigation property to the dependent entity was ignored. This event is in the category. This event uses the payload when used with a . The non-nullability of the navigation property to the dependent entity was ignored. This event is in the category. This event uses the payload when used with a . The on the collection navigation property was ignored. This event is in the category. This event uses the payload when used with a . The properties that best match the foreign key convention are already used by a different foreign key. This event is in the category. This event uses the payload when used with a . There are multiple properties that could be used as the primary key. This event is in the category. This event uses the payload when used with a . There are multiple properties that could be navigations to the same type. This event is in the category. This event uses the payload when used with a . There are multiple navigations with that point to the same inverse navigation. This event is in the category. This event uses the payload when used with a . There navigation that points to is not the defining navigation. This event is in the category. This event uses the payload when used with a . There navigation that points to is not the defining navigation. This event is in the category. This event uses the payload when used with a . Navigations separated into two relationships as was specified on properties on both sides. This event is in the category. This event uses the payload when used with a . Navigations separated into two relationships as was specified on navigations on both sides. This event is in the category. This event uses the payload when used with a . The specified on the navigation doesn't match the specified on the property. This event is in the category. This event uses the payload when used with a . The configured is redundant. This event is in the category. This event uses the payload when used with a . DetectChanges is starting. This event is in the category. This event uses the payload when used with a . DetectChanges has completed. This event is in the category. This event uses the payload when used with a . DetectChanges has detected a change in a property value. This event is in the category. This event uses the payload when used with a . DetectChanges has detected a change in a foreign key property value. This event is in the category. This event uses the payload when used with a . DetectChanges has detected entities were added and/or removed from a collection navigation property. This event is in the category. This event uses the payload when used with a . DetectChanges has detected a change to the entity references by another entity. This event is in the category. This event uses the payload when used with a . An entity is being tracked by the . This event is in the category. This event uses the payload when used with a . An entity tracked by the is changing from one to another. This event is in the category. This event uses the payload when used with a . A property of a tracked entity is getting a generated value. This event is in the category. This event uses the payload when used with a . An entity is being deleted or detached because its parent was deleted. This event is in the category. This event uses the payload when used with a . An entity is being deleted or detached because the required relationship to its parent was severed. This event is in the category. This event uses the payload when used with a . or one of its overloads started. This event is in the category. This event uses the payload when used with a . or one of its overloads has completed. This event is in the category. This event uses the payload when used with a . An was thrown during the call to This event is in the category. This event uses the payload when used with a . The is being disposed. This event is in the category. This event uses the payload when used with a . A property has a collection or enumeration type with a value converter but with no value comparer. This event is in the category. This event uses the payload when used with a . This class contains static methods used by EF Core internals and database providers to write information to an and a for well-known events. This type is typically used by database providers (and other extensions). It is generally not used in application code. Logs for the event. The diagnostics logger to use. The context in use. The exception that caused this event. Logs for the event. The diagnostics logger to use. The context in use. The exception that caused this event. Logs for the event. The diagnostics logger to use. The first dependent type. The second dependent type. Logs for the event. The diagnostics logger to use. The type being used. The exception that caused this failure. Logs for the event. The diagnostics logger to use. Used to create a human-readable representation of the expression tree. The query expression tree. Logs for the event. The diagnostics logger to use. The logger category for which to log the warning. Logs for the event. The diagnostics logger to use. The navigation being used. Logs for the event. The diagnostics logger to use. The left side expression. The right side expression. Logs for the event. The diagnostics logger to use. The service provider. Logs for the event. The diagnostics logger to use. The service providers that have been created. Logs for the event. The diagnostics logger to use. Debug information for the new service providers. Debug information for existing service providers. Logs for the event. The diagnostics logger to use. The context being used. The context options being used. Logs for the event. The diagnostics logger to use. The exceptions(s) that caused the failure. The delay that before the next retry. Indicates whether execution is asynchronous or not. Logs for the event. The diagnostics logger to use. The context being used. The entity type. The name of the navigation property. Logs for the event. The diagnostics logger to use. The context being used. The entity type. The name of the navigation property. Logs for the event. The diagnostics logger to use. The context being used. The entity type. The name of the navigation property. Logs for the event. The diagnostics logger to use. The service provider used. Logs for the event. The diagnostics logger to use. The property. Logs for the event. The diagnostics logger to use. The property. Logs for the event. The diagnostics logger to use. The redundant index. The other index. Logs for the event. The diagnostics logger to use. The redundant foreign key. Logs for the event. The diagnostics logger to use. The properties that make up the foreign key. The corresponding keys on the principal side. Logs for the event. The diagnostics logger to use. The navigation property. Logs for the event. The diagnostics logger to use. The navigation property. Logs for the event. The diagnostics logger to use. The first navigation property. The second navigation property. Logs for the event. The diagnostics logger to use. The first navigation property. The second navigation property. Logs for the event. The diagnostics logger to use. The navigation property. Logs for the event. The diagnostics logger to use. The navigation property. Logs for the event. The diagnostics logger to use. The navigation property. Logs for the event. The diagnostics logger to use. The foreign key. Logs for the event. The diagnostics logger to use. The first property. The second property. Logs for the event. The diagnostics logger to use. The first set of properties. The second set of properties. Logs for the event. The diagnostics logger to use. The list of conflicting navigation properties. The inverse navigation property. The target type. Logs for the event. The diagnostics logger to use. The declaring entity type. The navigation property. The target type. The inverse navigation property. The defining navigation property. Logs for the event. The diagnostics logger to use. The declaring entity type. The navigation property. The target type. The inverse navigation property. The ownership navigation property. Logs for the event. The diagnostics logger to use. The first navigation property. The second navigation property. The first property. The second property. Logs for the event. The diagnostics logger to use. The first navigation property. The second navigation property. Logs for the event. The diagnostics logger to use. The navigation property. The property. Logs for the event. The diagnostics logger to use. The context being used. Logs for the event. The diagnostics logger to use. The context being used. Logs for the event. The diagnostics logger to use. The internal entity entry. The property. The old value. The new value. Logs for the event. The diagnostics logger to use. The internal entity entry. The property. The old value. The new value. Logs for the event. The diagnostics logger to use. The internal entity entry. The property. The old value. the new value. Logs for the event. The diagnostics logger to use. The internal entity entry. The property. The old value. The new value. Logs for the event. The diagnostics logger to use. The internal entity entry. The navigation property. The added values. The removed values. Logs for the event. The diagnostics logger to use. The internal entity entry. The navigation property. The added values. The removed values. Logs for the event. The diagnostics logger to use. The internal entity entry. The navigation property. The old value. The new value. Logs for the event. The diagnostics logger to use. The internal entity entry. The navigation property. The old value. The new value. Logs for the event. The diagnostics logger to use. The internal entity entry. Logs for the event. The diagnostics logger to use. The internal entity entry. Logs for the event. The diagnostics logger to use. The internal entity entry. The old value. The new value. Logs for the event. The diagnostics logger to use. The internal entity entry. The old state. The new state. Logs for the event. The diagnostics logger to use. The internal entity entry. The property. The value generated. Indicates whether or not the value is a temporary or permanent value. Logs for the event. The diagnostics logger to use. The internal entity entry. The property. The value generated. Indicates whether or not the value is a temporary or permanent value. Logs for the event. The diagnostics logger to use. The child internal entity entry. The parent internal entity entry. The target state. Logs for the event. The diagnostics logger to use. The child internal entity entry. The parent internal entity entry. The target state. Logs for the event. The diagnostics logger to use. The child internal entity entry. The parent entity type. The target state. Logs for the event. The diagnostics logger to use. The child internal entity entry. The parent entity type. The target state. Logs for the event. The diagnostics logger to use. The context being used. Logs for the event. The diagnostics logger to use. The context being used. The number of entities saved. Logs for the event. The diagnostics logger to use. The context being used. A event payload class for error events that reference a . Constructs the event payload. The event definition. A delegate that generates a log message for this event. The current . The exception that triggered this event. The exception that triggered this event. A event payload class for events that reference a . Constructs the event payload. The event definition. A delegate that generates a log message for this event. The current , or null if not known. The current . A event payload class for error events that reference a type. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The type of the current . The exception that triggered this event. The exception that triggered this event. A event payload class for events that reference a type. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The current . The current . A event payload class for events that reference a . Constructs the event payload. The event definition. A delegate that generates a log message for this event. The entity entry. The entity entry. A base class for all Entity Framework event payloads. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The that defines the message ID and name. The that would be used to log message for this event. A logger message describing this event. A logger message describing this event. Defines metadata for an event with no parameters and a cached delegate to log the event with reduced allocations. Creates an event definition instance. Logging options. The . The at which the event will be logged. Function to create a cached delegate for logging the event. A string representing the code that should be passed to . Generates the message that would be logged without logging it. Typically used for throwing an exception in warning-as-error cases. The message string. Logs the event, or throws if the event has been configured to be treated as an error. The . The logger to which the event should be logged. Whether the event should be logged, thrown as an exception or ignored. Optional exception associated with the event. Base class for event definitions. Creates an event definition instance. Logging options. The . The at which the event will be logged. A string representing the code that should be passed to . The . The at which the event will be logged. A string representing the code that should be passed to to suppress this event as an error. Returns a warning-as-error exception wrapping the given message for this event. The message to wrap. Gets the log behavior for this event. This determines whether it should be logged, thrown as an exception or ignored. The . The logger to which the event would be logged. Whether the event should be logged, thrown as an exception or ignored. Defines metadata for an event with one parameter and a cached delegate to log the event with reduced allocations. Creates an event definition instance. Logging options. The . The at which the event will be logged. Function to create a cached delegate for logging the event. A string representing the code that should be passed to . Generates the message that would be logged without logging it. Typically used for throwing an exception in warning-as-error cases. The message argument. The message string. Logs the event, or throws if the event has been configured to be treated as an error. The . The logger to which the event should be logged. Whether the event should be logged, thrown as an exception or ignored. Message argument. Defines metadata for an event with three parameters and a cached delegate to log the event with reduced allocations. Creates an event definition instance. Logging options. The . The at which the event will be logged. A string representing the code that should be passed to . Function to create a cached delegate for logging the event. Generates the message that would be logged without logging it. Typically used for throwing an exception in warning-as-error cases. The first message argument. The second message argument. The message string. Logs the event, or throws if the event has been configured to be treated as an error. The . The logger to which the event should be logged. Whether the event should be logged, thrown as an exception or ignored. The first message argument. The second message argument. Defines metadata for an event with three parameters and a cached delegate to log the event with reduced allocations. Creates an event definition instance. Logging options. The . The at which the event will be logged. A string representing the code that should be passed to . Function to create a cached delegate for logging the event. Generates the message that would be logged without logging it. Typically used for throwing an exception in warning-as-error cases. The first message argument. The second message argument. The third message argument. Optional exception associated with this event. The message string. Logs the event, or throws if the event has been configured to be treated as an error. The . The logger to which the event should be logged. Whether the event should be logged, thrown as an exception or ignored. The first message argument. The second message argument. The third message argument. Optional exception associated with the event. Defines metadata for an event with three parameters and a cached delegate to log the event with reduced allocations. Creates an event definition instance. Logging options. The . The at which the event will be logged. A string representing the code that should be passed to . Function to create a cached delegate for logging the event. Generates the message that would be logged without logging it. Typically used for throwing an exception in warning-as-error cases. The first message argument. The second message argument. The third message argument. The fourth message argument. The message string. Logs the event, or throws if the event has been configured to be treated as an error. The . The logger to which the event should be logged. Whether the event should be logged, thrown as an exception or ignored. The first message argument. The second message argument. The third message argument. The fourth message argument. Defines metadata for an event with three parameters and a cached delegate to log the event with reduced allocations. Creates an event definition instance. Logging options. The . The at which the event will be logged. A string representing the code that should be passed to . Function to create a cached delegate for logging the event. Generates the message that would be logged without logging it. Typically used for throwing an exception in warning-as-error cases. The first message argument. The second message argument. The third message argument. The fourth message argument. The fifth message argument. The message string. Logs the event, or throws if the event has been configured to be treated as an error. The . The logger to which the event should be logged. Whether the event should be logged, thrown as an exception or ignored. The first message argument. The second message argument. The third message argument. The fourth message argument. The fifth message argument. Defines metadata for an event with three parameters and a cached delegate to log the event with reduced allocations. Creates an event definition instance. Logging options. The . The at which the event will be logged. A string representing the code that should be passed to . Function to create a cached delegate for logging the event. Generates the message that would be logged without logging it. Typically used for throwing an exception in warning-as-error cases. The first message argument. The second message argument. The third message argument. The fourth message argument. The fifth message argument. The sixth message argument. The message string. Logs the event, or throws if the event has been configured to be treated as an error. The . The logger to which the event should be logged. Whether the event should be logged, thrown as an exception or ignored. The first message argument. The second message argument. The third message argument. The fourth message argument. The fifth message argument. The sixth message argument. The event payload for execution strategy events. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The exceptions that have been caught during the execution of an operation. The delay before retrying the operation. Indicates whether or not the command was executed asynchronously. A correlation ID that identifies the instance being used. The delay before retrying the operation. Indicates whether or not the operation is being executed asynchronously. A event payload class for events that have a query expression. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The . The . Defines metadata for an event with more than six parameters such that it has to have special handling. Creates an event definition instance. Logging options. The . The at which the event will be logged. A string representing the code that should be passed to . The parameterized message definition. Generates the message that would be logged without logging it. Typically used for throwing an exception in warning-as-error cases. A delegate that will log the message to an . The message string. Logs the event, or throws if the event has been configured to be treated as an error. The . The logger to which the event should be logged. Whether the event should be logged, thrown as an exception or ignored. A delegate that will log the message to an . The parameterized message definition. A event payload class for events that have a foreign key. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The foreign key. The foreign key. Combines and for use by all EF Core logging so that events can be sent to both for ASP.NET and for everything else. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Entity Framework logging options. Caching for logging definitions. Gets a value indicating whether sensitive information should be written to the underlying logger. This also has the side effect of writing a warning to the log the first time sensitive data is logged. The underlying . The . Combines and for use by all EF Core logging so that events can be sent to both for ASP.NET and for everything else. Also intercepts messages such that warnings can be either logged or thrown, and such that a decision as to whether to log sensitive data or not can be made. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Holds registered interceptors, if any. An interface implemented by any subclass that represents an error event with an . The exception that was thrown to signal the error. The base interface for all Entity Framework interceptors. Interceptors can be used to view, change, or suppress operations taken by Entity Framework. See the specific implementations of this interface for details. For example, 'IDbCommandInterceptor'. Use to register application interceptors. Extensions can also register multiple s in the internal service provider. If both injected and application interceptors are found, then the injected interceptors are run in the order that they are resolved from the service provider, and then the application interceptors are run in the order that they were added to the context. A service to resolve a single /> from all those registered on the or in the internal service provider. This type is typically used by database providers (and other extensions). It is generally not used in application code. Instances should be registered on the internal service provider as multiple interfaces. The interceptor type. Resolves a single /> from all those registered on the or in the internal service provider. The interceptors to combine. The combined interceptor. A service that resolves a single from all those registered on the or in the internal service provider. This type is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Resolves a single from all those registered on the or in the internal service provider. The interceptor type to resolve. The resolved interceptor, which may be null if none are registered. Options set at the singleton level to control how\ messages are logged and/or thrown in exceptions. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Reflects the option set by . This flag is set once a warning about has been issued to avoid logging the warning again. Reflects the option set by . Represents a result from an such as an 'IDbConnectionInterceptor' to allow suppression of the normal operation being intercepted. A value of this type is passed to all interceptor methods that are called before the operation being intercepted is executed. Typically the interceptor should return the value passed in. However, creating a result with causes the operation being intercepted to be suppressed; that is, the operation is not executed. Creates a new instance indicating that execution should be suppressed. If true, then interception is suppressed. Represents a result from an such as an 'IDbCommandInterceptor' to allow suppression of the normal operation being intercepted. A value of this type is passed to all interceptor methods that are called before the operation being intercepted is executed. Typically the interceptor should return the value passed in. However, creating a result with causes the operation being intercepted to be suppressed; that is, the operation is not executed. The value in the result is then used as a substitute return value for the operation that was suppressed. The new result to use. Creates a new instance indicating that execution should be suppressed and the given result should be used instead. The result to use. The result to use. The property can only be accessed if is true. The concept here is the same as and when is false. If true, then interception is suppressed, and contains the result to use. Abstract base class for implementations of the service. The interceptor type. The interceptor type. Resolves a single /> from all those registered on the or in the internal service provider. The interceptors to combine. The combined interceptor. Must be implemented by the inheriting type to create a single interceptor from the given list. The interceptors to combine. The combined interceptor. 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. 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. 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. We resolve this lazily because loggers are created very early in the initialization process where is not yet available from D.I. This means those loggers can't do interception, but that's okay because nothing else is ready for them to do interception anyway. 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. An 'IServiceProvider' was created for internal use by Entity Framework. More than twenty 'IServiceProvider' instances have been created for internal use by Entity Framework. This is commonly caused by injection of a new singleton service instance into every DbContext instance. For example, calling UseLoggerFactory passing in a new instance each time--see https://go.microsoft.com/fwlink/?linkid=869049 for more details. Consider reviewing calls on 'DbContextOptionsBuilder' that may require new service providers to be built. An additional 'IServiceProvider' was created for internal use by Entity Framework. An existing service provider was not used due to the following configuration changes: {debugInfo}. Entity Framework Core {version} initialized '{contextType}' using provider '{provider}' with options: {options} An exception occurred while iterating over the results of a query for context type '{contextType}'.{newline}{error} An exception occurred in the database while saving changes for context type '{contextType}'.{newline}{error} DetectChanges starting for '{contextType}'. DetectChanges completed for '{contextType}'. Unchanged '{entityType}.{property}' detected as changed and will be marked as modified. Consider using 'DbContextOptionsBuilder.EnableSensitiveDataLogging' to see property values. Unchanged '{entityType}.{property}' detected as changed from '{oldValue}' to '{newValue}' and will be marked as modified for entity with key '{keyValues}'. Foreign key property '{entityType}.{property}' detected as changed. Consider using 'DbContextOptionsBuilder.EnableSensitiveDataLogging' to see property values. Foreign key property '{entityType}.{property}' detected as changed from '{oldValue}' to '{newValue}' for entity with key '{keyValues}'. Detected {addedCount} entities added and {removedCount} entities removed from navigation property '{entityType}.{property}'. Consider using 'DbContextOptionsBuilder.EnableSensitiveDataLogging' to see key values. Detected {addedCount} entities added and {removedCount} entities removed from navigation property '{entityType}.{property}' on entity with key '{keyValues}'. Navigation property '{entityType}.{property}' detected as changed. Consider using 'DbContextOptionsBuilder.EnableSensitiveDataLogging' to see key values. Navigation property '{entityType}.{property}' for entity with key '{keyValues}' detected as changed. Cascade state change of '{entityType}' entity to '{state}' due to deletion of parent '{parentType}' entity. Consider using 'DbContextOptionsBuilder.EnableSensitiveDataLogging' to see key values. Cascade state change of '{entityType}' entity with key '{keyValues}' to '{state}' due to deletion of parent '{parentType}' entity with key '{parentKeyValues}'. '{entityType}' entity changed to '{state}' state due to severed required relationship to parent '{parentType}' entity. Consider using 'DbContextOptionsBuilder.EnableSensitiveDataLogging' to see key values. '{entityType}' entity with key '{keyValues}' changed to '{state}' state due to severed required relationship to parent '{parentType}' entity. Context '{contextType}' started tracking '{entityType}' entity. Consider using 'DbContextOptionsBuilder.EnableSensitiveDataLogging' to see key values. Context '{contextType}' started tracking '{entityType}' entity with key '{keyValues}'. An '{entityType}' entity tracked by '{contextType}' changed from '{oldState}' to '{newState}'. Consider using 'DbContextOptionsBuilder.EnableSensitiveDataLogging' to see key values. The '{entityType}' entity with key '{keyValues}' tracked by '{contextType}' changed from '{oldState}' to '{newState}'. '{contextType}' generated a value for the '{property}' property of new '{entityType}' entity. Consider using 'DbContextOptionsBuilder.EnableSensitiveDataLogging' to see key values. '{contextType}' generated value '{keyValue}' for the '{property}' property of new '{entityType}' entity. '{contextType}' generated a temporary value for the '{property}' property of new '{entityType}' entity. Consider using 'DbContextOptionsBuilder.EnableSensitiveDataLogging' to see key values. '{contextType}' generated temporary value '{keyValue}' for the '{property}' property of new '{entityType}' entity. SaveChanges starting for '{contextType}'. SaveChanges completed for '{contextType}' with {savedCount} entities written to the database. '{contextType}' disposed. Compiling query model: {newline}'{queryModel}' Optimized query model: {newline}'{queryModel}' Including navigation: '{navigation}' {plan} Sensitive data logging is enabled. Log entries and exception messages may include sensitive application data, this mode should only be enabled during development. The Include operation for navigation '{include}' is unnecessary and was ignored because the navigation is not reachable in the final query results. See https://go.microsoft.com/fwlink/?linkid=850303 for more information. Query: '{queryModel}' uses a row limiting operation (Skip/Take) without OrderBy which may lead to unpredictable results. Query: '{queryModel}' uses First/FirstOrDefault/Last/LastOrDefault operation without OrderBy and filter which may lead to unpredictable results. Collection navigations are only considered null if their parent entity is null. Use '.Any()' to check whether collection navigation '{navigationPath}' is empty. Possible unintended reference comparison between '{left}' and '{right}'. The same entity is being tracked as different weak entity types '{dependent1}' and '{dependent2}'. If a property value changes it will result in two store changes, which might not be the desired outcome. The property '{property}' on entity type '{entityType}' was created in shadow state because there are no eligible CLR members with a matching name. The property '{property}' on entity type '{entityType}' is a collection or enumeration type with a value converter but with no value comparer. Set a value comparer to ensure the collection/enumeration elements are compared correctly. A transient exception has been encountered during execution and the operation will be retried after {delay}ms.{newline}{error} Navigation property '{navigation}' of entity type '{entityType}' is being lazy-loaded. An attempt was made to lazy-load navigation property '{navigation}' on entity type '{entityType}' after the associated DbContext was disposed. An attempt was made to lazy-load navigation property '{navigation}' on detached entity of type '{entityType}'. Lazy-loading is not supported for detached entities or entities that are loaded with 'AsNoTracking()'. The index {redundantIndex} was not created on entity type '{firstEntityType}' as the properties are already covered by the index {otherIndex}. The foreign key properties haven't been configured by convention because the best match {foreignKey} are incompatible with the current principal key {principalKey}. This message can be disregarded if explicit configuration has been specified. The navigation property '{navigation}' has a RequiredAttribute causing the entity type '{entityType}' to be configured as the dependent side in the corresponding relationship. The navigation property '{navigation}' is non-nullable, causing the entity type '{entityType}' to be configured as the dependent side in the corresponding relationship. The RequiredAttribute on '{principalEntityType}.{principalNavigation}' was ignored because there is also a RequiredAttribute on '{dependentEntityType}.{dependentNavigation}'. RequiredAttribute should only be specified on the dependent side of the relationship. '{principalEntityType}.{principalNavigation}' may still be null at runtime despite being declared as non-nullable since only the navigation to principal '{dependentEntityType}.{dependentNavigation}' can be configured as required. Navigations '{dependentEntityType}.{dependentNavigation}' and '{principalEntityType}.{principalNavigation}' were separated into two relationships as ForeignKeyAttribute was specified on navigations on both sides. Navigations '{dependentEntityType}.{dependentNavigation}' and '{principalEntityType}.{principalNavigation}' were separated into two relationships as ForeignKeyAttribute was specified on properties '{dependentProperty}' and '{principalProperty}' on both sides. The relationship was separated into two relationships because ForeignKeyAttribute specified on the navigation '{navigationEntityType}.{navigation}' doesn't match the ForeignKeyAttribute specified on the property '{propertyEntityType}.{property}'. There are multiple navigations ({navigations}) configured with InversePropertyAttribute that point to the same inverse navigation '{inverseNavigation}'. There are multiple relationships between '{dependentEntityType}' and '{principalEntityType}' without configured foreign key properties causing EF to create shadow properties on '{dependentType}' with names dependent on the discovery order. No relationship from '{firstEntityType}' to '{secondEntityType}' has been configured by convention because there are multiple properties on one entity type {navigationProperties} that could be matched with the properties on the other entity type {inverseNavigations}. This message can be disregarded if explicit configuration has been specified. Primary key hasn't been configured by convention as both properties '{firstProperty}' and '{secondProperty}' could be used as the primary key for the entity type '{entityType}'. This message can be disregarded if explicit configuration has been specified. The navigation '{targetEntityType}.{inverseNavigation}' cannot be used as the inverse of '{weakEntityType}.{navigation}' because it's not the defining navigation '{definingNavigation}' The navigation '{targetEntityType}.{inverseNavigation}' cannot be used as the inverse of '{ownedEntityType}.{navigation}' because it's not the ownership navigation '{ownershipNavigation}' {error} The foreign key {redundantForeignKey} on entity type '{entityType} targets itself, it should be removed since it serves no purpose. The RequiredAttribute on '{principalEntityType}.{principalNavigation}' was ignored because it is a collection. RequiredAttribute should only be specified on reference navigations pointing to the principal side of the relationship. The RequiredAttribute on '{principalEntityType}.{principalNavigation}' was ignored because it is pointing to the dependent entity. RequiredAttribute should only be specified on the navigation pointing to the principal side of the relationship. To change the dependent side configure the foreign key properties. '{principalEntityType}.{principalNavigation}' may still be null at runtime despite being declared as non-nullable since only the navigation to principal can be configured as required. 'AddEntityFramework*' was called on the service provider, but 'UseInternalServiceProvider' wasn't called in the DbContext options configuration. Remove the 'AddEntityFramework*' call as in most cases it's not needed and might cause conflicts with other products and services registered in the same service provider. A event payload class for events from Constructs the event payload. The event definition. A delegate that generates a log message for this event. The current . The entity instance on which lazy-loading was initiated. The navigation property name of the relationship to be loaded. The entity instance on which lazy-loading was initiated. The navigation property name of the relationship to be loaded. Generic helper class used to implement the property. The logger category type. The logger category name, for use with , etc. The category name. The logger category name. The logger category name. The logger category name. The category. Contains placeholders for caching of . This class is public so that it can be inherited by database providers to add caching for their events. It should not be used for any other purpose. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. A event payload class for events that have a navigation. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The navigation. The navigation. A event payload class for events that indicate a changed property value. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The entry for the entity instance on which the property value has changed. The property. The old value. The new value. The entry for the entity instance on which the property value has changed. The old value. The new value. A event payload class for events that have a property. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The property. The property. A event payload class for events that indicate a property value. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The entry for the entity instance on which the property value has changed. The property. The old value. The entry for the entity instance. The value. A event payload class for events that have a query expression. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The . An that can be used to render the . The . An that can be used to render the . A event payload class for events that indicate a changed property value. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The entry for the entity instance on which the property value has changed. The navigation property. The old referenced entity. The new referenced entity. The entry for the entity instance on which the navigation property value has changed. The old referenced entity. The new referenced entity. A event payload class for events that indicate has completed. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The current . The number of entities saved to the database. The number of entities saved to the database. A event payload class for events that specify the entities being saved and the rows affected. Constructs the event payload. The event definition. A delegate that generates a log message for this event. Entries for the entities being saved. The rows affected. Entries for the entities being saved. The rows affected. A event payload class for events that reference debug information on service provider creation. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The debug information for the new provider. The debug information for existing providers. The debug information for the new provider. The debug information for existing providers. A event payload class for events that reference a container. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The . The . A event payload class for events that reference multiple containers. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The s. The s. A event payload class for events that reference two instances. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The first . The second . The first . The second . A event payload class for events that indicate a change of a tracked entity from one to another. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The entity entry. The old state. The new state. The old state. The new state. A event payload class for events that have two property collections. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The first property collection. The second property collection. The first property collection. The second property collection. A event payload class for events that have two unmapped property collections. Constructs the event payload. The event definition. A delegate that generates a log message for this event. The first property collection. The second property collection. The first property collection. The second property collection. A event payload class for events that have a . Constructs the event payload. The event definition. A delegate that generates a log message for this event. The CLR type. The . The CLR type. The . Represents configuration for which warnings should be thrown, logged, or ignored. by database providers or extensions. These options are set using . Instances of this class are designed to be immutable. To change an option, call one of the 'With...' methods to obtain a new instance with the option changed. Creates a new, empty configuration, with all options set to their defaults. Called by a derived class constructor when implementing the method. The instance that is being cloned. Override this method in a derived class to ensure that any clone created is also of that class. A clone of this instance, which can be modified before being returned as immutable. The option set from the method. Creates a new instance with all options the same as for this instance, but with the given option changed. It is unusual to call this method directly. Instead use . The option to change. A new instance with the option changed. Creates a new instance with the given explicit set for all given event IDs. It is unusual to call this method directly. Instead use . The event IDs for which the behavior should be set. The behavior to set. A new instance with the behaviors set. Creates a new instance with the given log level set for all given event IDs. It is unusual to call this method directly. Instead use . The event IDs and corresponding log levels to set. A new instance with the behaviors set. Gets the set for the given event ID, or null if no explicit behavior has been set. Gets the set for the given event ID, or null if no explicit behavior has been set. Creates a new instance with the given explicit set for the given event ID, but only if no explicit behavior has already been set. It is unusual to call this method directly. Instead use . The event ID for which the behavior should be set. The behavior to set. A new instance with the behavior set, or this instance if a behavior was already set. Returns a hash code created from any options that would cause a new to be needed. A hash over options that require a new service provider when changed. Configures the runtime behavior of events generated by Entity Framework. You can set a default behavior and behaviors for each event ID. This class is used within the API and it is not designed to be directly constructed in your application code. Initializes a new instance of the class. The options builder to which the warnings configuration will be applied. Sets the default behavior when a warning is generated. The desired behavior. The same builder instance so that multiple calls can be chained. Causes an exception to be thrown when the specified event occurs, regardless of default configuration. The and 'RelationalEventId' for the warnings. The same builder instance so that multiple calls can be chained. Causes an event to be logged, regardless of default configuration. The and 'RelationalEventId' for EF Core events. The same builder instance so that multiple calls can be chained. Causes an event to be logged at the specified level, regardless of default configuration. The and 'RelationalEventId' for EF Core events. The same builder instance so that multiple calls can be chained. Causes nothing to happen when the specified event occurs, regardless of default configuration. The and 'RelationalEventId' for EF Core events. The same builder instance so that multiple calls can be chained. String resources used in EF exceptions, etc. These strings are exposed publicly for use by database providers and extensions. It is unusual for application code to need these strings. Unable to save changes because a circular dependency was detected in the data to be saved: '{cycle}'. The LINQ expression '{expression}' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to either AsEnumerable(), AsAsyncEnumerable(), ToList(), or ToListAsync(). See https://go.microsoft.com/fwlink/?linkid=2101038 for more information. Processing of the LINQ expression '{expression}' by '{visitor}' failed. This may indicate either a bug or a limitation in EF Core. See https://go.microsoft.com/fwlink/?linkid=2101433 for more detailed information. The model must be finalized before '{method}' can be used. Ensure that either 'OnModelCreating' has completed or, if using a stand-alone 'ModelBuilder', that 'FinalizeModel' has been called. Sequence contains no elements. The value provided for argument '{argumentName}' must be a valid value of enum type '{enumType}'. The type mapping for '{type}' has not implemented code literal generation. The properties expression '{expression}' is not valid. The expression should represent a simple property access: 't => t.MyProperty'. When specifying multiple properties use an anonymous type: 't => new {{ t.MyProperty1, t.MyProperty2 }}'. The expression '{expression}' is not a valid property expression. The expression should represent a simple property access: 't => t.MyProperty'. The instance of entity type '{entityType}' cannot be tracked because another instance with the same key value for {keyProperties} is already being tracked. When attaching existing entities, ensure that only one entity instance with a given key value is attached. Consider using 'DbContextOptionsBuilder.EnableSensitiveDataLogging' to see the conflicting key values. The instance of entity type '{entityType}' cannot be tracked because another instance with the key value '{keyValue}' is already being tracked. When attaching existing entities, ensure that only one entity instance with a given key value is attached. Cannot start tracking InternalEntityEntry for entity type '{entityType}' because it was created by a different StateManager instance. Cannot start tracking InternalEntityEntry for entity type '{entityType}' because another InternalEntityEntry is already tracking the same entity. The property '{property}' on entity type '{entityType}' could not be found. Ensure that the property exists and has been included in the model. The property '{property}' on entity type '{entityType}' is being accessed using the '{PropertyMethod}' method, but is defined in the model as a navigation property. Use either the '{ReferenceMethod}' or '{CollectionMethod}' method to access navigation properties. The property '{property}' on entity type '{entityType}' is being accessed using the '{ReferenceMethod}' or '{CollectionMethod}' method, but is defined in the model as a non-navigation property. Use the '{PropertyMethod}' method to access non-navigation properties. The property '{property}' on entity type '{entityType}' is being accessed using the '{ReferenceMethod}' method, but is defined in the model as a collection navigation property. Use the '{CollectionMethod}' method to access collection navigation properties. The property '{property}' on entity type '{entityType}' is being accessed using the '{CollectionMethod}' method, but is defined in the model as a non-collection, reference navigation property. Use the '{ReferenceMethod}' method to access reference navigation properties. Navigation property '{navigation}' on entity type '{entityType}' cannot have 'IsLoaded' set to false because the referenced entity is non-null and therefore is loaded. Navigation property '{navigation}' on entity of type '{entityType}' cannot be loaded because the entity is not being tracked. Navigation properties can only be loaded for tracked entities. The entity type '{entityType}' requires a primary key to be defined. If you intended to use a keyless entity type call 'HasNoKey()'. The specified key properties {key} are not declared on the entity type '{entityType}'. Ensure key properties are declared on the target entity type. The specified foreign key properties {foreignKey} are not declared on the entity type '{entityType}'. Ensure foreign key properties are declared on the target entity type. The specified index properties {index} are not declared on the entity type '{entityType}'. Ensure index properties are declared on the target entity type. The source IQueryable doesn't implement IAsyncEnumerable<{genericParameter}>. Only sources that implement IAsyncEnumerable can be used for Entity Framework asynchronous operations. The provider for the source IQueryable doesn't implement IAsyncQueryProvider. Only providers that implement IAsyncQueryProvider can be used for Entity Framework asynchronous operations. The entity type '{entityType}' is configured to use the '{changeTrackingStrategy}' change tracking strategy but does not implement the required '{notificationInterface}' interface. The collection type being used for navigation property '{navigation}' on entity type '{entityType}' does not implement 'INotifyCollectionChanged'. Any entity type configured to use the '{changeTrackingStrategy}' change tracking strategy must use collections that implement 'INotifyCollectionChanged'. Consider using 'ObservableCollection<T>' for this. 'ObservableCollection<T>.Clear()' is not supported because it uses the 'INotifyCollectionChanged' 'Reset' operation, which does not supply the items removed. Either use multiple calls to 'Remove' or use a notifying collection that supports 'Clear', such as 'Microsoft.EntityFrameworkCore.ChangeTracking.ObservableHashSet<T>'. The original value for property '{property}' of entity type '{entityType}' cannot be accessed because it is not being tracked. Original values are not recorded for most properties of entities when the 'ChangingAndChangedNotifications' strategy is used. To access all original values use a different change tracking strategy such as 'ChangingAndChangedNotificationsWithOriginalValues'. The value for property '{property}' of entity type '{entityType}' cannot be set to null because its type is '{propertyType}' which is not a nullable type. The value for property '{property}' of entity type '{entityType}' cannot be set to a value of type '{valueType}' because its type is '{propertyType}'. The property '{property}' belongs to entity type '{entityType}' but is being used with an instance of entity type '{expectedType}'. The specified field '{field}' could not be found for property '{property}' on entity type '{entityType}'. The specified field '{field}' of type '{fieldType}' cannot be used for the property '{entityType}.{property}' of type '{propertyType}'. Only backing fields of types that are assignable from the property type can be used. No field was found backing property '{property}' of entity type '{entity}'. Either name the backing field so that it is picked up by convention, configure the backing field to use, or use a different '{pam}'. No field was found backing property '{property}' of entity type '{entity}'. Lazy-loaded navigation properties must have backing fields. Either name the backing field so that it is picked up by convention or configure the backing field to use. No backing field could be found for property '{property}' of entity type '{entity}' and the property does not have a setter. No backing field could be found for property '{property}' of entity type '{entity}' and the property does not have a getter. No property was associated with field '{field}' of entity type '{entity}'. Either configure a property or use a different '{pam}'. The property '{property}' of entity type '{entity}' does not have a setter. Either make the property writable or use a different '{pam}'. The property '{property}' of entity type '{entity}' does not have a getter. Either make the property readable or use a different '{pam}'. The CLR entity materializer cannot be used for entity type '{entityType}' because it is a shadow state entity type. Materialization to a CLR type is only possible for entity types that have a corresponding CLR type. Services for database providers {storeNames} have been registered in the service provider. Only a single database provider can be registered in a service provider. If possible, ensure that Entity Framework is managing its service provider by removing the call to UseInternalServiceProvider. Otherwise, consider conditionally registering the database provider, or maintaining one service provider per database provider. AddDbContext was called with configuration, but the context type '{contextType}' only declares a parameterless constructor. This means that the configuration passed to AddDbContext will never be used. If configuration is passed to AddDbContext, then '{contextType}' should declare a constructor that accepts a DbContextOptions<{contextType}> and must pass it to the base constructor for DbContext. No database provider has been configured for this DbContext. A provider can be configured by overriding the DbContext.OnConfiguring method or by using AddDbContext on the application service provider. If AddDbContext is used, then also ensure that your DbContext type accepts a DbContextOptions<TContext> object in its constructor and passes it to the base constructor for DbContext. Entity Framework services have not been added to the internal service provider. Either remove the call to UseInternalServiceProvider so that EF will manage its own internal services, or use the method from your database provider to add the required services to the service provider (e.g. AddEntityFrameworkSqlServer). A call was made to '{replaceService}', but Entity Framework is not building its own internal service provider. Either allow EF to build the service provider by removing the call to '{useInternalServiceProvider}', or build replacement services into the service provider before passing it to '{useInternalServiceProvider}'. A call was made to '{useService}', but Entity Framework is not building its own internal service provider. Either allow EF to build the service provider by removing the call to '{useInternalServiceProvider}', or build the '{service}' services to use into the service provider before passing it to '{useInternalServiceProvider}'. A call was made to '{optionCall}' that changed an option that must be constant within a service provider, but Entity Framework is not building its own internal service provider. Either allow EF to build the service provider by removing the call to '{useInternalServiceProvider}', or ensure that the configuration for '{optionCall}' does not change for all uses of a given service provider passed to '{useInternalServiceProvider}'. configuration changed for '{key}' configuration added for '{key}' configuration removed for '{key}' The database provider attempted to register an implementation of the '{service}' service. This is not a service defined by EF and as such must be registered as a provider-specific service using the 'TryAddProviderSpecificServices' method. The current database provider has not implemented the 'CanConnect' method. The implementation type for the registration of the '{service}' service could not be determined. Specific implementation types must be used for services that expect multiple registrations so as to avoid duplicates. An attempt was made to register an instance for the '{scope}' service '{service}'. Instances can only be registered for 'Singleton' services. The '{property}' on entity type '{entityType}' does not have a value set and no value generator is available for properties of type '{propertyType}'. Either set a value for the property before adding the entity or configure a value generator for properties of type '{propertyType}'. The service dependencies type '{dependenciesType}' has been registered inappropriately in the service collection. Service dependencies types must only be registered by Entity Framework, or in rare cases by database providers and then only to change the service lifetime. The type '{givenType}' cannot be used as a value generator because it does not inherit from '{expectedType}'. Cannot create instance of value generator type '{generatorType}'. Ensure that the type is instantiable and has a parameterless constructor, or use the overload of HasValueGenerator that accepts a delegate. The property '{property}' on entity type '{entityType}' has a temporary value while attempting to change the entity's state to '{state}'. Either set a permanent value explicitly or ensure that the database is configured to generate values for this property. The EF.Property<T> method may only be used within LINQ queries. The property '{property}' cannot be added to type '{entityType}' because the type of the corresponding CLR property or field '{clrType}' does not match the specified type '{propertyType}'. The property '{property}' cannot exist on type '{entityType}' because the type is marked as shadow state while the property is not. Shadow state types can only contain shadow state properties. The property '{property}' cannot be removed from entity type '{entityType}' because it is being used in the key {key}. All containing keys must be removed or redefined before the property can be removed. Cannot remove key {key} from entity type '{entityType}' because it is referenced by a foreign key in entity type '{dependentType}'. All foreign keys must be removed or redefined before the referenced key can be removed. The service property '{property}' of type '{serviceType}' cannot be added to the entity type '{entityType}' because service property '{duplicateName}' of the same type already exists on entity type '{duplicateEntityType}'. The navigation property '{navigation}' cannot be added to the entity type '{entityType}' because there is no corresponding CLR property on the underlying type and navigations properties cannot be added to shadow state. The navigation property '{navigation}' cannot be added to the entity type '{entityType}' because its CLR type '{clrType}' does not match the expected CLR type '{targetType}'. The collection navigation property '{navigation}' cannot be added to the entity type '{entityType}' because its CLR type '{clrType}' does not implement 'IEnumerable<{targetType}>'. Collection navigation properties must implement IEnumerable<> of the related entity. The number of properties specified for the foreign key {foreignKey} on entity type '{dependentType}' does not match the number of properties in the principal key {principalKey} on entity type '{principalType}'. The types of the properties specified for the foreign key {foreignKey} on entity type '{dependentType}' do not match the types of the properties in the principal key {principalKey} on entity type '{principalType}'. The type of navigation property '{navigation}' on the entity type '{entityType}' is '{foundType}' which does not implement ICollection<{targetType}>. Collection navigation properties must implement ICollection<> of the target type. The type of navigation property '{navigation}' on the entity type '{entityType}' is '{foundType}' which is an array type. Collection navigation properties cannot be arrays. The navigation property '{navigation}' on the entity type '{entityType}' does not have a setter and no writable backing field was found or specified. Read-only collection navigation properties must be initialized before use. The type of navigation property '{navigation}' on the entity type '{entityType}' is '{foundType}' for which it was not possible to create a concrete instance. Either initialize the property before use, add a public parameterless constructor to the type, or use a type which can be assigned a HashSet<> or List<>. The property '{property}' on entity type '{entityType}' is part of a key and so cannot be modified or marked as modified. To change the principal of an existing entity with an identifying foreign key first delete the dependent and invoke 'SaveChanges' then associate the dependent with the new principal. The property '{property}' on entity type '{entityType}' is defined to be read-only after it has been saved, but its value has been modified or marked as modified. The property '{property}' on entity type '{entityType}' is defined to be read-only before it is saved, but its value has been set to something other than a temporary or default value. The property '{property}' on entity type '{entityType}' must be marked as read-only after it has been saved because it is part of a key. Key properties are always read-only once an entity has been saved for the first time. The association between entity types '{firstType}' and '{secondType}' has been severed but the relationship is either marked as 'Required' or is implicitly required because the foreign key is not nullable. If the dependent/child entity should be deleted when a required relationship is severed, then setup the relationship to use cascade deletes. Consider using 'DbContextOptionsBuilder.EnableSensitiveDataLogging' to see the key values. The property '{property}' on entity type '{entityType}' is marked as null, but this cannot be saved because the property is marked as required. Consider using 'DbContextOptionsBuilder.EnableSensitiveDataLogging' to see the key values. The foreign key {foreignKey} cannot be added to the entity type '{entityType}' because a foreign key on the same properties already exists on entity type '{duplicateEntityType}' and also targets the key {key} on '{principalType}'. The index {index} cannot be added to the entity type '{entityType}' because an index on the same properties already exists on entity type '{duplicateEntityType}'. The key {key} cannot be added to the entity type '{entityType}' because a key on the same properties already exists on entity type '{duplicateEntityType}'. The navigation property '{navigation}' cannot be added to the entity type '{entityType}' because the target entity type '{targetType}' is defined in shadow state and navigations properties cannot point to shadow state entities. The specified entity type '{entityType}' is invalid. It should be either the dependent entity type '{dependentType}' or the principal entity type '{principalType}' or an entity type derived from one of them. The entity type '{entityType}' cannot be added to the model because an entity type with the same name already exists. The annotation '{annotation}' cannot be added because an annotation with the same name already exists. The annotation '{annotation}' was not found. Ensure that the annotation has been added. The property '{property}' is not a navigation property of entity type '{entityType}'. The 'Include(string)' method can only be used with a '.' separated list of navigation property names. The property '{property}' on entity type '{entityType}' cannot be marked as nullable/optional because the type of the property is '{propertyType}' which is not a nullable type. Any property can be marked as non-nullable/required, but only properties of nullable types and which are not part of primary key can be marked as nullable/optional. The property '{property}' on entity type '{entityType}' cannot be marked as nullable/optional because it has been included in a key {key}. An attempt was made to use the model while it was being created. A DbContext instance cannot be used inside OnModelCreating in any way that makes use of the model that is being created. An attempt was made to use the context while it is being configured. A DbContext instance cannot be used inside OnConfiguring since it is still being configured at this point. This can happen if a second operation is started on this context before a previous operation completed. Any instance members are not guaranteed to be thread safe. The entity type '{entityType}' cannot be removed because it is being referenced by foreign key {foreignKey} on '{referencingEntityType}'. All referencing foreign keys must be removed or redefined before the entity type can be removed. The property '{property}' of the argument '{argument}' cannot be null. The principal and dependent ends of the relationship cannot be flipped once foreign key or principal key properties have been specified. The specified type '{type}'must be a non-interface reference type to be used as an entity type . The relationship from '{referencingEntityTypeOrNavigation}' to '{referencedEntityTypeOrNavigation}' with foreign key properties {foreignKeyPropertiesWithTypes} cannot target the primary key {primaryKeyPropertiesWithTypes} because it is not compatible. Configure a principal key or a set of compatible foreign key properties for this relationship. The property '{keyProperty}' cannot be configured as 'ValueGeneratedOnUpdate' or 'ValueGeneratedOnAddOrUpdate' because the key value cannot be changed after the entity has been added to the store. An exception was thrown while attempting to evaluate a LINQ query parameter expression. To show additional information call EnableSensitiveDataLogging() when overriding DbContext.OnConfiguring. The '{factory}' cannot create a value generator for property '{property}' on entity type '{entityType}'. Only integer properties are supported. A key cannot be configured on '{derivedType}' because it is a derived type. The key must be configured on the root type '{rootType}'. If you did not intend for '{rootType}' to be included in the model, ensure that it is not included in a DbSet property on your context, referenced in a configuration call to ModelBuilder, or referenced from a navigation property on a type that is included in the model. The entity type '{entityType}' cannot inherit from '{baseEntityType}' because '{baseEntityType}' is a descendant of '{entityType}'. Unable to set a base type for entity type '{entityType}' because it has one or more keys defined. The edge cannot be added because the graph does not contain vertex '{vertex}'. Unable to create an instance of type entity type '{entityType}' because it is abstract. Either make it non-abstract or consider mapping at least one derived type. Entity type '{entityType}' is defined with a single key property, but {valuesCount} values were passed to the 'DbSet.Find' method. Entity type '{entityType}' is defined with a {propertiesCount}-part composite key, but {valuesCount} values were passed to the 'DbSet.Find' method. The key value at position {index} of the call to 'DbSet<{entityType}>.Find' was of type '{valueType}', which does not match the property type of '{propertyType}'. The provided principal entity key '{principalKey}' is not a key on the entity type '{principalEntityType}'. Property '{property}' on entity type '{entityType}' is of type '{actualType}' but the generic type provided is of type '{genericType}'. The DbContextOptions passed to the {contextType} constructor must be a DbContextOptions<{contextType}>. When registering multiple DbContext types make sure that the constructor for each context type has a DbContextOptions<TContext> parameter rather than a non-generic DbContextOptions parameter. Options extension of type '{optionsExtension}' not found. The type '{entityType}' cannot have base type '{baseType}' because the properties '{derivedPropertyType}.{derivedProperty}' and '{basePropertyType}.{baseProperty}' are conflicting. The property '{property}' on entity type '{entityType}' cannot be marked as nullable/optional because the property is a part of a key. Any property can be marked as non-nullable/required, but only properties of nullable types and which are not part of a key can be marked as nullable/optional. Entity type '{entityType}' is in shadow-state. A valid model requires all entity types to have corresponding CLR type. Entity type '{entityType}' has composite primary key defined with data annotations. To set composite primary key, use fluent API. The type '{entityType}' cannot have base type '{baseType}' because both types include the navigations: {navigations}. The entity types '{firstEntityType}' and '{secondEntityType}' do not belong to the same model. The block size used for Hi-Lo value generation must be positive. When the Hi-Lo generator is backed by a SQL sequence this means that the sequence increment must be positive. Value generation is not supported for property '{entityType}.{property}' because it has a '{converter}' converter configured. Configure the property to not use value generation using 'ValueGenerated.Never' or 'DatabaseGeneratedOption.None' and specify explicit values instead. The entity type related to '{entityType}' cannot be determined because the specified foreign key {foreignKey} references entity type '{principalEntityType}' that it is in the same hierarchy as the entity type that it is declared on '{dependentEntityType}'. The entity type '{entityType}' cannot inherit from '{baseEntityType}' because '{baseEntityType}' is a shadow state entity type while '{entityType}' is not. The entity type '{entityType}' cannot inherit from '{baseEntityType}' because '{entityType}' is a shadow state entity type while '{baseEntityType}' is not. The entity type '{entityType}' cannot inherit from '{baseEntityType}' because '{clrType}' is not a descendant of '{baseClrType}'. CLR property '{property}' cannot be added to entity type '{entityType}' because it is declared on the CLR type '{clrType}'. The InversePropertyAttribute on property '{property}' on type '{entityType}' is not valid. The property '{referencedProperty}' is not a valid navigation property on the related type '{referencedEntityType}'. Ensure that the property exists and is a valid reference or collection navigation property. A relationship cannot be established from property '{property}' on type '{entityType}' to property '{referencedProperty}' on type '{referencedEntityType}'. Check the values in the InversePropertyAttribute to ensure relationship definitions are unique and reference from one navigation property to its corresponding inverse navigation property. Data binding directly to a store query is not supported. Instead populate a DbSet with data, for example by calling Load on the DbSet, and then bind to local data to avoid sending a query to the database each time the databound control iterates the data. For WPF bind to 'DbSet.Local.ToObservableCollection()'. For WinForms bind to 'DbSet.Local.ToBindingList()'. For ASP.NET WebForms bind to 'DbSet.ToList()' or use Model Binding. Data binding directly to 'DbSet.Local' is not supported since it does not provide a stable ordering. For WPF bind to 'DbSet.Local.ToObservableCollection()'. For WinForms bind to 'DbSet.Local.ToBindingList()'. For ASP.NET WebForms bind to 'DbSet.ToList()' or use Model Binding. The derived type '{derivedType}' cannot have KeyAttribute on property '{property}' since primary key can only be declared on the root type. InversePropertyAttributes on navigation '{navigation}' in entity type '{entityType}' and on navigation '{referencedNavigation}' in entity type '{referencedEntityType}' are not pointing to each other. There are multiple properties pointing to navigation '{navigation}' in entity type '{entityType}'. To define composite foreign key using data annotations, use ForeignKeyAttribute on navigation. The ForeignKeyAttributes on property '{property}' and navigation '{navigation}' in entity type '{entityType}' do not point at each other. The value of ForeignKeyAttribute on property should be navigation name and the value of ForeignKeyAttribute on navigation should be the foreign key property name. The property list specified using ForeignKeyAttribute on navigation '{navigation}' in entity type '{entityType}' is incorrect. The attribute value should be comma-separated list of property names. Invalid relationship has been specified using InversePropertyAttribute and ForeignKeyAttribute. The navigation '{navigation}' in entity type '{entityType}' and the navigation '{referencedNavigation}' in entity type '{referencedEntityType}' are related by InversePropertyAttribute but the ForeignKeyAttribute specified for both navigations have different values. The property or navigation '{member}' cannot be added to the entity type '{entityType}' because a property or navigation with the same name already exists on entity type '{conflictingEntityType}'. The specified entity type '{entityType}' is invalid. It should be either the dependent entity type '{dependentType}' or the principal entity type '{principalType}'. The entity type '{entityType}' cannot be removed because '{derivedEntityType}' is derived from it. All derived entity types must be removed or redefined before the entity type can be removed. Unable to determine the relationship represented by navigation property '{entityType}.{navigation}' of type '{propertyType}'. Either manually configure the relationship, or ignore this property using the '[NotMapped]' attribute or by using 'EntityTypeBuilder.Ignore' in 'OnModelCreating'. The property '{entityType}.{property}' could not be mapped, because it is of type '{propertyType}' which is not a supported primitive type or a valid entity type. Either explicitly map this property, or ignore it using the '[NotMapped]' attribute or by using 'EntityTypeBuilder.Ignore' in 'OnModelCreating'. The property '{entityType}.{property}' is of type '{propertyType}' which is not supported by current database provider. Either change the property CLR type or ignore the property using the '[NotMapped]' attribute or by using 'EntityTypeBuilder.Ignore' in 'OnModelCreating'. The property '{entityType}.{navigation}' is of an interface type ('{propertyType}'). If it is a navigation property manually configure the relationship for this property by casting it to a mapped entity type, otherwise ignore the property using the NotMappedAttribute or 'EntityTypeBuilder.Ignore' in 'OnModelCreating'. The navigation property '{navigation}' on entity type '{entityType}' cannot be associated with foreign key {targetFk} because it was created for foreign key {actualFk}. The entity type '{entityType}' was not found. Ensure that the entity type has been added to the model. The extension method '{method}' is being used with a custom implementation of '{interfaceType}'. Use of custom implementations of the Entity Framework metadata interfaces is not supported. Consider deriving from '{concreteType}' instead. Please contact the Entity Framework team if you have a compelling case for a custom implementation of the metadata interfaces so that we can consider ways to achieve this. Unhandled operation: MemberInitExpression binding is not a MemberAssignment Unable to track an entity of type '{entityType}' because primary key property '{keyProperty}' is null. Unable to track an entity of type '{entityType}' because alternate key property '{keyProperty}' is null. If the alternate key is not used in a relationship, then consider using a unique index instead. Unique indexes may contain nulls, while alternate keys must not. An exception was thrown while attempting to evaluate the LINQ query parameter expression '{expression}'. There are multiple navigations in entity type '{entityType}' which are pointing to same set of properties - '{propertyList}' using ForeignKeyAttribute. The entity type '{entityType}' should derive from '{baseEntityType}' to reflect the hierarchy of the corresponding CLR types. You are configuring a relationship between '{dependentEntityType}' and '{principalEntityType}' but have specified a foreign key on '{entityType}'. The foreign key must be defined on a type that is part of the relationship. You are configuring a relationship between '{dependentEntityType}' and '{principalEntityType}' but have specified a foreign key targeting '{entityType}'. The foreign key must be targeting a type that is part of the relationship. The property '{property}' cannot be part of a foreign key on '{entityType}' because it has value generation enabled and is contained in the key {key} defined on a base entity type '{baseEntityType}'. The property '{property}' cannot be part of a key on '{entityType}' because it has value generation enabled and is contained in a foreign key defined on a derived entity type. A key on entity type '{entityType}' cannot contain the property '{property}' because it is nullable/optional. All properties on which a key is declared must be marked as non-nullable/required. A second operation started on this context before a previous operation completed. This is usually caused by different threads using the same instance of DbContext. For more information on how to avoid threading issues with DbContext, see https://go.microsoft.com/fwlink/?linkid=2097913. The specified entity types '{invalidDependentType}' and '{invalidPrincipalType}' are invalid. They should be '{dependentType}' and '{principalType}' or entity types in the same hierarchy. Cannot create a DbSet for '{typeName}' because this type is not included in the model for the context. The child/dependent side could not be determined for the one-to-one relationship between '{dependentToPrincipalNavigationSpecification}' and '{principalToDependentNavigationSpecification}'. To identify the child/dependent side of the relationship, configure the foreign key property. If these navigations should not be part of the same relationship configure them without specifying the inverse. See http://go.microsoft.com/fwlink/?LinkId=724062 for more details. Both relationships between '{firstDependentToPrincipalNavigationSpecification}' and '{firstPrincipalToDependentNavigationSpecification}' and between '{secondDependentToPrincipalNavigationSpecification}' and '{secondPrincipalToDependentNavigationSpecification}' could use {foreignKeyProperties} as the foreign key. To resolve this configure the foreign key properties explicitly on at least one of the relationships. The {methodName} property lambda expression '{includeLambdaExpression}' is invalid. The expression should represent a property access: 't => t.MyProperty'. To target navigations declared on derived types, specify an explicitly typed lambda parameter of the target type, E.g. '(Derived d) => d.MyProperty'. For more information on including related data, see http://go.microsoft.com/fwlink/?LinkID=746393. The corresponding CLR type for entity type '{entityType}' is not instantiable and there is no derived entity type in the model that corresponds to a concrete CLR type. The property '{property}' cannot be added to the type '{entityType}' because there was no property type specified and there is no corresponding CLR property or field. To add a shadow state property the property type must be specified. The property '{property}' on entity type '{entityType}' cannot be assigned a temporary value. Temporary values can only be assigned to properties configured to use store-generated values. The property '{property}' on entity type '{entityType}' cannot be assigned a value generated by the database. Store-generated values can only be assigned to properties configured to use store-generated values. A parameterless constructor was not found on entity type '{entityType}'. In order to create an instance of '{entityType}' EF requires that a parameterless constructor be declared. Cannot create a relationship between '{newPrincipalEntityType}.{newPrincipalNavigation}' and '{newDependentEntityType}.{newDependentNavigation}', because there already is a relationship between '{existingPrincipalEntityType}.{existingPrincipalNavigation}' and '{existingDependentEntityType}.{existingDependentNavigation}'. Navigation properties can only participate in a single relationship. Error generated for warning '{eventName}': {message} This exception can be suppressed or logged by passing event ID '{eventId}' to the 'ConfigureWarnings' method in 'DbContext.OnConfiguring' or 'AddDbContext'. Cannot access a disposed object. A common cause of this error is disposing a context that was resolved from dependency injection and then later trying to use the same context instance elsewhere in your application. This may occur if you are calling Dispose() on the context, or wrapping the context in a using statement. If you are using dependency injection, you should let the dependency injection container take care of disposing context instances. Unable to resolve service for type '{service}'. This is often because no database provider has been configured for this DbContext. A provider can be configured by overriding the DbContext.OnConfiguring method or by using AddDbContext on the application service provider. If AddDbContext is used, then also ensure that your DbContext type accepts a DbContextOptions<TContext> object in its constructor and passes it to the base constructor for DbContext. An exception occurred while reading a database value for property '{entityType}.{property}'. See the inner exception for more information. An exception occurred while reading a database value for property '{entityType}.{property}'. The expected type was '{expectedType}' but the actual value was of type '{actualType}'. An exception occurred while reading a database value for property '{entityType}.{property}'. The expected type was '{expectedType}' but the actual value was null. An exception occurred while reading a database value. See the inner exception for more information. An exception occurred while reading a database value. The expected type was '{expectedType}' but the actual value was of type '{actualType}'. An exception occurred while reading a database value. The expected type was '{expectedType}' but the actual value was null. The property '{property}' cannot be ignored on entity type '{entityType}', because it's declared on the base entity type '{baseEntityType}'. To exclude this property from your model, use NotMappedAttribute or Ignore method on the base type. Maximum number of retries ({retryLimit}) exceeded while executing database operations with '{strategy}'. See inner exception for the most recent failure. The configured execution strategy '{strategy}' does not support user initiated transactions. Use the execution strategy returned by '{getExecutionStrategyMethod}' to execute all the operations in the transaction as a retriable unit. '{property}' cannot be used as a property on entity type '{entityType}' because it is configured as a navigation. The property '{property}' cannot be removed from entity type '{entityType}' because it is being used in the foreign key {foreignKey} on '{foreignKeyType}'. All containing foreign keys must be removed or redefined before the property can be removed. The property '{property}' cannot be removed from entity type '{entityType}' because it is being used in the index {index} on '{indexType}'. All containing indexes must be removed or redefined before the property can be removed. The specified poolSize must be greater than 0. The DbContext of type '{contextType}' cannot be pooled because it does not have a single public constructor accepting a single parameter of type DbContextOptions. OnConfiguring cannot be used to modify DbContextOptions when DbContext pooling is enabled. The foreign keys on entity type '{dependentType}' cannot target the same entity type because it is a weak entity type. The entity type '{entityType}' cannot be removed because it is referencing '{referencedEntityType}' by foreign key {foreignKey}. All foreign keys must be removed before the entity type can be removed. The entity type '{entityType}' cannot be added to the model because a weak entity type with the same name already exists. The weak entity type '{entityType}' cannot be added to the model because an entity type with the same name already exists. The type '{entityType}' cannot have weak entity type '{baseType}' as the base type. The weak entity type '{entityType}' cannot have a base type. The property list {propertyList} cannot be used, because it contains a duplicate - '{property}'. The convention invocations have reached the recursion limit. This is likely an issue in EF Core, please report it. The navigation '{navigation}' used to define the entity type '{entityType}' is not present on '{definingEntityType}'. The entity type '{entityType}' is the target of multiple ownership relationships. The ownership by '{ownershipNavigation}' should use defining navigation '{definingNavigation}' for the owned type '{entityType}' The entity type '{ownedEntityType}' is configured as owned, but the entity type '{nonOwnedEntityType}' is not. All entity types sharing a CLR type must be configured as owned. The navigation '{principalEntityType}.{navigation}' is not supported because it is pointing to an owned entity type '{ownedType}'. Only the ownership navigation from the entity type '{ownerType}' can point to the owned entity type. The relationship from '{referencingEntityTypeOrNavigation}' to '{referencedEntityTypeOrNavigation}' is not supported because the owned entity type '{ownedType}' cannot be on the principal side of a non-ownership relationship. The entity type '{entityType}' has a defining navigation and the supplied entity is currently referenced from several owner entities. To access the entry for a particular reference call '{targetEntryCall}' on the owner entry. The entity type '{entityType}' has a defining navigation and the supplied entity is currently not being tracked. To start tracking this entity call '{referenceCall}' or '{collectionCall}' on the owner entry. The filter expression '{filter}' specified for entity type '{entityType}' is invalid. The expression must accept a single parameter of type '{clrType}', return bool, and may not contain references to navigation properties. The filter expression '{filter}' cannot be specified for entity type '{entityType}'. A filter may only be applied to the root entity type in a hierarchy. The entity type '{entityType}' cannot use 'ToQuery' to create a defining query because it also defines a primary key. Defining queries can only be used to back entity types without keys. Converter for model type '{converterType}' cannot be used for '{entityType}.{propertyName}' because its type is '{propertyType}'. Comparer for type '{type}' cannot be used for '{entityType}.{propertyName}' because its type is '{propertyType}'. The Include operation '{include}' is not supported. '{invalidNavigation}' must be a navigation property defined on an entity type. The instance of entity type '{entityType}' cannot be tracked because another instance with the same key value for {keyProperties} is already being tracked. When replacing owned entities modify the properties without changing the instance or detach the previous owned entity entry first. Consider using 'DbContextOptionsBuilder.EnableSensitiveDataLogging' to see the conflicting key values. The instance of entity type '{entityType}' cannot be tracked because another instance with the key value '{keyValue}' is already being tracked. When replacing owned entities modify the properties without changing the instance or detach the previous owned entity entry first. Cannot compose converter from '{typeOneIn}' to '{typeOneOut}' with converter from '{typeTwoIn}' to '{typeTwoOut}' because the output type of the first converter is different from the input type of the second converter. The value converter '{converter}' cannot be used with type '{type}'. This converter can only be used with {allowed}. The seed entity for entity type '{entityType}' cannot be added because another seed entity with the same key value for {keyProperties} has already been added. Consider using 'DbContextOptionsBuilder.EnableSensitiveDataLogging' to see the conflicting key values. The seed entity for entity type '{entityType}' cannot be added because another seed entity with the key value '{keyValue}' has already been added. The seed entity for entity type '{entityType}' cannot be added because the value provided for the property '{property}' is not of the type '{type}'. Consider using 'DbContextOptionsBuilder.EnableSensitiveDataLogging' to see the involved property values. The seed entity for entity type '{entityType}' cannot be added because the value '{value}' provided for the property '{property}' is not of the type '{type}'. The seed entity for entity type '{entityType}' cannot be added because there was no value provided for the required property '{property}'. The seed entity for entity type '{entityType}' cannot be added because a default value was provided for the required property '{property}'. Please provide a value different from '{defaultValue}'. The seed entity for entity type '{entityType}' cannot be added because a non-zero value is required for property '{property}'. Consider providing a negative value to avoid collisions with non-seed data. The seed entity for entity type '{entityType}' cannot be added because it has the navigation '{navigation}' set. To seed relationships you need to add the related entity seed to '{relatedEntityType}' and specify the foreign key values {foreignKeyProperties}. Consider using 'DbContextOptionsBuilder.EnableSensitiveDataLogging' to see the involved property values. The seed entity for entity type '{entityType}' with the key value '{keyValue}' cannot be added because it has the navigation '{navigation}' set. To seed relationships you need to add the related entity seed to '{relatedEntityType}' and specify the foreign key values {foreignKeyProperties}. The seed entity for entity type '{entityType}' cannot be added because the value provided is of a derived type '{derivedType}'. Add the derived seed entities to the corresponding entity type. No suitable constructor found for entity type '{entityType}'. The following constructors had parameters that could not be bound to properties of the entity type: {constructors}. Two constructors were found with the same number of parameters that could both be used by Entity Framework. The constructor to use must be configured explicitly. The two constructors are '{firstConstructor}' and '{secondConstructor}'. The type '{entityType}' cannot be marked as owned because a non-owned entity type with the same name already exists. Current provider doesn't support System.Transaction. Unable to track an instance of type '{type}' because it does not have a primary key. Only entity types with primary keys may be tracked. The owned entity type '{entityType}' cannot have a base type. Cannot create a DbSet for '{typeName}' because it is mapped to multiple entity types and should they should be accessed through the defining entities. The property '{property}' is marked as null on entity '{entityType}' with the key value '{keyValue}', but this cannot be saved because the property is marked as required. The association between entities '{firstType}' and '{secondType}' with the key value '{secondKeyValue}' has been severed but the relationship is either marked as 'Required' or is implicitly required because the foreign key is not nullable. If the dependent/child entity should be deleted when a required relationship is severed, then setup the relationship to use cascade deletes. The entity type '{entityType}' is part of a relationship cycle involving its primary key. The service property '{property}' of type '{serviceType}' cannot be added to the entity type '{entityType}' because there is another property of the same type. Ignore one of the properties using the NotMappedAttribute or 'EntityTypeBuilder.Ignore' in 'OnModelCreating'. Cannot use multiple DbContext instances within a single query execution. Ensure the query uses a single context instance. The entity type '{entityType}' cannot have a defining query because it is derived from '{baseType}'. Only base keyless entity types can have a defining query. The owned entity type '{ownedType}' requires to be referenced from another entity type via a navigation. Add a navigation to an entity type that points at '{ownedType}'. Unable to determine the owner for the relationship between '{entityType}' and '{otherEntityType}' as both types have been marked as owned. Either manually configure the ownership, or ignore the corresponding navigations using the '[NotMapped]' attribute or by using 'EntityTypeBuilder.Ignore' in 'OnModelCreating'. The ForeignKeyAttribute for the navigation '{navigation}' cannot be specified on the entity type '{principalType}' since it represents a one-to-many relationship. Move the ForeignKeyAttribute to a property on '{dependentType}'. An indexed property was added to entity type '{entity}'. But there is no public indexer on '{entity}' taking a single argument of type 'string' and returning type 'object'. cannot bind '{failedBinds}' in '{parameters}' The navigation '{navigation}' cannot be added because it targets the keyless entity type '{entityType}'. Navigations can only target entity types with keys. Property '{property}' on entity type '{entityType}' matches both '{field1}' and '{field2}' by convention. Explicitly specify the backing field to use with '.HasField()' in 'OnModelCreating()'. The entity type '{entityType}' cannot be marked as keyless because it contains a key. The key {key} cannot be added to keyless type '{entityType}'. There are multiple ForeignKeyAttributes which are pointing to same set of properties - '{propertyList}' on entity type '{entityType}'. The type '{entityType}' cannot be configured as non-owned because an owned entity type with the same name already exists. Cannot create a DbSet for '{typeName}' because it is configured as an owned entity type and should be accessed through the defining entities. The invoked method is cannot be used for the entity type '{entityType}' because it does not have a primary key. A '{derivedType}' cannot be configured as keyless because it is a derived type. The root type '{rootType}' must be configured as keyless. If you did not intend for '{rootType}' to be included in the model, ensure that it is not included in a DbSet property on your context, referenced in a configuration call to ModelBuilder, or referenced from a navigation property on a type that is included in the model. Unable to set a base type for entity type '{entityType}' because it has been configured as having no keys. The instance of entity type '{runtimeEntityType}' cannot be tracked as the entity type '{entityType}' because they are not in the same hierarchy. The specified field '{field}' cannot be used for the property '{entityType}.{property}' because it does not match the property name. Cannot configure the discriminator value for entity type '{entityType}' because it doesn't derive from '{rootEntityType}'. A discriminator property cannot be set for the entity type '{entityType}' because it is not the root of an inheritance hierarchy. Unable to set property '{property}' as a discriminator for entity type '{entityType}' because it is not a property of '{entityType}'. Cannot set discriminator value '{value}' for discriminator property '{discriminator}' because it is not assignable to property of type '{discriminatorType}'. The discriminator value for '{entityType1}' is '{discriminatorValue}' which is the same for '{entityType2}'. Every concrete entity type in the hierarchy needs to have a unique discriminator value. Cannot set discriminator value for entity type '{entityType}' because the root entity type '{rootEntityType}' doesn't have a discriminator property set. The entity type '{entityType}' is part of a hierarchy, but does not have a discriminator property configured. The entity type '{entityType}' is part of a hierarchy, but does not have a discriminator value configured. The foreign key {foreignKey} targeting the key {key} on '{principalType}' is defined on the entity type '{otherEntityType}', not '{entityType}'. The index {index} is defined on the entity type '{otherEntityType}', not '{entityType}'. The key {key} cis defined on the entity type '{otherEntityType}', not '{entityType}'. The specified property '{property}' is declared on the entity type '{otherEntityType}', not '{entityType}'. There is no navigation on entity type '{entityType}' associated with the foreign key {foreignKey}. The property '{property}' cannot be added to type '{entityType}' because the name of the given CLR property or field '{clrName}' is different. The indexed property '{property}' cannot be added to type '{entityType}' because the CLR class contains a member with the same name. This query would cause multiple evaluation of a subquery because entity '{entityType}' has a composite key. Rewrite your query avoiding the subquery. Cannot translate a Contains() operator on entity '{entityType}' because it has a composite key. Comparison on entity type '{entityType}' is not supported because it is a keyless entity. Unable to materialize entity of type '{entityType}'. No discriminators matched '{discriminator}'. 'InterceptionResult.Result' was called when 'InterceptionResult.HasResult' is false. When performing a set operation, both operands must have the same Include operations. Include is not supported for entities with defining query. Entity type: '{entityType}' The type '{entityType}' cannot be marked as owned because the derived entity type - '{derivedType}' has been configured as non-owned. Client projection contains reference to constant expression of '{constantType}' which is being passed as argument to method '{methodName}'. This could potentially cause memory leak. Consider assigning this constant to local variable and using the variable in the query instead. See https://go.microsoft.com/fwlink/?linkid=2103067 for more information. Client projection contains reference to constant expression of '{constantType}' through instance method '{methodName}'. This could potentially cause memory leak. Consider making the method static so that it does not capture constant in the instance. See https://go.microsoft.com/fwlink/?linkid=2103067 for more information. Client projection contains reference to constant expression of '{constantType}'. This could potentially cause memory leak. Consider assigning this constant to local variable and using the variable in the query instead. See https://go.microsoft.com/fwlink/?linkid=2103067 for more information. Static methods that are useful in application code where there is not an EF type for the method to be accessed from. For example, referencing a shadow state property in a LINQ query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The type of the third query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The type of the third query parameter. The type of the fourth query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The type of the third query parameter. The type of the fourth query parameter. The type of the fifth query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The type of the third query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The type of the third query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The type of the third query parameter. The type of the fourth query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The type of the third query parameter. The type of the fourth query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The type of the third query parameter. The type of the fourth query parameter. The type of the fifth query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The type of the third query parameter. The type of the fourth query parameter. The type of the fifth query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The query result type. The included property type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The query result type. The included property type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The query result type. The included property type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The type of the third query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The type of the third query parameter. The query result type. The included property type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The type of the third query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The type of the third query parameter. The type of the fourth query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The type of the third query parameter. The type of the fourth query parameter. The query result type. The included property type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The type of the third query parameter. The type of the fourth query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The type of the third query parameter. The type of the fourth query parameter. The type of the fifth query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The type of the third query parameter. The type of the fourth query parameter. The type of the fifth query parameter. The query result type. The included property type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Creates a compiled query delegate that when invoked will execute the specified LINQ query. The target DbContext type. The type of the first query parameter. The type of the second query parameter. The type of the third query parameter. The type of the fourth query parameter. The type of the fifth query parameter. The query result type. The LINQ query expression. A delegate that can be invoked to execute the compiled query. Addresses a given property on an entity instance. This is useful when you want to reference a shadow state property in a LINQ query. Currently this method can only be used in LINQ queries and can not be used to access the value assigned to a property in other scenarios. The following code performs a filter using the a LastUpdated shadow state property. var blogs = context.Blogs .Where(b => EF.Property<DateTime>(b, "LastUpdated") > DateTime.Now.AddDays(-5)) The type of the property being referenced. The entity to access the property on. The name of the property. The value assigned to the property. Provides CLR methods that get translated to database functions when used in LINQ to Entities queries. Calling these methods in other contexts (e.g. LINQ to Objects) will throw a . The state in which an entity is being tracked by a context. The entity is not being tracked by the context. The entity is being tracked by the context and exists in the database. Its property values have not changed from the values in the database. The entity is being tracked by the context and exists in the database. It has been marked for deletion from the database. The entity is being tracked by the context and exists in the database. Some or all of its property values have been modified. The entity is being tracked by the context but does not yet exist in the database. Extension methods for . Gets the annotation with the given name, throwing if it does not exist. The object to find the annotation on. The key of the annotation to find. The annotation with the specified name. Adds annotations to an object. The object to add the annotations to. The annotations to be added. Indicates whether the configuration was specified using a data annotation. Sets the annotation stored under the given name. Overwrites the existing annotation if an annotation with the specified name already exists. Removes the existing annotation if null is supplied. The object to set the annotation for. The name of the annotation to be added. The value to be stored in the annotation. Indicates whether the configuration was specified using a data annotation. Extension methods for . Gets the root base type for a given entity type. The type to find the root of. The root base type. If the given entity type is not a derived type, then the same entity type is returned. Gets the root base type for a given entity type. The type to find the root of. The root base type. If the given entity type is not a derived type, then the same entity type is returned. Gets all types in the model that derive from a given entity type. The base type to find types that derive from. The derived types. Returns all derived types of the given , including the type itself. The entity type. Derived types. Gets all types in the model that directly derive from a given entity type. The base type to find types that derive from. The derived types. Returns all base types of the given , including the type itself, top to bottom. The entity type. Base types. Returns all base types of the given , including the type itself, bottom to top. The entity type. Base types. Gets all keys declared on the given . This method does not return keys declared on base types. It is useful when iterating over all entity types to avoid processing the same key more than once. Use to also return keys declared on base types. The entity type. Declared keys. Gets all non-navigation properties declared on the given . This method does not return properties declared on base types. It is useful when iterating over all entity types to avoid processing the same property more than once. Use to also return properties declared on base types. The entity type. Declared non-navigation properties. Gets all navigation properties declared on the given . This method does not return navigation properties declared on base types. It is useful when iterating over all entity types to avoid processing the same navigation property more than once. Use to also return navigation properties declared on base types. The entity type. Declared navigation properties. Gets all service properties declared on the given . This method does not return properties declared on base types. It is useful when iterating over all entity types to avoid processing the same property more than once. Use to also return properties declared on base types. The entity type. Declared service properties. Gets all indexes declared on the given . This method does not return indexes declared on base types. It is useful when iterating over all entity types to avoid processing the same index more than once. Use to also return indexes declared on base types. The entity type. Declared indexes. Removes a property from this entity type. The entity type. The name of the property to remove. The property that was removed. Sets the primary key for this entity type. The entity type to set the key on. The primary key property. Indicates whether the configuration was specified using a data annotation. The newly created key. Gets the primary or alternate key that is defined on the given property. Returns null if no key is defined for the given property. The entity type to find the key on. The property that the key is defined on. The key, or null if none is defined. Adds a new alternate key to this entity type. The entity type to add the alternate key to. The property to use as an alternate key. Indicates whether the configuration was specified using a data annotation. The newly created key. Removes a primary or alternate key from this entity type. The entity type to add remove the key from. The properties that make up the key. The key that was removed. Gets all foreign keys declared on the given . This method does not return foreign keys declared on base types. It is useful when iterating over all entity types to avoid processing the same foreign key more than once. Use to also return foreign keys declared on base types. The entity type. Declared foreign keys. Gets all foreign keys declared on the types derived from the given . This method does not return foreign keys declared on the given entity type itself. Use to return foreign keys declared on this and base entity typed types. The entity type. Derived foreign keys. Gets the foreign keys defined on the given property. Only foreign keys that are defined on exactly the specified property are returned. Composite foreign keys that include the specified property are not returned. The entity type to find the foreign keys on. The property to find the foreign keys on. The foreign keys. Gets the foreign keys defined on the given properties. Only foreign keys that are defined on exactly the specified set of properties are returned. The entity type to find the foreign keys on. The properties to find the foreign keys on. The foreign keys. Gets the foreign key for the given properties that points to a given primary or alternate key. Returns null if no foreign key is found. The entity type to find the foreign keys on. The property that the foreign key is defined on. The primary or alternate key that is referenced. The entity type that the relationship targets. This may be different from the type that is defined on when the relationship targets a derived type in an inheritance hierarchy (since the key is defined on the base type of the hierarchy). The foreign key, or null if none is defined. Gets the foreign keys declared on the given using the given properties. The entity type. The properties to find the foreign keys on. Declared foreign keys. Gets all foreign keys that target a given entity type (i.e. foreign keys where the given entity type or a type it's derived from is the principal). The entity type to find the foreign keys for. The foreign keys that reference the given entity type. Gets all foreign keys that target a given entity type (i.e. foreign keys where the given entity type is the principal). The entity type to find the foreign keys for. The foreign keys that reference the given entity type. Returns the relationship to the owner if this is an owned type or null otherwise. The entity type to find the foreign keys on. The relationship to the owner if this is an owned type or null otherwise. Adds a new relationship to this entity type. The entity type to add the foreign key to. The property that the foreign key is defined on. The primary or alternate key that is referenced. The entity type that the relationship targets. This may be different from the type that is defined on when the relationship targets a derived type in an inheritance hierarchy (since the key is defined on the base type of the hierarchy). Indicates whether the configuration was specified using a data annotation. The newly created foreign key. Removes a foreign key from this entity type. The entity type to remove the foreign key from. The properties that the foreign key is defined on. The primary or alternate key that is referenced. The entity type that the relationship targets. This may be different from the type that is defined on when the relationship targets a derived type in an inheritance hierarchy (since the key is defined on the base type of the hierarchy). The foreign key that was removed. Gets a navigation property on the given entity type. Returns null if no navigation property is found. The entity type to find the navigation property on. The navigation property on the entity class. The navigation property, or null if none is found. Gets a navigation property on the given entity type. Returns null if no navigation property is found. The entity type to find the navigation property on. The name of the navigation property on the entity class. The navigation property, or null if none is found. Gets a navigation property on the given entity type. Does not return navigation properties defined on a base type. Returns null if no navigation property is found. The entity type to find the navigation property on. The name of the navigation property on the entity class. The navigation property, or null if none is found. Returns the defining navigation if one exists or null otherwise. The entity type to find the defining navigation for. The defining navigation if one exists or null otherwise. Gets all navigation properties on the given entity type. The entity type to get navigation properties for. All navigation properties on the given entity type. Gets a property on the given entity type. Returns null if no property is found. This API only finds scalar properties and does not find navigation properties. Use to find a navigation property. The entity type to find the property on. The property on the entity class. The property, or null if none is found. Finds matching properties on the given entity type. Returns null if any property is not found. This API only finds scalar properties and does not find navigation properties. The entity type to find the properties on. The property names. The properties, or null if any property is not found. Finds a property declared on the type with the given name. Does not return properties defined on a base type. The entity type to find the property on. The property name. The property, or null if none is found. Adds a property to this entity type. The entity type to add the property to. The corresponding member on the entity class. Indicates whether the configuration was specified using a data annotation. The newly created property. Adds a property to this entity type. The entity type to add the property to. The name of the property to add. Indicates whether the configuration was specified using a data annotation. The newly created property. Adds a property to this entity type. The entity type to add the property to. The name of the property to add. The type of value the property will hold. Indicates whether the type configuration source should be set. Indicates whether the configuration was specified using a data annotation. The newly created property. Gets the index defined on the given property. Returns null if no index is defined. The entity type to find the index on. The property to find the index on. The index, or null if none is found. Adds an index to this entity type. The entity type to add the index to. The property to be indexed. Indicates whether the configuration was specified using a data annotation. The newly created index. Removes an index from this entity type. The entity type to remove the index from. The properties that make up the index. The index that was removed. Sets the change tracking strategy to use for this entity type. This strategy indicates how the context detects changes to properties for an instance of the entity type. The entity type to set the change tracking strategy for. The strategy to use. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The entity type to find configuration source for. The configuration source for . Sets the LINQ expression filter automatically applied to queries for this entity type. The entity type to set the query filter for. The LINQ expression filter. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The entity type to find configuration source for. The configuration source for . Sets the LINQ query used as the default source for queries of this type. The entity type to set the defining query for. The LINQ query used as the default source. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The entity type to find configuration source for. The configuration source for . Returns the that will be used for storing a discriminator value. The entity type to get the discriminator property for. Sets the that will be used for storing a discriminator value. The entity type to set the discriminator property for. The property to set. Indicates whether the configuration was specified using a data annotation. Gets the for the discriminator property. The entity type to find configuration source for. The or null if no discriminator property has been set. Sets the discriminator value for this entity type. The entity type to set the discriminator value for. The value to set. Indicates whether the configuration was specified using a data annotation. Removes the discriminator value for this entity type. Gets the for the discriminator value. The or null if no discriminator value has been set. Extension methods for . Gets the entity type related to the given one. The foreign key. One of the entity types related by the foreign key. The entity type related to the given one. Returns a navigation associated with this foreign key. The foreign key. A value indicating whether the navigation is on the dependent type pointing to the principal type. A navigation associated with this foreign key or null. Extension methods for . Gets all foreign keys that target a given primary or alternate key. The key to find the foreign keys for. The foreign keys that reference the given key. Extension methods for . Gets the entity that maps the given entity class. Returns null if no entity type with the given name is found. The model to find the entity type in. The type to find the corresponding entity type for. The entity type, or null if none if found. Gets the entity type for the given name, defining navigation name and the defining entity type. Returns null if no matching entity type is found. The model to find the entity type in. The type of the entity type to find. The defining navigation of the entity type to find. The defining entity type of the entity type to find. The entity type, or null if none are found. Gets the entity types matching the given type. The model to find the entity type in. The type of the entity type to find. The entity types found. Gets the entity types matching the given name. The model to find the entity type in. The name of the entity type to find. The entity types found. Removes an entity type without a defining navigation from the model. The model to remove the entity type from. The name of the entity type to be removed. The entity type that was removed. Removes an entity type with a defining navigation from the model. The model to remove the entity type from. The name of the entity type to be removed. The defining navigation. The defining entity type. The entity type that was removed. Removes an entity type from the model. The model to remove the entity type from. The entity type to be removed. The entity type that was removed. Removes an entity type with a defining navigation from the model. The model to remove the entity type from. The CLR class that is used to represent instances of this entity type. The defining navigation. The defining entity type. The entity type that was removed. Returns the entity types corresponding to the least derived types from the given. The model to find the entity types in. The base type. An optional condition for filtering entity types. List of entity types corresponding to the least derived types from the given. Sets the to use for properties of all entity types in this model. Note that individual entity types can override this access mode, and individual properties of entity types can override the access mode set on the entity type. The value set here will be used for any property for which no override has been specified. The model to set the access mode for. The , or null to clear the mode set. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The model to find configuration source for. The configuration source for . Sets the default change tracking strategy to use for entities in the model. This strategy indicates how the context detects changes to properties for an instance of an entity type. The model to set the default change tracking strategy for. The strategy to use. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The model to find configuration source for. The configuration source for . Returns a value indicating whether the entity types using the given type should be configured as owned types when discovered. The model. The type of the entity type that could be owned. true if the given type name is marked as owned, null otherwise. Returns a value indicating whether the entity types using the given type should be configured as owned types when discovered. The model. The type of the entity type that could be owned. The configuration source if the given type name is marked as owned, null otherwise. Marks the given entity type as owned, indicating that when discovered entity types using the given type should be configured as owned. The model to add the owned type to. The type of the entity type that should be owned. Indicates whether the configuration was specified using a data annotation. Indicates whether the given entity type name is ignored. The model to check for ignored type. The name of the entity type that could be ignored. true if the given entity type name is ignored. Indicates whether the given entity type is ignored. The model to check for ignored type. The entity type that might be ignored. true if the given entity type is ignored. Indicates whether the given entity type is ignored. The model to check for ignored type. The entity type that might be ignored. The configuration source if the given entity type is ignored, null otherwise. Removes the given owned type, indicating that when discovered matching entity types should not be configured as owned. The model to remove the owned type name from. The type of the entity type that should not be owned. Marks the given entity type as ignored. The model to add the ignored type to. The entity type to be ignored. Indicates whether the configuration was specified using a data annotation. Forces post-processing on the model such that it is ready for use by the runtime. This post processing happens automatically when using ; this method allows it to be run explicitly in cases where the automatic execution is not possible. The model to finalize. The finalized . Extension methods for . Gets the navigation property on the other end of the relationship. Returns null if there is no navigation property defined on the other end of the relationship. The navigation property to find the inverse of. The inverse navigation, or null if none is defined. Gets the entity type that a given navigation property will hold an instance of (or hold instances of if it is a collection navigation). The navigation property to find the target entity type of. The target entity type. Sets a value indicating whether this navigation should be eager loaded by default. The navigation property to set whether it should be eager loaded. A value indicating whether this navigation should be eager loaded by default. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The navigation property to find configuration source for. The configuration source for . Extension methods for . Sets the underlying CLR field that this property should use. This may be null for shadow properties or if the backing field for the property is not known. Backing fields are normally found by convention as described here: http://go.microsoft.com/fwlink/?LinkId=723277. This method is useful for setting backing fields explicitly in cases where the correct field is not found by convention. By default, the backing field, if one is found or has been specified, is used when new objects are constructed, typically when entities are queried from the database. Properties are used for all other accesses. This can be changed by calling . The property for which the backing field should be set. The name of the field to use. Indicates whether the configuration was specified using a data annotation. Sets the to use for this property. The property for which to set the access mode. The , or null to clear the mode set. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The property to find configuration source for. The configuration source for . Extension methods for . Finds the first principal property that the given property is constrained by if the given property is part of a foreign key. The foreign key property. The first associated principal property, or null if none exists. Gets all foreign keys that use this property (including composite foreign keys in which this property is included). The property to get foreign keys for. The foreign keys that use this property. Gets all indexes that use this property (including composite indexes in which this property is included). The property to get indexes for. The indexes that use this property. Gets the primary key that uses this property (including a composite primary key in which this property is included). The property to get primary key for. The primary that use this property, or null if it is not part of the primary key. Gets all primary or alternate keys that use this property (including composite keys in which this property is included). The property to get primary and alternate keys for. The primary and alternate keys that use this property. Gets the for . The property. The for . Sets the maximum length of data that is allowed in this property. For example, if the property is a ' then this is the maximum number of characters. The property to set the maximum length of. The maximum length of data that is allowed in this property. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The property to find configuration source for. The configuration source for . Sets a value indicating whether this property can persist Unicode characters. The property to set the value for. true if the property accepts Unicode characters, false if it does not, null to clear the setting. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The property to find configuration source for. The configuration source for . Sets a value indicating whether this property can be modified before the entity is saved to the database. If , then an exception will be thrown if a value is assigned to this property when it is in the state. If , then any value set will be ignored when it is in the state. The property. A value indicating whether this property can be modified before the entity is saved to the database. null to reset to default. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The property to find configuration source for. The configuration source for . Sets a value indicating whether this property can be modified after the entity is saved to the database. If , then an exception will be thrown if a new value is assigned to this property after the entity exists in the database. If , then any modification to the property value of an entity that already exists in the database will be ignored. The property. Sets a value indicating whether this property can be modified after the entity is saved to the database. null to reset to default. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The property to find configuration source for. The configuration source for . Sets the factory to use for generating values for this property, or null to clear any previously set factory. Setting null does not disable value generation for this property, it just clears any generator explicitly configured for this property. The database provider may still have a value generator for the property type. The property to set the value generator for. A factory that will be used to create the value generator, or null to clear any previously set factory. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The property to find configuration source for. The configuration source for . Sets the custom for this property. The property. The converter, or null to remove any previously set converter. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The property to find configuration source for. The configuration source for . Sets the type that the property value will be converted to before being sent to the database provider. The property. The type to use, or null to remove any previously set type. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The property to find configuration source for. The configuration source for . Sets the custom for this property. The property. The comparer, or null to remove any previously set comparer. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The property to find configuration source for. The configuration source for . Sets the custom for this property when performing key comparisons. The property. The comparer, or null to remove any previously set comparer. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The property to find configuration source for. The configuration source for . Sets the custom for structural copies for this property. The property. The comparer, or null to remove any previously set comparer. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The property to find configuration source for. The configuration source for . Extension methods for . Indicates whether the given member name is ignored. The type to check the ignored member. The name of the member that might be ignored. true if the given member name is ignored. Sets the to use for properties of this type. Note that individual properties and navigations can override this access mode. The value set here will be used for any property or navigation for which no override has been specified. The type to set the access mode for. The , or null to clear the mode set. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The type to set the access mode for. The configuration source for . Sets the to use for navigations of this entity type. Note that individual navigations can override this access mode. The value set here will be used for any navigation for which no override has been specified. The type for which to set the access mode. The , or null to clear the mode set. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The type to find configuration source for. The configuration source for . Entity Framework LINQ related extension methods. Asynchronously determines whether a sequence contains any elements. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An to check for being empty. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains true if the source sequence contains any elements; otherwise, false. Asynchronously determines whether any element of a sequence satisfies a condition. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An whose elements to test for a condition. A function to test each element for a condition. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains true if any elements in the source sequence pass the test in the specified predicate; otherwise, false. Asynchronously determines whether all the elements of a sequence satisfy a condition. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An whose elements to test for a condition. A function to test each element for a condition. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains true if every element of the source sequence passes the test in the specified predicate; otherwise, false. Asynchronously returns the number of elements in a sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An that contains the elements to be counted. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the number of elements in the input sequence. Asynchronously returns the number of elements in a sequence that satisfy a condition. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An that contains the elements to be counted. A function to test each element for a condition. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the number of elements in the sequence that satisfy the condition in the predicate function. Asynchronously returns an that represents the total number of elements in a sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An that contains the elements to be counted. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the number of elements in the input sequence. Asynchronously returns an that represents the number of elements in a sequence that satisfy a condition. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An that contains the elements to be counted. A function to test each element for a condition. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the number of elements in the sequence that satisfy the condition in the predicate function. Asynchronously returns the first element of a sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An to return the first element of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the first element in . Asynchronously returns the first element of a sequence that satisfies a specified condition. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An to return the first element of. A function to test each element for a condition. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the first element in that passes the test in . Asynchronously returns the first element of a sequence, or a default value if the sequence contains no elements. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An to return the first element of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains default ( ) if is empty; otherwise, the first element in . Asynchronously returns the first element of a sequence that satisfies a specified condition or a default value if no such element is found. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An to return the first element of. A function to test each element for a condition. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains default ( ) if is empty or if no element passes the test specified by ; otherwise, the first element in that passes the test specified by . Asynchronously returns the last element of a sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An to return the last element of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the last element in . Asynchronously returns the last element of a sequence that satisfies a specified condition. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An to return the last element of. A function to test each element for a condition. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the last element in that passes the test in . Asynchronously returns the last element of a sequence, or a default value if the sequence contains no elements. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An to return the last element of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains default ( ) if is empty; otherwise, the last element in . Asynchronously returns the last element of a sequence that satisfies a specified condition or a default value if no such element is found. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An to return the last element of. A function to test each element for a condition. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains default ( ) if is empty or if no element passes the test specified by ; otherwise, the last element in that passes the test specified by . Asynchronously returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An to return the single element of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the single element of the input sequence. Asynchronously returns the only element of a sequence that satisfies a specified condition, and throws an exception if more than one such element exists. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An to return the single element of. A function to test an element for a condition. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the single element of the input sequence that satisfies the condition in . Asynchronously returns the only element of a sequence, or a default value if the sequence is empty; this method throws an exception if there is more than one element in the sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An to return the single element of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the single element of the input sequence, or default ( ) if the sequence contains no elements. Asynchronously returns the only element of a sequence that satisfies a specified condition or a default value if no such element exists; this method throws an exception if more than one element satisfies the condition. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An to return the single element of. A function to test an element for a condition. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the single element of the input sequence that satisfies the condition in , or default ( ) if no such element is found. Asynchronously returns the minimum value of a sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An that contains the elements to determine the minimum of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the minimum value in the sequence. Asynchronously invokes a projection function on each element of a sequence and returns the minimum resulting value. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . The type of the value returned by the function represented by . An that contains the elements to determine the minimum of. A projection function to apply to each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the minimum value in the sequence. Asynchronously returns the maximum value of a sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An that contains the elements to determine the maximum of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the maximum value in the sequence. Asynchronously invokes a projection function on each element of a sequence and returns the maximum resulting value. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . The type of the value returned by the function represented by . An that contains the elements to determine the maximum of. A projection function to apply to each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the maximum value in the sequence. Asynchronously computes the sum of a sequence of values. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values to calculate the sum of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the sum of the values in the sequence. Asynchronously computes the sum of a sequence of values. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values to calculate the sum of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the sum of the values in the sequence. Asynchronously computes the sum of the sequence of values that is obtained by invoking a projection function on each element of the input sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values of type . A projection function to apply to each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the sum of the projected values.. Asynchronously computes the sum of the sequence of values that is obtained by invoking a projection function on each element of the input sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values of type . A projection function to apply to each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the sum of the projected values.. Asynchronously computes the sum of a sequence of values. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values to calculate the sum of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the sum of the values in the sequence. Asynchronously computes the sum of a sequence of values. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values to calculate the sum of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the sum of the values in the sequence. Asynchronously computes the sum of the sequence of values that is obtained by invoking a projection function on each element of the input sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values of type . A projection function to apply to each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the sum of the projected values.. Asynchronously computes the sum of the sequence of values that is obtained by invoking a projection function on each element of the input sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values of type . A projection function to apply to each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the sum of the projected values.. Asynchronously computes the sum of a sequence of values. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values to calculate the sum of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the sum of the values in the sequence. Asynchronously computes the sum of a sequence of values. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values to calculate the sum of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the sum of the values in the sequence. Asynchronously computes the sum of the sequence of values that is obtained by invoking a projection function on each element of the input sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values of type . A projection function to apply to each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the sum of the projected values.. Asynchronously computes the sum of the sequence of values that is obtained by invoking a projection function on each element of the input sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values of type . A projection function to apply to each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the sum of the projected values.. Asynchronously computes the sum of a sequence of values. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values to calculate the sum of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the sum of the values in the sequence. Asynchronously computes the sum of a sequence of values. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values to calculate the sum of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the sum of the values in the sequence. Asynchronously computes the sum of the sequence of values that is obtained by invoking a projection function on each element of the input sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values of type . A projection function to apply to each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the sum of the projected values.. Asynchronously computes the sum of the sequence of values that is obtained by invoking a projection function on each element of the input sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values of type . A projection function to apply to each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the sum of the projected values.. Asynchronously computes the sum of a sequence of values. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values to calculate the sum of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the sum of the values in the sequence. Asynchronously computes the sum of a sequence of values. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values to calculate the sum of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the sum of the values in the sequence. Asynchronously computes the sum of the sequence of values that is obtained by invoking a projection function on each element of the input sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values of type . A projection function to apply to each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the sum of the projected values.. Asynchronously computes the sum of the sequence of values that is obtained by invoking a projection function on each element of the input sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values of type . A projection function to apply to each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the sum of the projected values.. Asynchronously computes the average of a sequence of values. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values to calculate the average of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the average of the sequence of values. Asynchronously computes the average of a sequence of values. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values to calculate the average of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the average of the sequence of values. Asynchronously computes the average of a sequence of values that is obtained by invoking a projection function on each element of the input sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . A sequence of values of type . A projection function to apply to each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the average of the projected values. Asynchronously computes the average of a sequence of values that is obtained by invoking a projection function on each element of the input sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . A sequence of values of type . A projection function to apply to each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the average of the projected values. Asynchronously computes the average of a sequence of values. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values to calculate the average of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the average of the sequence of values. Asynchronously computes the average of a sequence of values. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values to calculate the average of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the average of the sequence of values. Asynchronously computes the average of a sequence of values that is obtained by invoking a projection function on each element of the input sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . A sequence of values of type . A projection function to apply to each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the average of the projected values. Asynchronously computes the average of a sequence of values that is obtained by invoking a projection function on each element of the input sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . A sequence of values of type . A projection function to apply to each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the average of the projected values. Asynchronously computes the average of a sequence of values. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values to calculate the average of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the average of the sequence of values. Asynchronously computes the average of a sequence of values. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values to calculate the average of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the average of the sequence of values. Asynchronously computes the average of a sequence of values that is obtained by invoking a projection function on each element of the input sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . A sequence of values of type . A projection function to apply to each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the average of the projected values. Asynchronously computes the average of a sequence of values that is obtained by invoking a projection function on each element of the input sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . A sequence of values of type . A projection function to apply to each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the average of the projected values. Asynchronously computes the average of a sequence of values. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values to calculate the average of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the average of the sequence of values. Asynchronously computes the average of a sequence of values. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values to calculate the average of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the average of the sequence of values. Asynchronously computes the average of a sequence of values that is obtained by invoking a projection function on each element of the input sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . A sequence of values of type . A projection function to apply to each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the average of the projected values. Asynchronously computes the average of a sequence of values that is obtained by invoking a projection function on each element of the input sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . A sequence of values of type . A projection function to apply to each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the average of the projected values. Asynchronously computes the average of a sequence of values. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values to calculate the average of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the average of the sequence of values. Asynchronously computes the average of a sequence of values. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. A sequence of values to calculate the average of. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the average of the sequence of values. Asynchronously computes the average of a sequence of values that is obtained by invoking a projection function on each element of the input sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . A sequence of values of type . A projection function to apply to each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the average of the projected values. Asynchronously computes the average of a sequence of values that is obtained by invoking a projection function on each element of the input sequence. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . A sequence of values of type . A projection function to apply to each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the average of the projected values. Asynchronously determines whether a sequence contains a specified element by using the default equality comparer. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An to return the single element of. The object to locate in the sequence. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains true if the input sequence contains the specified value; otherwise, false. Asynchronously creates a from an by enumerating it asynchronously. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An to create a list from. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains a that contains elements from the input sequence. Asynchronously creates an array from an by enumerating it asynchronously. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An to create an array from. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains an array that contains elements from the input sequence. Specifies related entities to include in the query results. The navigation property to be included is specified starting with the type of entity being queried (). If you wish to include additional types based on the navigation properties of the type being included, then chain a call to after this call. The following query shows including a single level of related entities. context.Blogs.Include(blog => blog.Posts); The following query shows including two levels of entities on the same branch. context.Blogs .Include(blog => blog.Posts).ThenInclude(post => post.Tags); The following query shows including multiple levels and branches of related data. context.Blogs .Include(blog => blog.Posts).ThenInclude(post => post.Tags).ThenInclude(tag => tag.TagInfo) .Include(blog => blog.Contributors); The following query shows including a single level of related entities on a derived type using casting. context.Blogs.Include(blog => ((SpecialBlog)blog).SpecialPosts); The following query shows including a single level of related entities on a derived type using 'as' operator. context.Blogs.Include(blog => (blog as SpecialBlog).SpecialPosts); The type of entity being queried. The type of the related entity to be included. The source query. A lambda expression representing the navigation property to be included (t => t.Property1). A new query with the related data included. Specifies additional related data to be further included based on a related type that was just included. The following query shows including a single level of related entities. context.Blogs.Include(blog => blog.Posts); The following query shows including two levels of entities on the same branch. context.Blogs .Include(blog => blog.Posts).ThenInclude(post => post.Tags); The following query shows including multiple levels and branches of related data. context.Blogs .Include(blog => blog.Posts).ThenInclude(post => post.Tags).ThenInclude(tag => tag.TagInfo) .Include(blog => blog.Contributors); The following query shows including two levels of entities on the same branch, second one being on derived type using casting. context.Blogs .Include(blog => blog.Posts).ThenInclude(post => ((SpecialPost)post).SpecialTags); The following query shows including two levels of entities on the same branch, second one being on derived type using 'as' operator. context.Blogs .Include(blog => blog.Posts).ThenInclude(post => (post as SpecialPost).SpecialTags); The type of entity being queried. The type of the entity that was just included. The type of the related entity to be included. The source query. A lambda expression representing the navigation property to be included (t => t.Property1). A new query with the related data included. Specifies additional related data to be further included based on a related type that was just included. The following query shows including a single level of related entities. context.Blogs.Include(blog => blog.Posts); The following query shows including two levels of entities on the same branch. context.Blogs .Include(blog => blog.Posts).ThenInclude(post => post.Tags); The following query shows including multiple levels and branches of related data. context.Blogs .Include(blog => blog.Posts).ThenInclude(post => post.Tags).ThenInclude(tag => tag.TagInfo) .Include(blog => blog.Contributors); The following query shows including two levels of entities on the same branch, second one being on derived type. context.Blogs .Include(blog => blog.Posts).ThenInclude(post => ((SpecialPost)post).SpecialTags); The following query shows including two levels of entities on the same branch, second one being on derived type using alternative method. context.Blogs .Include(blog => blog.Posts).ThenInclude(post => (post as SpecialPost).SpecialTags); The type of entity being queried. The type of the entity that was just included. The type of the related entity to be included. The source query. A lambda expression representing the navigation property to be included (t => t.Property1). A new query with the related data included. Specifies related entities to include in the query results. The navigation property to be included is specified starting with the type of entity being queried (). Further navigation properties to be included can be appended, separated by the '.' character. The following query shows including a single level of related entities. context.Blogs.Include("Posts"); The following query shows including two levels of entities on the same branch. context.Blogs.Include("Posts.Tags"); The following query shows including multiple levels and branches of related data. context.Blogs .Include("Posts.Tags.TagInfo') .Include("Contributors"); The type of entity being queried. The source query. A string of '.' separated navigation property names to be included. A new query with the related data included. Specifies that the current Entity Framework LINQ query should not have any model-level entity query filters applied. The type of entity being queried. The source query. A new query that will not apply any model-level entity query filters. Returns a new query where the change tracker will not track any of the entities that are returned. If the entity instances are modified, this will not be detected by the change tracker and will not persist those changes to the database. Disabling change tracking is useful for read-only scenarios because it avoids the overhead of setting up change tracking for each entity instance. You should not disable change tracking if you want to manipulate entity instances and persist those changes to the database using . The default tracking behavior for queries can be controlled by . The type of entity being queried. The source query. A new query where the result set will not be tracked by the context. Returns a new query where the change tracker will keep track of changes for all entities that are returned. Any modification to the entity instances will be detected and persisted to the database during . The default tracking behavior for queries can be controlled by . The type of entity being queried. The source query. A new query where the result set will be tracked by the context. Returns a new query where the change tracker will either keep track of changes or not for all entities that are returned, depending on the value of the 'track' parameter. When tracking, Any modification to the entity instances will be detected and persisted to the database during . When not tracking, if the entity instances are modified, this will not be detected by the change tracker and will not persist those changes to the database. Disabling change tracking is useful for read-only scenarios because it avoids the overhead of setting up change tracking for each entity instance. You should not disable change tracking if you want to manipulate entity instances and persist those changes to the database using . The default tracking behavior for queries can be controlled by . The type of entity being queried. The source query. Indicates whether the query will track results or not. A new query where the result set will be tracked by the context. Adds a tag to the collection of tags associated with an EF LINQ query. Tags are query annotations that can provide contextual tracing information at different points in the query pipeline. The type of entity being queried. The source query. The tag. A new query annotated with the given tag. Enumerates the query. When using Entity Framework, this causes the results of the query to be loaded into the associated context. This is equivalent to calling ToList and then throwing away the list (without the overhead of actually creating the list). The source query. Asynchronously enumerates the query. When using Entity Framework, this causes the results of the query to be loaded into the associated context. This is equivalent to calling ToList and then throwing away the list (without the overhead of actually creating the list). The source query. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. Creates a from an by enumerating it asynchronously according to a specified key selector function. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . The type of the key returned by . An to create a from. A function to extract a key from each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains a that contains selected keys and values. Creates a from an by enumerating it asynchronously according to a specified key selector function and a comparer. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . The type of the key returned by . An to create a from. A function to extract a key from each element. An to compare keys. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains a that contains selected keys and values. Creates a from an by enumerating it asynchronously according to a specified key selector and an element selector function. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . The type of the key returned by . The type of the value returned by . An to create a from. A function to extract a key from each element. A transform function to produce a result element value from each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains a that contains values of type selected from the input sequence. Creates a from an by enumerating it asynchronously according to a specified key selector function, a comparer, and an element selector function. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . The type of the key returned by . The type of the value returned by . An to create a from. A function to extract a key from each element. A transform function to produce a result element value from each element. An to compare keys. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains a that contains values of type selected from the input sequence. Asynchronously enumerates the query results and performs the specified action on each element. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An to enumerate. The action to perform on each element. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. Returns an which can be enumerated asynchronously. Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. The type of the elements of . An to enumerate. The query results. Extension methods for . Checks if this entity type represents an abstract type. The entity type. True if the type is abstract, false otherwise. Gets the root base type for a given entity type. The type to find the root of. The root base type. If the given entity type is not a derived type, then the same entity type is returned. Gets the root base type for a given entity type. The type to find the root of. The root base type. If the given entity type is not a derived type, then the same entity type is returned. Gets all types in the model that derive from a given entity type. The base type to find types that derive from. The derived types. Returns all derived types of the given , including the type itself. The entity type. Derived types. Gets all types in the model that directly derive from a given entity type. The base type to find types that derive from. The derived types. Determines if an entity type derives from (or is the same as) a given entity type. The base entity type. The entity type to check if it derives from . true if derives from (or is the same as) , otherwise false. Returns the closest entity type that is a parent of both given entity types. If one of the given entities is a parent of the other, that parent is returned. Returns null if the two entity types aren't in the same hierarchy. An entity type. Another entity type. The closest common parent of and , or null if they have not common parent. Determines if an entity type derives from (but is not the same as) a given entity type. The derived entity type. The entity type to check if it is a base type of . true if derives from (but is not the same as) , otherwise false. Gets the least derived type between the specified two. The type to compare. The other entity type to compare with. The least derived type between the specified two. If the given entity types are not related, then null is returned. Returns all base types of the given , including the type itself, top to bottom. The entity type. Base types. Returns all base types of the given , including the type itself, bottom to top. The entity type. Base types. Gets all keys declared on the given . This method does not return keys declared on base types. It is useful when iterating over all entity types to avoid processing the same key more than once. Use to also return keys declared on base types. The entity type. Declared keys. Gets all foreign keys declared on the given . This method does not return foreign keys declared on base types. It is useful when iterating over all entity types to avoid processing the same foreign key more than once. Use to also return foreign keys declared on base types. The entity type. Declared foreign keys. Gets all foreign keys declared on the types derived from the given . This method does not return foreign keys declared on the given entity type itself. Use to return foreign keys declared on this and base entity typed types. The entity type. Derived foreign keys. Gets all navigation properties declared on the given . This method does not return navigation properties declared on base types. It is useful when iterating over all entity types to avoid processing the same navigation property more than once. Use to also return navigation properties declared on base types. The entity type. Declared navigation properties. Gets all non-navigation properties declared on the given . This method does not return properties declared on base types. It is useful when iterating over all entity types to avoid processing the same property more than once. Use to also return properties declared on base types. The entity type. Declared non-navigation properties. Gets all service properties declared on the given . This method does not return properties declared on base types. It is useful when iterating over all entity types to avoid processing the same property more than once. Use to also return properties declared on base types. The entity type. Declared service properties. Gets all indexes declared on the given . This method does not return indexes declared on base types. It is useful when iterating over all entity types to avoid processing the same index more than once. Use to also return indexes declared on base types. The entity type. Declared indexes. Gets the friendly display name for the given . The entity type. The display name. Gets a short name for the given that can be used in other identifiers. The entity type. The short name. Gets a value indicating whether this entity type has a defining navigation. True if this entity type has a defining navigation. Gets a value indicating whether this entity type is owned by another entity type. True if this entity type is owned by another entity type. Gets the primary or alternate key that is defined on the given property. Returns null if no key is defined for the given property. The entity type to find the key on. The property that the key is defined on. The key, or null if none is defined. Gets the foreign keys defined on the given property. Only foreign keys that are defined on exactly the specified property are returned. Composite foreign keys that include the specified property are not returned. The entity type to find the foreign keys on. The property to find the foreign keys on. The foreign keys. Gets the foreign keys defined on the given properties. Only foreign keys that are defined on exactly the specified set of properties are returned. The entity type to find the foreign keys on. The properties to find the foreign keys on. The foreign keys. Gets the foreign key for the given properties that points to a given primary or alternate key. Returns null if no foreign key is found. The entity type to find the foreign keys on. The property that the foreign key is defined on. The primary or alternate key that is referenced. The entity type that the relationship targets. This may be different from the type that is defined on when the relationship targets a derived type in an inheritance hierarchy (since the key is defined on the base type of the hierarchy). The foreign key, or null if none is defined. Gets all foreign keys that target a given entity type (i.e. foreign keys where the given entity type is the principal). The entity type to find the foreign keys for. The foreign keys that reference the given entity type. Gets all foreign keys that target a given entity type (i.e. foreign keys where the given entity type is the principal). The entity type to find the foreign keys for. The foreign keys that reference the given entity type. Returns the relationship to the owner if this is an owned type or null otherwise. The entity type to find the foreign keys on. The relationship to the owner if this is an owned type or null otherwise. Gets a navigation property on the given entity type. Returns null if no navigation property is found. The entity type to find the navigation property on. The navigation property on the entity class. The navigation property, or null if none is found. Gets a navigation property on the given entity type. Returns null if no navigation property is found. The entity type to find the navigation property on. The name of the navigation property on the entity class. The navigation property, or null if none is found. Gets a navigation property on the given entity type. Does not return navigation properties defined on a base type. Returns null if no navigation property is found. The entity type to find the navigation property on. The name of the navigation property on the entity class. The navigation property, or null if none is found. Returns the defining navigation if one exists or null otherwise. The entity type to find the defining navigation for. The defining navigation if one exists or null otherwise. Gets all navigation properties on the given entity type. The entity type to get navigation properties for. All navigation properties on the given entity type. Gets a property on the given entity type. Returns null if no property is found. This API only finds scalar properties and does not find navigation properties. Use to find a navigation property. The entity type to find the property on. The property on the entity class. The property, or null if none is found. Finds matching properties on the given entity type. Returns null if any property is not found. This API only finds scalar properties and does not find navigation properties. The entity type to find the properties on. The property names. The properties, or null if any property is not found. Finds a property declared on the type with the given name. Does not return properties defined on a base type. The entity type to find the property on. The property name. The property, or null if none is found. Gets the index defined on the given property. Returns null if no index is defined. The entity type to find the index on. The property to find the index on. The index, or null if none is found. Gets the change tracking strategy being used for this entity type. This strategy indicates how the context detects changes to properties for an instance of the entity type. The entity type to get the change tracking strategy for. The change tracking strategy. Gets the data stored in the model for the given entity type. The entity type. If true, then provider values are used. The data. Gets the LINQ expression filter automatically applied to queries for this entity type. The entity type to get the query filter for. The LINQ expression filter. Gets the LINQ query used as the default source for queries of this type. The entity type to get the defining query for. The LINQ query used as the default source. Returns the that will be used for storing a discriminator value. The entity type to get the discriminator property for. Returns the discriminator value for this entity type. The entity type to find the discriminator value for. The discriminator value for this entity type. Extension methods for . Gets the entity type related to the given one. The foreign key. One of the entity types related by the foreign key. The entity type related to the given one. Returns a navigation associated with this foreign key. The foreign key. A value indicating whether the navigation is on the dependent type pointing to the principal type. A navigation associated with this foreign key or null. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. 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. 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. Service dependencies parameter class for 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. This should only be called from as it is created before the context is initialized 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. A to observe while waiting for the task to complete. 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. 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. 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. 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. 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. 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. 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. 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. 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. Re-writes the registration for the given service such that if the implementation type implements , then will be called while resolving the service allowing additional services to be injected without breaking the existing constructor. This mechanism should only be used to allow new services to be injected in a patch or point release without making binary breaking changes. The service contract. The map, such that further calls can be chained. 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. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. The service lifetime is . This means that each entity instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. Extension methods for . Gets all foreign keys that target a given primary or alternate key. The key to find the foreign keys for. The foreign keys that reference the given key. Returns a value indicating whether the key is the primary key. The key to find whether it is primary. true if the key is the primary key. Extension methods for . Gets the entity that maps the given entity class. Returns null if no entity type with the given CLR type is found or the entity type has a defining navigation. The model to find the entity type in. The type to find the corresponding entity type for. The entity type, or null if none if found. Gets the entity that maps the given entity class, where the class may be a proxy derived from the actual entity type. Returns null if no entity type with the given CLR type is found or the entity type has a defining navigation. The model to find the entity type in. The type to find the corresponding entity type for. The entity type, or null if none if found. Gets the entity type for the given type, defining navigation name and the defining entity type. Returns null if no matching entity type is found. The model to find the entity type in. The type of the entity type to find. The defining navigation of the entity type to find. The defining entity type of the entity type to find. The entity type, or null if none are found. Gets the entity types matching the given type. The model to find the entity type in. The type of the entity type to find. The entity types found. Gets the entity types matching the given name. The model to find the entity type in. The name of the entity type to find. The entity types found. Gets a value indicating whether the model contains a corresponding entity type with a defining navigation. The model to find the entity type in. The type used to find an entity type a defining navigation. true if the model contains a corresponding entity type with a defining navigation. Gets a value indicating whether the model contains a corresponding entity type with a defining navigation. The model to find the entity type in. The name used to find an entity type with a defining navigation. true if the model contains a corresponding entity type with a defining navigation. Gets the default change tracking strategy being used for entities in the model. This strategy indicates how the context detects changes to properties for an instance of an entity type. The model to get the default change tracking strategy for. The change tracking strategy. Gets the being used for properties of entity types in this model. Note that individual entity types can override this access mode, and individual properties of entity types can override the access mode set on the entity type. The value returned here will be used for any property for which no override has been specified. The model to get the access mode for. The access mode being used, or null if the default access mode is being used. Gets the EF Core assembly version used to build this model The model to get the version for. Extension methods for . Gets the annotation with the given name, throwing if it does not exist. The object to find the annotation on. The key of the annotation to find. The annotation with the specified name. Adds annotations to an object. The object to add the annotations to. The annotations to be added. Sets the annotation stored under the given name. Overwrites the existing annotation if an annotation with the specified name already exists. Removes the existing annotation if null is supplied. The object to set the annotation for. The name of the annotation to be added. The value to be stored in the annotation. Extension methods for . Gets the root base type for a given entity type. The type to find the root of. The root base type. If the given entity type is not a derived type, then the same entity type is returned. Gets the root base type for a given entity type. The type to find the root of. The root base type. If the given entity type is not a derived type, then the same entity type is returned. Gets all types in the model that derive from a given entity type. The base type to find types that derive from. The derived types. Returns all derived types of the given , including the type itself. The entity type. Derived types. Gets all types in the model that directly derive from a given entity type. The base type to find types that derive from. The derived types. Gets all keys declared on the given . This method does not return keys declared on base types. It is useful when iterating over all entity types to avoid processing the same key more than once. Use to also return keys declared on base types. The entity type. Declared keys. Gets all non-navigation properties declared on the given . This method does not return properties declared on base types. It is useful when iterating over all entity types to avoid processing the same property more than once. Use to also return properties declared on base types. The entity type. Declared non-navigation properties. Gets all navigation properties declared on the given . This method does not return navigation properties declared on base types. It is useful when iterating over all entity types to avoid processing the same navigation property more than once. Use to also return navigation properties declared on base types. The entity type. Declared navigation properties. Gets all service properties declared on the given . This method does not return properties declared on base types. It is useful when iterating over all entity types to avoid processing the same property more than once. Use to also return properties declared on base types. The entity type. Declared service properties. Gets all indexes declared on the given . This method does not return indexes declared on base types. It is useful when iterating over all entity types to avoid processing the same index more than once. Use to also return indexes declared on base types. The entity type. Declared indexes. Removes a property from this entity type. The entity type. The name of the property to remove. The property that was removed. Sets the primary key for this entity type. The entity type to set the key on. The primary key property. The newly created key. Gets the primary or alternate key that is defined on the given property. Returns null if no key is defined for the given property. The entity type to find the key on. The property that the key is defined on. The key, or null if none is defined. Adds a new alternate key to this entity type. The entity type to add the alternate key to. The property to use as an alternate key. The newly created key. Removes a primary or alternate key from this entity type. The entity type to add remove the key from. The properties that make up the key. The key that was removed. Gets all foreign keys declared on the given . This method does not return foreign keys declared on base types. It is useful when iterating over all entity types to avoid processing the same foreign key more than once. Use to also return foreign keys declared on base types. The entity type. Declared foreign keys. Gets all foreign keys declared on the types derived from the given . This method does not return foreign keys declared on the given entity type itself. Use to return foreign keys declared on this and base entity typed types. The entity type. Derived foreign keys. Gets the foreign keys defined on the given property. Only foreign keys that are defined on exactly the specified property are returned. Composite foreign keys that include the specified property are not returned. The entity type to find the foreign keys on. The property to find the foreign keys on. The foreign keys. Gets the foreign keys defined on the given properties. Only foreign keys that are defined on exactly the specified set of properties are returned. The entity type to find the foreign keys on. The properties to find the foreign keys on. The foreign keys. Gets the foreign key for the given properties that points to a given primary or alternate key. Returns null if no foreign key is found. The entity type to find the foreign keys on. The property that the foreign key is defined on. The primary or alternate key that is referenced. The entity type that the relationship targets. This may be different from the type that is defined on when the relationship targets a derived type in an inheritance hierarchy (since the key is defined on the base type of the hierarchy). The foreign key, or null if none is defined. Gets the foreign keys declared on the given using the given properties. The entity type. The properties to find the foreign keys on. Declared foreign keys. Gets all foreign keys that target a given entity type (i.e. foreign keys where the given entity type or a type it's derived from is the principal). The entity type to find the foreign keys for. The foreign keys that reference the given entity type. Gets all foreign keys that target a given entity type (i.e. foreign keys where the given entity type is the principal). The entity type to find the foreign keys for. The foreign keys that reference the given entity type. Adds a new relationship to this entity type. The entity type to add the foreign key to. The property that the foreign key is defined on. The primary or alternate key that is referenced. The entity type that the relationship targets. This may be different from the type that is defined on when the relationship targets a derived type in an inheritance hierarchy (since the key is defined on the base type of the hierarchy). The newly created foreign key. Returns the relationship to the owner if this is an owned type or null otherwise. The entity type to find the foreign keys on. The relationship to the owner if this is an owned type or null otherwise. Removes a foreign key from this entity type. The entity type to remove the foreign key from. The properties that the foreign key is defined on. The primary or alternate key that is referenced. The entity type that the relationship targets. This may be different from the type that is defined on when the relationship targets a derived type in an inheritance hierarchy (since the key is defined on the base type of the hierarchy). The foreign key that was removed. Gets a navigation property on the given entity type. Returns null if no navigation property is found. The entity type to find the navigation property on. The navigation property on the entity class. The navigation property, or null if none is found. Gets a navigation property on the given entity type. Returns null if no navigation property is found. The entity type to find the navigation property on. The name of the navigation property on the entity class. The navigation property, or null if none is found. Gets a navigation property on the given entity type. Does not return navigation properties defined on a base type. Returns null if no navigation property is found. The entity type to find the navigation property on. The name of the navigation property on the entity class. The navigation property, or null if none is found. Returns the defining navigation if one exists or null otherwise. The entity type to find the defining navigation for. The defining navigation if one exists or null otherwise. Gets all navigation properties on the given entity type. The entity type to get navigation properties for. All navigation properties on the given entity type. Gets a property on the given entity type. Returns null if no property is found. This API only finds scalar properties and does not find navigation properties. Use to find a navigation property. The entity type to find the property on. The property on the entity class. The property, or null if none is found. Finds matching properties on the given entity type. Returns null if any property is not found. This API only finds scalar properties and does not find navigation properties. The entity type to find the properties on. The property names. The properties, or null if any property is not found. Finds a property declared on the type with the given name. Does not return properties defined on a base type. The entity type to find the property on. The property name. The property, or null if none is found. Adds a property to this entity type. The entity type to add the property to. The corresponding member on the entity class. The newly created property. Adds a property to this entity type. The entity type to add the property to. The name of the property to add. The newly created property. Adds a property to this entity type. The entity type to add the property to. The name of the property to add. The type of value the property will hold. The newly created property. Gets the index defined on the given property. Returns null if no index is defined. The entity type to find the index on. The property to find the index on. The index, or null if none is found. Adds an index to this entity type. The entity type to add the index to. The property to be indexed. The newly created index. Removes an index from this entity type. The entity type to remove the index from. The properties that make up the index. The index that was removed. Sets the change tracking strategy to use for this entity type. This strategy indicates how the context detects changes to properties for an instance of the entity type. The entity type to set the change tracking strategy for. The strategy to use. Sets the LINQ expression filter automatically applied to queries for this entity type. The entity type to set the query filter for. The LINQ expression filter. Sets the LINQ query used as the default source for queries of this type. The entity type to set the defining query for. The LINQ query used as the default source. Returns the that will be used for storing a discriminator value. The entity type to get the discriminator property for. Sets the that will be used for storing a discriminator value. The entity type to set the discriminator property for. The property to set. Sets the discriminator value for this entity type. The entity type to set the discriminator value for. The value to set. Removes the discriminator value for this entity type. The entity type to remove the discriminator value for. Extension methods for . Gets the entity type related to the given one. The foreign key. One of the entity types related by the foreign key. The entity type related to the given one. Returns a navigation associated with this foreign key. The foreign key. A value indicating whether the navigation is on the dependent type pointing to the principal type. A navigation associated with this foreign key or null. Extension methods for . Gets all foreign keys that target a given primary or alternate key. The key to find the foreign keys for. The foreign keys that reference the given key. Extension methods for . Gets the entity that maps the given entity class. Returns null if no entity type with the given name is found. The model to find the entity type in. The type to find the corresponding entity type for. The entity type, or null if none if found. Gets the entity type for the given name, defining navigation name and the defining entity type. Returns null if no matching entity type is found. The model to find the entity type in. The type of the entity type to find. The defining navigation of the entity type to find. The defining entity type of the entity type to find. The entity type, or null if none are found. Gets the entity types matching the given type. The model to find the entity type in. The type of the entity type to find. The entity types found. Gets the entity types matching the given name. The model to find the entity type in. The name of the entity type to find. The entity types found. Removes an entity type from the model. The model to remove the entity type from. The entity type to be removed. The entity type that was removed. Removes an entity type with a defining navigation from the model. The model to remove the entity type from. The CLR class that is used to represent instances of this entity type. The defining navigation. The defining entity type. The entity type that was removed. Removes an entity type without a defining navigation from the model. The model to remove the entity type from. The name of the entity type to be removed. The entity type that was removed. Removes an entity type with a defining navigation from the model. The model to remove the entity type from. The name of the entity type to be removed. The defining navigation. The defining entity type. The entity type that was removed. Returns the entity types corresponding to the least derived types from the given. The model to find the entity types in. The base type. An optional condition for filtering entity types. List of entity types corresponding to the least derived types from the given. Removes the ignored entity type. The model to remove the ignored entity type from. The ignored entity type to be removed. Indicates whether the given entity type name is ignored. The model to check for ignored type. The entity type that might be ignored. true if the given entity type name is ignored. Sets the to use for properties of all entity types in this model. Note that individual entity types can override this access mode, and individual properties of entity types can override the access mode set on the entity type. The value set here will be used for any property for which no override has been specified. The model to set the access mode for. The , or null to clear the mode set. Sets the default change tracking strategy to use for entities in the model. This strategy indicates how the context detects changes to properties for an instance of an entity type. The model to set the default change tracking strategy for. The strategy to use. Marks the given entity type as ignored, preventing conventions from adding a matching entity type to the model. The model to add the ignored type to. The entity type to be ignored. Returns a value indicating whether the entity types using the given type should be configured as owned types when discovered by conventions. The model to get the value from. The type of the entity type that might be owned. true if a matching entity type should be configured as owned when discovered, false otherwise. Marks the given entity type as owned, indicating that when discovered matching entity types should be configured as owned. The model to add the owned type to. The type of the entity type that should be owned. Removes the given owned type, indicating that when discovered matching entity types should not be configured as owned. The model to remove the owned type name from. The type of the entity type that should not be owned. Forces post-processing on the model such that it is ready for use by the runtime. This post processing happens automatically when using ; this method allows it to be run explicitly in cases where the automatic execution is not possible. The model to finalize. The finalized . Extension methods for . Gets the navigation property on the other end of the relationship. Returns null if there is no navigation property defined on the other end of the relationship. The navigation property to find the inverse of. The inverse navigation, or null if none is defined. Gets the entity type that a given navigation property will hold an instance of (or hold instances of if it is a collection navigation). The navigation property to find the target entity type of. The target entity type. Sets a value indicating whether this navigation should be eager loaded by default. The navigation property to set whether it should be eager loaded for. A value indicating whether this navigation should be eager loaded by default. Extension methods for . Sets the underlying CLR field that this property should use. Backing fields are normally found by convention as described here: http://go.microsoft.com/fwlink/?LinkId=723277. This method is useful for setting backing fields explicitly in cases where the correct field is not found by convention. By default, the backing field, if one is found or has been specified, is used when new objects are constructed, typically when entities are queried from the database. Properties are used for all other accesses. This can be changed by calling . The property for which the backing field should be set. The name of the field to use. Sets the to use for this property. The property for which to set the access mode. The , or null to clear the mode set. Extension methods for . Finds the first principal property that the given property is constrained by if the given property is part of a foreign key. The foreign key property. The first associated principal property, or null if none exists. Gets all foreign keys that use this property (including composite foreign keys in which this property is included). The property to get foreign keys for. The foreign keys that use this property. Gets all indexes that use this property (including composite indexes in which this property is included). The property to get indexes for. The indexes that use this property. Gets the primary key that uses this property (including a composite primary key in which this property is included). The property to get primary key for. The primary that use this property, or null if it is not part of the primary key. Gets the primary key that uses this property (including a composite primary key in which this property is included). The property to get primary key for. The primary that use this property, or null if it is not part of the primary key. Gets all primary or alternate keys that use this property (including composite keys in which this property is included). The property to get primary and alternate keys for. The primary and alternate keys that use this property. Sets the maximum length of data that is allowed in this property. For example, if the property is a ' then this is the maximum number of characters. The property to set the maximum length of. The maximum length of data that is allowed in this property. Sets a value indicating whether this property can persist Unicode characters. The property to set the value for. true if the property accepts Unicode characters, false if it does not, null to clear the setting. Gets or sets a value indicating whether this property can be modified before the entity is saved to the database. If , then an exception will be thrown if a value is assigned to this property when it is in the state. If , then any value set will be ignored when it is in the state. The property. A value indicating whether this property can be modified before the entity is saved to the database. Gets or sets a value indicating whether this property can be modified after the entity is saved to the database. If , then an exception will be thrown if a new value is assigned to this property after the entity exists in the database. If , then any modification to the property value of an entity that already exists in the database will be ignored. The property. A value indicating whether this property can be modified after the entity is saved to the database. Sets the factory to use for generating values for this property, or null to clear any previously set factory. Setting null does not disable value generation for this property, it just clears any generator explicitly configured for this property. The database provider may still have a value generator for the property type. The property to set the value generator for. A factory that will be used to create the value generator, or null to clear any previously set factory. Sets the custom for this property. The property. The converter, or null to remove any previously set converter. Sets the type that the property value will be converted to before being sent to the database provider. The property. The type to use, or null to remove any previously set type. Sets the custom for this property. The property. The comparer, or null to remove any previously set comparer. Sets the custom for this property when performing key comparisons. The property. The comparer, or null to remove any previously set comparer. Sets the custom for structural copies for this property. The property. The comparer, or null to remove any previously set comparer. Extension methods for . Sets the to use for properties and navigations of this entity type. Note that individual properties and navigations can override this access mode. The value set here will be used for any property or navigation for which no override has been specified. The type for which to set the access mode. The , or null to clear the mode set. Sets the to use for navigations of this entity type. Note that individual navigations can override this access mode. The value set here will be used for any navigation for which no override has been specified. The type for which to set the access mode. The , or null to clear the mode set. Extension methods for . Gets the for this navigation property, which must be a collection navigation. The navigation property. The accessor. Gets a value indicating whether the given navigation property is the navigation property on the dependent entity type that points to the principal entity. The navigation property to check. True if the given navigation property is the navigation property on the dependent entity type that points to the principal entity, otherwise false. Gets a value indicating whether the given navigation property is a collection property. The navigation property to check. True if this is a collection property, false if it is a reference property. Gets the navigation property on the other end of the relationship. Returns null if there is no navigation property defined on the other end of the relationship. The navigation property to find the inverse of. The inverse navigation, or null if none is defined. Gets the entity type that a given navigation property will hold an instance of (or hold instances of if it is a collection navigation). The navigation property to find the target entity type of. The target entity type. Gets a value indicating whether this navigation should be eager loaded by default. The navigation property to find whether it should be eager loaded. A value indicating whether this navigation should be eager loaded by default. Extension methods for . Returns an implementation that stays in sync with the given . The element type. The collection that the binding list will stay in sync with. The binding list. Extension methods for . Gets the or that should be used to get or set a value for the given property. Note that it is an error to call this method for a shadow property () since such a property has no associated . The property. If true, then the member to use for query materialization will be returned. If true, then the member to use for setting the property value will be returned, otherwise the member to use for getting the property value will be returned. The to use. Gets a for reading the value of this property. Note that it is an error to call this method for a shadow property () since such a property has no associated . The property. The accessor. Gets the name of the backing field for this property, or null if the backing field is not known. The property for which the backing field will be returned. The name of the backing field, or null. Gets a value indicating whether this is a shadow property. A shadow property is one that does not have a corresponding property in the entity class. The current value for the property is stored in the rather than being stored in instances of the entity class. The property to check. True if the property is a shadow property, otherwise false. Gets the being used for this property. null indicates that the default property access mode is being used. The property for which to get the access mode. The access mode being used, or null if the default access mode is being used. Extension methods for . Returns the for the given property from a finalized model. The property. The type mapping. Returns the for the given property. The property. The type mapping, or null if none was found. Returns the for the given property. The property. The type mapping, or null if none was found. Finds the first principal property that the given property is constrained by if the given property is part of a foreign key. The foreign key property. The first associated principal property, or null if none exists. Gets a value indicating whether this property is used as a foreign key (or part of a composite foreign key). The property to check. true if the property is used as a foreign key, otherwise false. Gets a value indicating whether this property is used as an index (or part of a composite index). The property to check. true if the property is used as an index, otherwise false. Gets a value indicating whether this property is used as the primary key (or part of a composite primary key). The property to check. true if the property is used as the primary key, otherwise false. Gets a value indicating whether this property is used as part of a primary or alternate key (or part of a composite primary or alternate key). The property to check. true if the property is part of a key, otherwise false. Gets all foreign keys that use this property (including composite foreign keys in which this property is included). The property to get foreign keys for. The foreign keys that use this property. Gets all indexes that use this property (including composite indexes in which this property is included). The property to get indexes for. The indexes that use this property. Gets the primary key that uses this property (including a composite primary key in which this property is included). The property to get primary key for. The primary that use this property, or null if it is not part of the primary key. Gets the primary key that uses this property (including a composite primary key in which this property is included). The property to get primary key for. The primary that use this property, or null if it is not part of the primary key. Gets all primary or alternate keys that use this property (including composite keys in which this property is included). The property to get primary and alternate keys for. The primary and alternate keys that use this property. Gets the maximum length of data that is allowed in this property. For example, if the property is a ' then this is the maximum number of characters. The property to get the maximum length of. The maximum length, or null if none if defined. Gets a value indicating whether or not the property can persist Unicode characters. The property to get the Unicode setting for. The Unicode setting, or null if none if defined. Gets a value indicating whether or not this property can be modified before the entity is saved to the database. If , then an exception will be thrown if a value is assigned to this property when it is in the state. If , then any value set will be ignored when it is in the state. The property. Gets a value indicating whether or not this property can be modified after the entity is saved to the database. If , then an exception will be thrown if a new value is assigned to this property after the entity exists in the database. If , then any modification to the property value of an entity that already exists in the database will be ignored. The property. Gets the factory that has been set to generate values for this property, if any. The property to get the value generator factory for. The factory, or null if no factory has been set. Gets the custom set for this property. The property. The converter, or null if none has been set. Gets the type that the property value will be converted to before being sent to the database provider. The property. The provider type, or null if none has been set. Gets the for this property, or null if none is set. The property. The comparer, or null if none has been set. Gets the to use with keys for this property, or null if none is set. The property. The comparer, or null if none has been set. Gets the to use for structural copies for this property, or null if none is set. The property. The comparer, or null if none has been set. Creates a formatted string representation of the given properties such as is useful when throwing exceptions about keys, indexes, etc. that use the properties. The properties to format. If true, then type names are included in the string. The default is false. The string representation. Extension methods for . Gets the being used for properties and navigations of this type. Note that individual properties and navigations can override this access mode. The value returned here will be used for any property or navigation for which no override has been specified. The type for which to get the access mode. The access mode being used, or null if the default access mode is being used. Gets the being used for navigations of this type. Note that individual navigations can override this access mode. The value returned here will be used for any navigation for which no override has been specified. The type for which to get the access mode. The access mode being used, or null if the default access mode is being used. Allows configuration for an entity type to be factored into a separate class, rather than in-line in . Implement this interface, applying configuration for the entity in the method, and then apply the configuration to the model using in . The entity type to be configured. Configures the entity of type . The builder to be used to configure the entity type. Extension methods for . These methods are typically used by database providers (and other extensions). They are generally not used in application code. is used to hide properties that are not intended to be used in application code but can be used in extension methods written by database providers etc. Resolves a service from the exposed from a type that implements . This method is typically used by database providers (and other extensions). It is generally not used in application code. is used to hide properties that are not intended to be used in application code but can be used in extension methods written by database providers etc. The type of service to be resolved. The object exposing the service provider. The requested service. Gets the value from a property that is being hidden using . This method is typically used by database providers (and other extensions). It is generally not used in application code. is used to hide properties that are not intended to be used in application code but can be used in extension methods written by database providers etc. The type of the property being hidden by . The object that exposes the property. The object assigned to the property. Base class for types that support reading and writing annotations. This type is typically used by database providers (and other extensions). It is generally not used in application code. Gets all annotations on the current object. Adds an annotation to this object. Throws if an annotation with the specified name already exists. The key of the annotation to be added. The value to be stored in the annotation. The newly added annotation. Adds an annotation to this object. Throws if an annotation with the specified name already exists. The key of the annotation to be added. The annotation to be added. The added annotation. Sets the annotation stored under the given key. Overwrites the existing annotation if an annotation with the specified name already exists. The key of the annotation to be added. The value to be stored in the annotation. Sets the annotation stored under the given key. Overwrites the existing annotation if an annotation with the specified name already exists. The key of the annotation to be added. The annotation to be set. The annotation being replaced. The annotation that was set. Called when an annotation was set or removed. The key of the set annotation. The annotation set. The old annotation. The annotation that was set. Gets the annotation with the given name, returning null if it does not exist. The key of the annotation to find. The existing annotation if an annotation with the specified name already exists. Otherwise, null. Removes the given annotation from this object. The annotation to remove. The annotation that was removed. Gets the value annotation with the given name, returning null if it does not exist. The key of the annotation to find. The value of the existing annotation if an annotation with the specified name already exists. Otherwise, null. Creates a new annotation. The key of the annotation. The value to be stored in the annotation. The newly created annotation. Gets all annotations on the current object. Extension methods for . Gets the annotation with the given name, throwing if it does not exist. The object to find the annotation on. The key of the annotation to find. The annotation with the specified name. An arbitrary piece of metadata that can be stored on an object that implements . This type is typically used by database providers (and other extensions). It is generally not used in application code. Initializes a new instance of the class. The key of this annotation. The value assigned to this annotation. Gets the key of this annotation. Gets the value assigned to this annotation. Represents options managed by the core of Entity Framework, as opposed to those managed by database providers or extensions. These options are set using . Instances of this class are designed to be immutable. To change an option, call one of the 'With...' methods to obtain a new instance with the option changed. Creates a new set of options with everything set to default values. Called by a derived class constructor when implementing the method. The instance that is being cloned. Information/metadata about the extension. Override this method in a derived class to ensure that any clone created is also of that class. A clone of this instance, which can be modified before being returned as immutable. Creates a new instance with all options the same as for this instance, but with the given option changed. It is unusual to call this method directly. Instead use . The option to change. A new instance with the option changed. Creates a new instance with all options the same as for this instance, but with the given option changed. It is unusual to call this method directly. Instead use . The option to change. A new instance with the option changed. Creates a new instance with all options the same as for this instance, but with the given option changed. It is unusual to call this method directly. Instead use . The option to change. A new instance with the option changed. Creates a new instance with all options the same as for this instance, but with the given option changed. It is unusual to call this method directly. Instead use . The option to change. A new instance with the option changed. Creates a new instance with all options the same as for this instance, but with the given option changed. It is unusual to call this method directly. Instead use . The option to change. A new instance with the option changed. Creates a new instance with all options the same as for this instance, but with the given option changed. It is unusual to call this method directly. Instead use . The option to change. A new instance with the option changed. Creates a new instance with all options the same as for this instance, but with the given option changed. It is unusual to call this method directly. Instead use . The option to change. A new instance with the option changed. Creates a new instance with all options the same as for this instance, but with the given option changed. It is unusual to call this method directly. Instead use . The option to change. A new instance with the option changed. Creates a new instance with all options the same as for this instance, but with the given option changed. It is unusual to call this method directly. Instead use . The service contract. The implementation type to use for the service. A new instance with the option changed. Creates a new instance with all options the same as for this instance, but with the given option changed. It is unusual to call this method directly. Instead use . The option to change. A new instance with the option changed. Creates a new instance with all options the same as for this instance, but with the given option changed. It is unusual to call this method directly. Instead use . The option to change. A new instance with the option changed. Creates a new instance with all options the same as for this instance, but with the given option changed. It is unusual to call this method directly. Instead use . The option to change. A new instance with the option changed. Creates a new instance with all options the same as for this instance, but with the given option changed. It is unusual to call this method directly. Instead use . The option to change. A new instance with the option changed. The option set from the method. The option set from the method. The option set from the method. The option set from the method. The option set from the method. The option set from the method. The option set from the method. The options set from the method. The option set from the method. The option set from the method. The options set from the method. The option set from the method. Adds the services required to make the selected options work. This is used when there is no external and EF is maintaining its own service provider internally. This allows database providers (and other extensions) to register their required services when EF is creating an service provider. The collection to add services to. Gives the extension a chance to validate that all options in the extension are valid. If options are invalid, then an exception will be thrown. The options being validated. Provides access to database related information and operations for a context. Instances of this class are typically obtained from and it is not designed to be directly constructed in your application code. Initializes a new instance of the class. Instances of this class are typically obtained from and it is not designed to be directly constructed in your application code. The context this database API belongs to . Ensures that the database for the context exists. If it exists, no action is taken. If it does not exist then the database and all its schema are created. If the database exists, then no effort is made to ensure it is compatible with the model for this context. Note that this API does not use migrations to create the database. In addition, the database that is created cannot be later updated using migrations. If you are targeting a relational database and using migrations, you can use the DbContext.Database.Migrate() method to ensure the database is created and all migrations are applied. True if the database is created, false if it already existed. Asynchronously ensures that the database for the context exists. If it exists, no action is taken. If it does not exist then the database and all its schema are created. If the database exists, then no effort is made to ensure it is compatible with the model for this context. Note that this API does not use migrations to create the database. In addition, the database that is created cannot be later updated using migrations. If you are targeting a relational database and using migrations, you can use the DbContext.Database.Migrate() method to ensure the database is created and all migrations are applied. A to observe while waiting for the task to complete. A task that represents the asynchronous save operation. The task result contains true if the database is created, false if it already existed. Ensures that the database for the context does not exist. If it does not exist, no action is taken. If it does exist then the database is deleted. Warning: The entire database is deleted, and no effort is made to remove just the database objects that are used by the model for this context. True if the database is deleted, false if it did not exist. Asynchronously ensures that the database for the context does not exist. If it does not exist, no action is taken. If it does exist then the database is deleted. Warning: The entire database is deleted, and no effort is made to remove just the database objects that are used by the model for this context. A to observe while waiting for the task to complete. A task that represents the asynchronous save operation. The task result contains true if the database is deleted, false if it did not exist. Determines whether or not the database is available and can be connected to. Note that being able to connect to the database does not mean that it is up-to-date with regard to schema creation, etc. True if the database is available; false otherwise. Determines whether or not the database is available and can be connected to. Note that being able to connect to the database does not mean that it is up-to-date with regard to schema creation, etc. A to observe while waiting for the task to complete. True if the database is available; false otherwise. Starts a new transaction. A that represents the started transaction. Asynchronously starts a new transaction. A to observe while waiting for the task to complete. A task that represents the asynchronous transaction initialization. The task result contains a that represents the started transaction. Applies the outstanding operations in the current transaction to the database. Discards the outstanding operations in the current transaction. Creates an instance of the configured . An instance. Gets the current being used by the context, or null if no transaction is in use. This property will be null unless one of the 'BeginTransaction' or 'UseTransaction' methods has been called, some of which are available as extension methods installed by EF providers. No attempt is made to obtain a transaction from the current DbConnection or similar. For relational databases, the underlying DbTransaction can be obtained using the 'Microsoft.EntityFrameworkCore.Storage.GetDbTransaction' extension method on the returned . Gets or sets a value indicating whether or not a transaction will be created automatically by if none of the 'BeginTransaction' or 'UseTransaction' methods have been called. Setting this value to false will also disable the for The default value is true, meaning that SaveChanges will always use a transaction when saving changes. Setting this value to false should only be done with caution since the database could be left in a corrupted state if SaveChanges fails. Returns the name of the database provider currently in use. The name is typically the name of the provider assembly. It is usually easier to use a sugar method such as 'IsSqlServer()' instead of calling this method directly. This method can only be used after the has been configured because it is only then that the provider is known. This means that this method cannot be used in because this is where application code sets the provider to use as part of configuring the context. Gets the scoped being used to resolve services. This property is intended for use by extension methods that need to make use of services not directly exposed in the public API surface. 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. 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. Returns a string that represents the current object. A string that represents the current object. Determines whether the specified object is equal to the current object. The object to compare with the current object. true if the specified object is equal to the current object; otherwise, false. Serves as the default hash function. A hash code for the current object. Identifies the that a class belongs to. For example, this attribute is used to identify which context a migration applies to. Initializes a new instance of the class. The associated context. Gets the associated context. Information/metadata for an . Creates a new instance containing info/metadata for the given extension. The extension. The extension for which this instance contains metadata. True if the extension is a database provider; false otherwise. A message fragment for logging typically containing information about any useful non-default options that have been configured. Returns a hash code created from any options that would cause a new to be needed. Most extensions do not have any such options and should return zero. A hash over options that require a new service provider when changed. Populates a dictionary of information that may change between uses of the extension such that it can be compared to a previous configuration for this option and differences can be logged. The dictionary key should be prefixed by the extension name. For example, "SqlServer:". The dictionary to populate. Marks an API as internal to Entity Framework Core. These APIs are 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 such APIs 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. A builder API designed for database providers to use when registering services. Providers should create an instance of this class, use its methods to register services, and then call to fill out the remaining Entity Framework services. Relational providers should use 'EntityFrameworkRelationalServicesBuilder instead. Entity Framework ensures that services are registered with the appropriate scope. In some cases a provider may register a service with a different scope, but great care must be taken that all its dependencies can handle the new scope, and that it does not cause issue for services that depend on it. 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. This dictionary is exposed for testing and provider-validation only. It should not be used from application code. Used by database providers to create a new for registration of provider services. Relational providers should use 'EntityFrameworkRelationalServicesBuilder'. The collection to which services will be registered. Access to the underlying . 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. Database providers should call this method for access to the underlying such that provider-specific services can be registered. Note that implementations of Entity Framework services should be registered directly on the and not through this method. The underlying map to which provider services should be added. This builder, such that further calls can be chained. Registers default implementations of all services not already registered by the provider. Database providers must call this method as the last step of service registration--that is, after all provider services have been registered. This builder, such that further calls can be chained. Adds an implementation of an Entity Framework service only if one has not already been registered. The scope of the service is automatically defined by Entity Framework. The contract for the service. The concrete type that implements the service. This builder, such that further calls can be chained. Adds an implementation of an Entity Framework service only if one has not already been registered. The scope of the service is automatically defined by Entity Framework. The contract for the service. The concrete type that implements the service. This builder, such that further calls can be chained. Adds a factory for an Entity Framework service only if one has not already been registered. The scope of the service is automatically defined by Entity Framework. The contract for the service. The factory that will create the service instance. This builder, such that further calls can be chained. Adds a factory for an Entity Framework service only if one has not already been registered. The scope of the service is automatically defined by Entity Framework. The contract for the service. The concrete type that implements the service. The factory that will create the service instance. This builder, such that further calls can be chained. Adds a factory for an Entity Framework service only if one has not already been registered. The scope of the service is automatically defined by Entity Framework. The contract for the service. The concrete type that implements the service. The factory that will create the service instance. This builder, such that further calls can be chained. Adds an implementation of an Entity Framework service only if one has not already been registered. This method can only be used for singleton services. The contract for the service. The implementation of the service. This builder, such that further calls can be chained. Adds an implementation of an Entity Framework service only if one has not already been registered. This method can only be used for singleton services. The contract for the service. The implementation of the service. This builder, such that further calls can be chained. 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. 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. 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. 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. Extension methods for types. This type is typically used by database providers (and other extensions). It is generally not used in application code. Creates a printable string representation of the given expression. The expression. An optional limit to the number of characters included. The printable representation. Creates a that represents accessing either a field or a property. An that represents the object that the member belongs to. The that describes the field or property to be accessed. The that results from calling the appropriate factory method. Creates a that represents an assignment operation. The member to which assignment will be made. The value that will be assigned. The representing the assignment binding. If the given a method-call expression represents a call to , then this method extracts the entity expression and property name. The method-call expression for The extracted entity access expression. The accessed property name. True if the method-call was for ; false otherwise. Gets the represented by a simple property-access expression. This method is typically used to parse property access lambdas from fluent APIs. The expression. The . Returns a list of extracted from the given simple . Only simple expressions are supported, such as those used to reference a property. This type is typically used by database providers (and other extensions). It is generally not used in application code. This method is typically used by database providers (and other extensions). It is generally not used in application code. The expression. The list of referenced properties. Returns a new expression with any see or nodes removed from the head of the given expression tree/ This method is typically used by database providers (and other extensions). It is generally not used in application code. The expression. A new expression with converts at the head removed. A class that exposes annotations. Annotations allow for arbitrary metadata to be stored on an object. This interface is typically used by database providers (and other extensions). It is generally not used in application code. Gets the value annotation with the given name, returning null if it does not exist. The name of the annotation to find. The value of the existing annotation if an annotation with the specified name already exists. Otherwise, null. Gets the annotation with the given name, returning null if it does not exist. The name of the annotation to find. The existing annotation if an annotation with the specified name already exists. Otherwise, null. Gets all annotations on the current object. An arbitrary piece of metadata that can be stored on an object that implements . This interface is typically used by database providers (and other extensions). It is generally not used in application code. Gets the key of this annotation. Gets the value assigned to this annotation. Used by EF internal code and database providers to detect concurrent access to non-thread-safe resources. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Call to enter the critical section. A disposer that will exit the critical section when disposed. Options set at the singleton level to control core options. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Reflects the option set by . Registered as a scoped service in Entity Framework's internal service provider to provide access to the current being used. This type is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. The currently being used. The options to be used by a . You normally override or use a to create instances of classes that implement this interface, they are not designed to be directly created in your application code. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Gets the extensions that store the configured options. Gets the extension of the specified type. Returns null if no extension of the specified type is configured. The type of the extension to get. The extension, or null if none was found. Explicitly implemented by to hide methods that are used by database provider extension methods but not intended to be called by application developers. This interface is typically used by database providers (and other extensions). It is generally not used in application code. Adds the given extension to the options. If an existing extension of the same type already exists, it will be replaced. This property is intended for use by extension methods to configure the context. It is not intended to be used in application code. The type of extension to be added. The extension to be added. Interface for extensions that are stored in . This interface is typically used by database providers (and other extensions). It is generally not used in application code. Information/metadata about the extension. Adds the services required to make the selected options work. This is used when there is no external and EF is maintaining its own service provider internally. This allows database providers (and other extensions) to register their required services when EF is creating an service provider. The collection to add services to. Gives the extension a chance to validate that all options in the extension are valid. Most extensions do not have invalid combinations and so this will be a no-op. If options are invalid, then an exception should be thrown. The options being validated. This interface is explicitly implemented by type to hide properties that are not intended to be used in application code but can be used in extension methods written by database providers etc. This interface is typically used by database providers (and other extensions). It is generally not used in application code. The type of the property being hidden. Gets the value of the property being hidden. Creates keys that uniquely identifies the model for a given context. This is used to store and lookup a cached model for a given context. This interface is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Gets the model cache key for a given context. The context to get the model cache key for. The created key. Performs additional configuration of the model in addition to what is discovered by convention. This interface is typically used by database providers (and other extensions). It is generally not used in application code. When replacing this service consider deriving the implementation from or 'RelationalModelCustomizer' to preserve the default behavior. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Builds the model for a given context. If any instance data from is used when building the model, then the implementation of also needs to be updated to ensure the model is cached correctly. The builder being used to construct the model. The context instance that the model is being created for. Produces an based on a context. This is typically implemented by database providers to ensure that any conventions and validation specific to their database are used. This interface is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Gets the model to be used. The context the model is being produced for. The convention set to use when creating the model. The model to be used. Validates a model after it is built. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Validates a model, throwing an exception if any errors are found. The model to validate. The logger to use. 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. 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. 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. 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. 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. 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. This interface must be implemented by any service that needs to be reset between different uses of the same in different pools. This type is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is and multiple registrations are allowed. This means that each instance will use its own set of instances of this service. The implementations may depend on other services registered with any lifetime. The implementations do not need to be thread-safe. Resets the service so that it can be used from the pool. Resets the service so that it can be used from the pool. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. Implemented by any class that represents options that can only be set at the singleton level. The service lifetime is and multiple registrations are allowed. This means a single instance of each service is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Initializes the singleton options from the given . Validates that the options in given have not changed when compared to the options already set here, and throws if they have. Extension methods for . This type is typically used by database providers (and other extensions). It is generally not used in application code. Returns true if the given method is . The method. True if the method is ; false otherwise. A key that uniquely identifies the model for a given context. This is used to store and lookup a cached model for a given context. This default implementation uses the context type as they key, thus assuming that all contexts of a given type have the same model. This type is typically used by database providers (and other extensions). It is generally not used in application code. Initializes a new instance of the class. The context instance that this key is for. Determines if this key is equivalent to a given key (i.e. if they are for the same context type). The key to compare this key to. True if the key is for the same context type, otherwise false. Determines if this key is equivalent to a given object (i.e. if they are keys for the same context type). The object to compare this key to. True if the object is a and is for the same context type, otherwise false. Gets the hash code for the key. The hash code for the key. Creates keys that uniquely identifies the model for a given context. This is used to store and lookup a cached model for a given context. This default implementation uses the context type as they key, thus assuming that all contexts of a given type have the same model. This type is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Initializes a new instance of the class. Parameter object containing dependencies for this service. Gets the model cache key for a given context. The context to get the model cache key for. The created key. Service dependencies parameter class for This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is . This means a single instance of each service is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Creates the service dependencies parameter object for a . Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. 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. Builds the model for a given context. This implementation builds the model by calling on the context. This type is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Initializes a new instance of the class. Parameter object containing dependencies for this service. Dependencies used to create a Performs additional configuration of the model in addition to what is discovered by convention. This default implementation builds the model for a given context by calling on the context. The builder being used to construct the model. The context instance that the model is being created for. Service dependencies parameter class for This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is . This means a single instance of each service is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Creates the service dependencies parameter object for a . Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. 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. Gets the that will locate the properties on the derived context. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. An implementation of that produces a model based on the properties exposed on the context. The model is cached to avoid recreating it every time it is requested. This type is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Creates a new instance. The dependencies to use. Dependencies used to create a Returns the model from the cache, or creates a model if it is not present in the cache. The context the model is being produced for. The convention set to use when creating the model. The model to be used. Creates the model. This method is called when the model was not found in the cache. The context the model is being produced for. The convention set to use when creating the model. The model to be used. Service dependencies parameter class for This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is . This means a single instance of each service is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Creates the service dependencies parameter object for a . 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. Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. Gets the that will perform additional configuration of the model in addition to what is discovered by convention. Gets the that will create keys used to store and lookup models the model cache. Gets the that will be used to cache models. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. The validator that enforces core rules common for all providers. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Creates a new instance of . Parameter object containing dependencies for this service. Dependencies used to create a Validates a model, throwing an exception if any errors are found. The model to validate. The logger to use. Validates relationships. The model. The logger to use. Validates property mappings. The model. The logger to use. Validates that no attempt is made to ignore inherited properties. The model. The logger to use. Validates that the model does not contain any entity types without a corresponding CLR type. The model to validate. The logger to use. Validates the mapping/configuration of shadow keys in the model. The model to validate. The logger to use. Validates the mapping/configuration of mutable in the model. The model to validate. The logger to use. Validates the mapping/configuration of the model for cycles. The model to validate. The logger to use. Validates the mapping/configuration of primary key nullability in the model. The model to validate. The logger to use. Validates the mapping/configuration of inheritance in the model. The model to validate. The logger to use. Validates the mapping/configuration of inheritance in the model. The model to validate. The logger to use. Validates the mapping/configuration of change tracking in the model. The model to validate. The logger to use. Validates the mapping/configuration of ownership in the model. The model to validate. The logger to use. Validates the mapping/configuration of foreign keys in the model. The model to validate. The logger to use. Validates the mapping/configuration of defining navigations in the model. The model to validate. The logger to use. Validates the mapping/configuration of properties mapped to fields in the model. The model to validate. The logger to use. Validates the type mapping of properties the model. The model to validate. The logger to use. Validates the mapping/configuration of entity types without keys in the model. The model to validate. The logger to use. Validates the mapping/configuration of query filters in the model. The model to validate. The logger to use. Validates the mapping/configuration of defining queries in the model. The model to validate. The logger to use. Validates the mapping/configuration of data (e.g. seed data) in the model. The model to validate. The logger to use. Logs all shadow properties that were created because there was no matching CLR member. The model to validate. The logger to use. Service dependencies parameter class for This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is . This means a single instance of each service is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Creates the service dependencies parameter object for a . This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. 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. The type mapper. The member classifier. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Provides a map over a that allows entries to be conditionally added or re-written without requiring linear scans of the service collection each time this is done. Note that the collection should not be modified without in other ways while it is being managed by the map. The collection can be used in the normal way after modifications using the map have been completed. Creates a new to operate on the given . The collection to work with. The underlying . Adds a service implemented by the given concrete type if no service for the given service type has already been registered. The contract for the service. The concrete type that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given concrete type if no service for the given service type has already been registered. The contract for the service. The concrete type that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given concrete type if no service for the given service type has already been registered. The contract for the service. The concrete type that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given concrete type if no service for the given service type has already been registered. The contract for the service. The concrete type that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given concrete type if no service for the given service type has already been registered. The contract for the service. The concrete type that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given concrete type if no service for the given service type has already been registered. The contract for the service. The concrete type that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given concrete type if no service for the given service type has already been registered. The contract for the service. The concrete type that implements the service. The service lifetime. The map, such that further calls can be chained. Adds a service implemented by the given factory if no service for the given service type has already been registered. The contract for the service. The factory that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given factory if no service for the given service type has already been registered. The contract for the service. The factory that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given factory if no service for the given service type has already been registered. The contract for the service. The factory that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given factory if no service for the given service type has already been registered. The contract for the service. The concrete type that the given factory creates. The factory that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given factory if no service for the given service type has already been registered. The contract for the service. The concrete type that the given factory creates. The factory that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given factory if no service for the given service type has already been registered. The contract for the service. The concrete type that the given factory creates. The factory that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given factory if no service for the given service type has already been registered. The contract for the service. The factory that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given factory if no service for the given service type has already been registered. The contract for the service. The factory that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given factory if no service for the given service type has already been registered. The contract for the service. The factory that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given factory if no service for the given service type has already been registered. The contract for the service. The factory that implements the service. The service lifetime. The map, such that further calls can be chained. Adds a service implemented by the given instance if no service for the given service type has already been registered. The contract for the service. The object that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given instance if no service for the given service type has already been registered. The contract for the service. The object that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given concrete type to the list of services that implement the given contract. The service is only added if the collection contains no other registration for the same service and implementation type. The contract for the service. The concrete type that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given concrete type to the list of services that implement the given contract. The service is only added if the collection contains no other registration for the same service and implementation type. The contract for the service. The concrete type that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given concrete type to the list of services that implement the given contract. The service is only added if the collection contains no other registration for the same service and implementation type. The contract for the service. The concrete type that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given concrete type to the list of services that implement the given contract. The service is only added if the collection contains no other registration for the same service and implementation type. The contract for the service. The concrete type that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given concrete type to the list of services that implement the given contract. The service is only added if the collection contains no other registration for the same service and implementation type. The contract for the service. The concrete type that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given concrete type to the list of services that implement the given contract. The service is only added if the collection contains no other registration for the same service and implementation type. The contract for the service. The concrete type that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given concrete type to the list of services that implement the given contract. The service is only added if the collection contains no other registration for the same service and implementation type. The contract for the service. The concrete type that implements the service. The service lifetime. The map, such that further calls can be chained. Adds a service implemented by the given factory to the list of services that implement the given contract. The service is only added if the collection contains no other registration for the same service and implementation type. The contract for the service. The concrete type that implements the service. The factory that implements this service. The map, such that further calls can be chained. Adds a service implemented by the given factory to the list of services that implement the given contract. The service is only added if the collection contains no other registration for the same service and implementation type. The contract for the service. The concrete type that implements the service. The factory that implements this service. The map, such that further calls can be chained. Adds a service implemented by the given factory to the list of services that implement the given contract. The service is only added if the collection contains no other registration for the same service and implementation type. The contract for the service. The concrete type that implements the service. The factory that implements this service. The map, such that further calls can be chained. Adds a service implemented by the given factory to the list of services that implement the given contract. The service is only added if the collection contains no other registration for the same service and implementation type. The contract for the service. The concrete type that implements the service. The factory that implements this service. The service lifetime. The map, such that further calls can be chained. Adds a service implemented by the given instance to the list of services that implement the given contract. The service is only added if the collection contains no other registration for the same service and implementation type. The contract for the service. The object that implements the service. The map, such that further calls can be chained. Adds a service implemented by the given instance to the list of services that implement the given contract. The service is only added if the collection contains no other registration for the same service and implementation type. The contract for the service. The object that implements the service. The map, such that further calls can be chained. Extension methods for instances. These extensions are typically used by database providers (and other extensions). They are generally not used in application code. Generates a short, human-readable name of the type such as is suitable for exception messages, etc. Notes that this name should be used for display purposes only. It is not the same string as the entity type name in the model. This method is typically used by database providers (and other extensions). It is generally not used in application code. The type. The human-readable name. Provides methods for manipulating string identifiers. Creates a unique identifier by appending a number to the given string. The type of the object the identifier maps to. The base identifier. A dictionary where the identifier will be used as a key. The maximum length of the identifier. A unique identifier. Creates a unique identifier by appending a number to the given string. The type of the key that contains the identifier. The type of the object the identifier maps to. The base identifier. A dictionary where the identifier will be used as part of the key. Creates the key object from an identifier. The maximum length of the identifier. A unique identifier. Ensures the given identifier is shorter than the given length by removing the extra characters from the end. The identifier to shorten. The maximum length of the identifier. An optional number that will be appended to the identifier. The shortened identifier. Allows configuration for a query type to be factored into a separate class, rather than in-line in . Implement this interface, applying configuration for the query in the method, and then apply the configuration to the model using in . The query type to be configured. Configures the query of type . The builder to be used to configure the query type. Provides a simple API for configuring a relationship where configuration began on an end of the relationship with a collection that contains instances of another entity type. Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. 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. 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. 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. 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. 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. 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. Gets the internal builder being used to configure the relationship. This property is intended for use by extension methods that need to make use of services not directly exposed in the public API surface. Configures this as a one-to-many relationship. Note that calling this method with no parameters will explicitly configure this side of the relationship to use no navigation property, even if such a property exists on the entity type. If the navigation property is to be used, then it must be specified. The name of the reference navigation property on the other end of this relationship. If null or not specified, then there is no navigation property on the other end of the relationship. An object to further configure the relationship. 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. 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. Returns a string that represents the current object. A string that represents the current object. Determines whether the specified object is equal to the current object. The object to compare with the current object. true if the specified object is equal to the current object; otherwise, false. Serves as the default hash function. A hash code for the current object. Provides a simple API for configuring a relationship where configuration began on an end of the relationship with a collection that contains instances of another entity type. Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. The entity type to be configured. The entity type that this relationship targets. 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. 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. Configures this as a one-to-many relationship. The name of the reference navigation property on the other end of this relationship. If null, there is no navigation property on the other end of the relationship. An object to further configure the relationship. Configures this as a one-to-many relationship. Note that calling this method with no parameters will explicitly configure this side of the relationship to use no navigation property, even if such a property exists on the entity type. If the navigation property is to be used, then it must be specified. A lambda expression representing the reference navigation property on the other end of this relationship (post => post.Blog). If no property is specified, the relationship will be configured without a navigation property on the other end of the relationship. An object to further configure the relationship. Allows further configuration of model data. Returns a string that represents the current object. A string that represents the current object. Determines whether the specified object is equal to the current object. The object to compare with the current object. true if the specified object is equal to the current object; otherwise, false. Serves as the default hash function. A hash code for the current object. Allows further configuration of model data. The entity type of the data. Provides a simple API surface for setting discriminator values. 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. 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. Configures the default discriminator value to use. The discriminator value. The same builder so that multiple calls can be chained. Configures the discriminator value to use for entities of the given generic type. The entity type for which a discriminator value is being set. The discriminator value. The same builder so that multiple calls can be chained. Configures the discriminator value to use for entities of the given type. The entity type for which a discriminator value is being set. The discriminator value. The same builder so that multiple calls can be chained. Configures the discriminator value to use for entities of the given type. The name of the entity type for which a discriminator value is being set. The discriminator value. The same builder so that multiple calls can be chained. Returns a string that represents the current object. A string that represents the current object. Determines whether the specified object is equal to the current object. The object to compare with the current object. true if the specified object is equal to the current object; otherwise, false. Serves as the default hash function. A hash code for the current object. Provides a simple API surface for setting discriminator values. The type of the discriminator property. 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. Configures the default discriminator value to use. The discriminator value. The same builder so that multiple calls can be chained. Configures the discriminator value to use for entities of the given generic type. The entity type for which a discriminator value is being set. The discriminator value. The same builder so that multiple calls can be chained. Configures the discriminator value to use for entities of the given type. The entity type for which a discriminator value is being set. The discriminator value. The same builder so that multiple calls can be chained. Configures the discriminator value to use for entities of the given type. The name of the entity type for which a discriminator value is being set. The discriminator value. The same builder so that multiple calls can be chained. Provides a simple API for configuring an . Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. 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. Gets the internal builder being used to configure the entity type. The entity type being configured. Adds or updates an annotation on the entity type. If an annotation with the key specified in already exists its value will be updated. The key of the annotation to be added or updated. The value to be stored in the annotation. The same builder instance so that multiple configuration calls can be chained. Sets the base type of this entity type in an inheritance hierarchy. The name of the base type or null to indicate no base type. The same builder instance so that multiple configuration calls can be chained. Sets the base type of this entity type in an inheritance hierarchy. The base type or null to indicate no base type. The same builder instance so that multiple configuration calls can be chained. Sets the properties that make up the primary key for this entity type. The names of the properties that make up the primary key. An object that can be used to configure the primary key. Creates an alternate key in the model for this entity type if one does not already exist over the specified properties. This will force the properties to be read-only. Use to specify uniqueness in the model that does not force properties to be read-only. The names of the properties that make up the key. An object that can be used to configure the key. Configures the entity type to have no keys. It will only be usable for queries. The same builder instance so that multiple configuration calls can be chained. Returns an object that can be used to configure a property of the entity type. If no property with the given name exists, then a new property will be added. When adding a new property with this overload the property name must match the name of a CLR property or field on the entity type. This overload cannot be used to add a new shadow state property. The name of the property to be configured. An object that can be used to configure the property. Returns an object that can be used to configure a property of the entity type. If no property with the given name exists, then a new property will be added. When adding a new property, if a property with the same name exists in the entity class then it will be added to the model. If no property exists in the entity class, then a new shadow state property will be added. A shadow state property is one that does not have a corresponding property in the entity class. The current value for the property is stored in the rather than being stored in instances of the entity class. The type of the property to be configured. The name of the property to be configured. An object that can be used to configure the property. Returns an object that can be used to configure a property of the entity type. If no property with the given name exists, then a new property will be added. When adding a new property, if a property with the same name exists in the entity class then it will be added to the model. If no property exists in the entity class, then a new shadow state property will be added. A shadow state property is one that does not have a corresponding property in the entity class. The current value for the property is stored in the rather than being stored in instances of the entity class. The type of the property to be configured. The name of the property to be configured. An object that can be used to configure the property. Excludes the given property from the entity type. This method is typically used to remove properties and navigations from the entity type that were added by convention. The name of the property to be removed from the entity type. Specifies a LINQ predicate expression that will automatically be applied to any queries targeting this entity type. The LINQ predicate expression. The same builder instance so that multiple configuration calls can be chained. Configures an index on the specified properties. If there is an existing index on the given set of properties, then the existing index will be returned for configuration. The names of the properties that make up the index. An object that can be used to configure the index. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The name of the entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An object that can be used to configure the owned type and the relationship. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An object that can be used to configure the owned type and the relationship. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The name of the entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An action that performs configuration of the owned type and the relationship. An object that can be used to configure the entity type. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An action that performs configuration of the owned type and the relationship. An object that can be used to configure the entity type. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The name of the entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An object that can be used to configure the owned type and the relationship. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An object that can be used to configure the owned type and the relationship. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The name of the entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An action that performs configuration of the owned type and the relationship. An object that can be used to configure the entity type. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An action that performs configuration of the owned type and the relationship. An object that can be used to configure the entity type. Configures a relationship where this entity type has a reference that points to a single instance of the other type in the relationship. Note that calling this method with no parameters will explicitly configure this side of the relationship to use no navigation property, even if such a property exists on the entity type. If the navigation property is to be used, then it must be specified. After calling this method, you should chain a call to or to fully configure the relationship. Calling just this method without the chained call will not produce a valid relationship. The name of the entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. If no property is specified, the relationship will be configured without a navigation property on this end. An object that can be used to configure the relationship. Configures a relationship where this entity type has a reference that points to a single instance of the other type in the relationship. Note that calling this method with no parameters will explicitly configure this side of the relationship to use no navigation property, even if such a property exists on the entity type. If the navigation property is to be used, then it must be specified. After calling this method, you should chain a call to or to fully configure the relationship. Calling just this method without the chained call will not produce a valid relationship. The entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. If no property is specified, the relationship will be configured without a navigation property on this end. An object that can be used to configure the relationship. Configures a relationship where this entity type has a reference that points to a single instance of the other type in the relationship. After calling this method, you should chain a call to or to fully configure the relationship. Calling just this method without the chained call will not produce a valid relationship. The name of the reference navigation property on this entity type that represents the relationship. The navigation must be a CLR property on the entity type. An object that can be used to configure the relationship. Configures a relationship where this entity type has a collection that contains instances of the other type in the relationship. After calling this method, you should chain a call to to fully configure the relationship. Calling just this method without the chained call will not produce a valid relationship. The name of the entity type that this relationship targets. The name of the collection navigation property on this entity type that represents the relationship. If no property is specified, the relationship will be configured without a navigation property on this end. An object that can be used to configure the relationship. Configures a relationship where this entity type has a collection that contains instances of the other type in the relationship. After calling this method, you should chain a call to to fully configure the relationship. Calling just this method without the chained call will not produce a valid relationship. The name of the collection navigation property on this entity type that represents the relationship. The navigation must be a CLR property on the entity type. An object that can be used to configure the relationship. Configures a relationship where this entity type has a collection that contains instances of the other type in the relationship. Note that calling this method with no parameters will explicitly configure this side of the relationship to use no navigation property, even if such a property exists on the entity type. If the navigation property is to be used, then it must be specified. After calling this method, you should chain a call to to fully configure the relationship. Calling just this method without the chained call will not produce a valid relationship. The entity type that this relationship targets. The name of the collection navigation property on this entity type that represents the relationship. If no property is specified, the relationship will be configured without a navigation property on this end. An object that can be used to configure the relationship. 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. 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. Configures the to be used for this entity type. This strategy indicates how the context detects changes to properties for an instance of the entity type. The change tracking strategy to be used. The same builder instance so that multiple configuration calls can be chained. Sets the to use for all properties of this entity type. By default, the backing field, if one is found by convention or has been specified, is used when new objects are constructed, typically when entities are queried from the database. Properties are used for all other accesses. Calling this method will change that behavior for all properties of this entity type as described in the enum. Calling this method overrides for all properties of this entity type any access mode that was set on the model. The to use for properties of this entity type. The same builder instance so that multiple configuration calls can be chained. Configures this entity to have seed data. It is used to generate data motion migrations. An array of seed data represented by anonymous types. An object that can be used to configure the model data. Configures this entity to have seed data. It is used to generate data motion migrations. An array of seed data represented by anonymous types. An object that can be used to configure the model data. Configures the discriminator property used to identify the entity type in the store. A builder that allows the discriminator property to be configured. Configures the discriminator property used to identify the entity type in the store. The name of the discriminator property. The type of values stored in the discriminator property. A builder that allows the discriminator property to be configured. Configures the discriminator property used to identify the entity type in the store. The type of values stored in the discriminator property. The name of the discriminator property. A builder that allows the discriminator property to be configured. Configures the entity type as having no discriminator property. The same builder instance so that multiple configuration calls can be chained. Returns a string that represents the current object. A string that represents the current object. Determines whether the specified object is equal to the current object. The object to compare with the current object. true if the specified object is equal to the current object; otherwise, false. Serves as the default hash function. A hash code for the current object. Provides a simple API for configuring an . Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. The entity type being configured. 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. Adds or updates an annotation on the entity type. If an annotation with the key specified in already exists its value will be updated. The key of the annotation to be added or updated. The value to be stored in the annotation. The same typeBuilder instance so that multiple configuration calls can be chained. Sets the base type of this entity type in an inheritance hierarchy. The name of the base type or null to indicate no base type. The same builder instance so that multiple configuration calls can be chained. Sets the base type of this entity type in an inheritance hierarchy. The base type or null to indicate no base type. The same builder instance so that multiple configuration calls can be chained. Sets the base type of this entity type in an inheritance hierarchy. The base type or null to indicate no base type. The same builder instance so that multiple configuration calls can be chained. Sets the properties that make up the primary key for this entity type. A lambda expression representing the primary key property(s) (blog => blog.Url). If the primary key is made up of multiple properties then specify an anonymous type including the properties (post => new { post.Title, post.BlogId }). An object that can be used to configure the primary key. Creates an alternate key in the model for this entity type if one does not already exist over the specified properties. This will force the properties to be read-only. Use to specify uniqueness in the model that does not force properties to be read-only. A lambda expression representing the key property(s) (blog => blog.Url). If the key is made up of multiple properties then specify an anonymous type including the properties (post => new { post.Title, post.BlogId }). An object that can be used to configure the key. Configures the entity type to have no keys. It will only be usable for queries. The same builder instance so that multiple configuration calls can be chained. Returns an object that can be used to configure a property of the entity type. If the specified property is not already part of the model, it will be added. A lambda expression representing the property to be configured ( blog => blog.Url). An object that can be used to configure the property. Excludes the given property from the entity type. This method is typically used to remove properties or navigations from the entity type that were added by convention. A lambda expression representing the property to be ignored (blog => blog.Url). Excludes the given property from the entity type. This method is typically used to remove properties or navigations from the entity type that were added by convention. The name of the property to be removed from the entity type. Specifies a LINQ predicate expression that will automatically be applied to any queries targeting this entity type. The LINQ predicate expression. The same builder instance so that multiple configuration calls can be chained. Configures a query used to provide data for a keyless entity type. The query that will provide the underlying data for the keyless entity type. The same builder instance so that multiple calls can be chained. Configures an index on the specified properties. If there is an existing index on the given set of properties, then the existing index will be returned for configuration. A lambda expression representing the property(s) to be included in the index (blog => blog.Url). If the index is made up of multiple properties then specify an anonymous type including the properties (post => new { post.Title, post.BlogId }). An object that can be used to configure the index. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An object that can be used to configure the owned type and the relationship. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. A lambda expression representing the reference navigation property on this entity type that represents the relationship (customer => customer.Address). An object that can be used to configure the owned type and the relationship. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An action that performs configuration of the owned type and the relationship. An object that can be used to configure the entity type. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. A lambda expression representing the reference navigation property on this entity type that represents the relationship (customer => customer.Address). An action that performs configuration of the owned type and the relationship. An object that can be used to configure the entity type. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An object that can be used to configure the owned type and the relationship. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. A lambda expression representing the reference navigation property on this entity type that represents the relationship (customer => customer.Address). An object that can be used to configure the owned type and the relationship. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An action that performs configuration of the owned type and the relationship. An object that can be used to configure the entity type. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. A lambda expression representing the reference navigation property on this entity type that represents the relationship (customer => customer.Address). An action that performs configuration of the owned type and the relationship. An object that can be used to configure the entity type. Configures a relationship where this entity type has a reference that points to a single instance of the other type in the relationship. Note that calling this method with no parameters will explicitly configure this side of the relationship to use no navigation property, even if such a property exists on the entity type. If the navigation property is to be used, then it must be specified. After calling this method, you should chain a call to or to fully configure the relationship. Calling just this method without the chained call will not produce a valid relationship. The entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. If no property is specified, the relationship will be configured without a navigation property on this end. An object that can be used to configure the relationship. Configures a relationship where this entity type has a reference that points to a single instance of the other type in the relationship. Note that calling this method with no parameters will explicitly configure this side of the relationship to use no navigation property, even if such a property exists on the entity type. If the navigation property is to be used, then it must be specified. After calling this method, you should chain a call to or to fully configure the relationship. Calling just this method without the chained call will not produce a valid relationship. The entity type that this relationship targets. A lambda expression representing the reference navigation property on this entity type that represents the relationship (post => post.Blog). If no property is specified, the relationship will be configured without a navigation property on this end. An object that can be used to configure the relationship. Configures a relationship where this entity type has a collection that contains instances of the other type in the relationship. Note that calling this method with no parameters will explicitly configure this side of the relationship to use no navigation property, even if such a property exists on the entity type. If the navigation property is to be used, then it must be specified. After calling this method, you should chain a call to to fully configure the relationship. Calling just this method without the chained call will not produce a valid relationship. The entity type that this relationship targets. The name of the collection navigation property on this entity type that represents the relationship. If no property is specified, the relationship will be configured without a navigation property on this end. An object that can be used to configure the relationship. Configures a relationship where this entity type has a collection that contains instances of the other type in the relationship. Note that calling this method with no parameters will explicitly configure this side of the relationship to use no navigation property, even if such a property exists on the entity type. If the navigation property is to be used, then it must be specified. After calling this method, you should chain a call to to fully configure the relationship. Calling just this method without the chained call will not produce a valid relationship. The entity type that this relationship targets. A lambda expression representing the collection navigation property on this entity type that represents the relationship (blog => blog.Posts). If no property is specified, the relationship will be configured without a navigation property on this end. An object that can be used to configure the relationship. Configures the to be used for this entity type. This strategy indicates how the context detects changes to properties for an instance of the entity type. The change tracking strategy to be used. The same builder instance so that multiple configuration calls can be chained. Sets the to use for all properties of this entity type. By default, the backing field, if one is found by convention or has been specified, is used when new objects are constructed, typically when entities are queried from the database. Properties are used for all other accesses. Calling this method will change that behavior for all properties of this entity type as described in the enum. Calling this method overrides for all properties of this entity type any access mode that was set on the model. The to use for properties of this entity type. The same builder instance so that multiple configuration calls can be chained. Configures this entity to have seed data. It is used to generate data motion migrations. An array of seed data of the same type as the entity. An object that can be used to configure the model data. Configures this entity to have seed data. It is used to generate data motion migrations. An array of seed data of the same type as the entity. An object that can be used to configure the model data. Configures this entity to have seed data. It is used to generate data motion migrations. An array of seed data represented by anonymous types. An object that can be used to configure the model data. Configures this entity to have seed data. It is used to generate data motion migrations. An array of seed data represented by anonymous types. An object that can be used to configure the model data. Configures the discriminator property used to identify the entity type in the store. The type of values stored in the discriminator property. A lambda expression representing the property to be used as the discriminator ( blog => blog.Discriminator). A builder that allows the discriminator property to be configured. Configures the entity type as having no discriminator property. The same builder instance so that multiple configuration calls can be chained. Provides a simple API surface for configuring an from conventions. This interface is typically used by database providers (and other extensions). It is generally not used in application code. The annotatable item being configured. The model builder. Sets the annotation stored under the given name. Overwrites the existing annotation if an annotation with the specified name already exists with same or lower . The name of the annotation to be set. The value to be stored in the annotation. Indicates whether the configuration was specified using a data annotation. An to continue configuration if the annotation was set, null otherwise. Sets or removes the annotation stored under the given name. The name of the annotation to be set. The value to be stored in the annotation. null to remove the annotations. Indicates whether the configuration was specified using a data annotation. An to continue configuration if the annotation was set or removed, null otherwise. Returns a value indicating whether an annotation with the given name and value can be set from this configuration source. The name of the annotation to be added. The value to be stored in the annotation. Indicates whether the configuration was specified using a data annotation. true if the annotation can be set, false otherwise. Removes the annotation with the given name from this object. The name of the annotation to remove. Indicates whether the configuration was specified using a data annotation. An to continue configuration if the annotation was set, null otherwise. Returns a value indicating whether an annotation with the given name can be removed using this configuration source. The name of the annotation to remove. Indicates whether the configuration was specified using a data annotation. true if the annotation can be removed, false otherwise. Provides a simple API surface for setting discriminator values from conventions. Configures the discriminator value to use. The discriminator value. Indicates whether the configuration was specified using a data annotation. The same builder so that multiple calls can be chained. Configures the discriminator value to use for entities of the given type. The entity type for which a discriminator value is being set. The discriminator value. Indicates whether the configuration was specified using a data annotation. The same builder so that multiple calls can be chained. Returns a value indicating whether the discriminator value can be set from this configuration source. The discriminator value. Indicates whether the configuration was specified using a data annotation. true if the discriminator value can be set from this configuration source. Returns a value indicating whether the discriminator value can be set from this configuration source. The entity type for which a discriminator value is being set. The discriminator value. Indicates whether the configuration was specified using a data annotation. true if the discriminator value can be set from this configuration source. Provides a simple API surface for configuring an from conventions. This interface is typically used by database providers (and other extensions). It is generally not used in application code. The entity type being configured. Sets the base type of this entity type in an inheritance hierarchy. The base entity type or null to indicate no base type. Indicates whether the configuration was specified using a data annotation. The same builder instance if the base type was configured, null otherwise. Returns a value indicating whether the given type can be set as the base type of this entity type. The base entity type or null to indicate no base type. Indicates whether the configuration was specified using a data annotation. true if the given type can be set as the base type of this entity type. Returns an object that can be used to configure the property with the given name. If no matching property exists, then a new property will be added. The type of value the property will hold. The name of the property to be configured. Indicates whether the type configuration source should be set. Indicates whether the configuration was specified using a data annotation. An object that can be used to configure the property if it exists on the entity type, null otherwise. Returns an object that can be used to configure the property with the given member info. If no matching property exists, then a new property will be added. The or of the property. Indicates whether the configuration was specified using a data annotation. An object that can be used to configure the property if it exists on the entity type, null otherwise. Returns the existing properties with the given names or creates them if matching CLR members are found. The names of the properties. Indicates whether the configuration was specified using a data annotation. A list of properties if they exist on the entity type, null otherwise. Returns the existing properties matching the given members or creates them. The type members. Indicates whether the configuration was specified using a data annotation. A list of properties if they exist on the entity type, null otherwise. Removes shadow properties in the given list if they are not part of any metadata object. The properties to remove. Indicates whether the configuration was specified using a data annotation. Returns an object that can be used to configure the service property with the given member info. If no matching property exists, then a new property will be added. The or of the property. Indicates whether the configuration was specified using a data annotation. An object that can be used to configure the property if it exists on the entity type, null otherwise. Indicates whether the given member name is ignored for the current configuration source. The name of the member that might be ignored. Indicates whether the configuration was specified using a data annotation. true if the given member name is ignored. Excludes the given property from the entity type and prevents conventions from adding a matching property or navigation to the type. The name of the member to be removed. Indicates whether the configuration was specified using a data annotation. The same instance so that additional configuration calls can be chained if the given member was ignored, null otherwise. Returns a value indicating whether the given member name can be ignored from the current configuration source. The member name to be removed from the entity type. Indicates whether the configuration was specified using a data annotation. true if the given member name can be ignored. Sets the properties that make up the primary key for this entity type. The properties that make up the primary key. Indicates whether the configuration was specified using a data annotation. An object that can be used to configure the primary key. An object that can be used to configure the primary key if it was set on the entity type, null otherwise. Returns a value indicating whether the given properties can be set as the primary key for this entity type. The properties that make up the primary key. Indicates whether the configuration was specified using a data annotation. true if the given properties can be set as the primary key. Creates an alternate key in the model for this entity type if one does not already exist over the specified properties. The properties that make up the key. Indicates whether the configuration was specified using a data annotation. An object that can be used to configure the key if it exists on the entity type, null otherwise. Removes a primary or alternate key from this entity type. The properties that make up the key. Indicates whether the configuration was specified using a data annotation. The key that was removed. Removes a primary or alternate key from this entity type. The key to be removed. Indicates whether the configuration was specified using a data annotation. The same builder instance if the key was removed, null otherwise. Configures the entity type to have no keys. It will only be usable for queries. Indicates whether the configuration was specified using a data annotation. The same builder instance if the entity type was configured as keyless, null otherwise. Configures an index on the specified properties. If there is an existing index on the given set of properties, then the existing index will be returned for configuration. The properties that make up the index. Indicates whether the configuration was specified using a data annotation. An object that can be used to configure the index if it exists on the entity type, null otherwise. Removes an index from this entity type. The properties that make up the index. Indicates whether the configuration was specified using a data annotation. The same builder instance if the index was removed or didn't exist, null otherwise. Removes an index from this entity type. The index to remove. Indicates whether the configuration was specified using a data annotation. The same builder instance if the index was removed, null otherwise. Configures a relationship between this and the target entity type. The entity type that this relationship targets. Indicates whether the configuration was specified using a data annotation. An object that can be used to configure the relationship. Configures a relationship between this and the target entity type with the target as the principal end. The entity type that this relationship targets. The properties on this type that make up the foreign key. Indicates whether the configuration was specified using a data annotation. An object that can be used to configure the relationship if it exists on the entity type, null otherwise. Configures a relationship between this and the target entity type with the target as the principal end. The entity type that this relationship targets. The referenced key. Indicates whether the configuration was specified using a data annotation. An object that can be used to configure the relationship if it exists on the entity type, null otherwise. Configures a relationship between this and the target entity type with the target as the principal end. The entity type that this relationship targets. The properties on this type that make up the foreign key The referenced key. Indicates whether the configuration was specified using a data annotation. An object that can be used to configure the relationship if it exists on the entity type, null otherwise. Configures a relationship between this and the target entity type. The entity type that this relationship targets. The name of the navigation property on this entity type that is part of the relationship. A value indicating whether the target entity type should be configured as the principal end. Indicates whether the configuration was specified using a data annotation. An object that can be used to configure the relationship if it exists on the entity type, null otherwise. Configures a relationship between this and the target entity type. The entity type that this relationship targets. The navigation property on this entity type that is part of the relationship. A value indicating whether the target entity type should be configured as the principal end. Indicates whether the configuration was specified using a data annotation. An object that can be used to configure the relationship if it exists on the entity type, null otherwise. Configures a relationship between this and the target entity type. The entity type that this relationship targets. The name of the navigation property on this entity type that is part of the relationship. The name of the navigation property on the target entity type that is part of the relationship. If null is specified, the relationship will be configured without a navigation property on the target end. A value indicating whether the target entity type should be configured as the principal end. Indicates whether the configuration was specified using a data annotation. An object that can be used to configure the relationship if it exists on the entity type, null otherwise. Configures a relationship between this and the target entity type. The entity type that this relationship targets. The navigation property on this entity type that is part of the relationship. The navigation property on the target entity type that is part of the relationship. If null is specified, the relationship will be configured without a navigation property on the target end. A value indicating whether the target entity type should be configured as the principal end. Indicates whether the configuration was specified using a data annotation. An object that can be used to configure the relationship if it exists on the entity type, null otherwise. Configures a relationship where the target entity is owned by (or part of) this entity. The type that this relationship targets. The name of the navigation property on this entity type that is part of the relationship. Indicates whether the configuration was specified using a data annotation. An object that can be used to configure the relationship. Configures a relationship where the target entity is owned by (or part of) this entity. The type that this relationship targets. The navigation property on this entity type that is part of the relationship. Indicates whether the configuration was specified using a data annotation. An object that can be used to configure the relationship if it exists on the entity type, null otherwise. Configures a relationship where the target entity is owned by (or part of) this entity. The type that this relationship targets. The name of the navigation property on this entity type that is part of the relationship. The name of the navigation property on the target entity type that is part of the relationship. If null is specified, the relationship will be configured without a navigation property on the target end. Indicates whether the configuration was specified using a data annotation. An object that can be used to configure the relationship if it exists on the entity type, null otherwise. Configures a relationship where the target entity is owned by (or part of) this entity. The type that this relationship targets. The navigation property on this entity type that is part of the relationship. The navigation property on the target entity type that is part of the relationship. If null is specified, the relationship will be configured without a navigation property on the target end. Indicates whether the configuration was specified using a data annotation. An object that can be used to configure the relationship if it exists on the entity type, null otherwise. Removes a relationship from this entity type. The properties that the foreign key is defined on. The primary or alternate key that is referenced. The entity type that the relationship targets. This may be different from the type that is defined on when the relationship targets a derived type in an inheritance hierarchy (since the key is defined on the base type of the hierarchy). Indicates whether the configuration was specified using a data annotation. The same builder instance if the relationship was removed or didn't exist, null otherwise. Removes a relationship from this entity type. The foreign key to be removed. Indicates whether the configuration was specified using a data annotation. The same builder instance if the relationship was removed, null otherwise. Returns a value indicating whether the given navigation can be added to this entity type. The name of the navigation. Indicates whether the configuration was specified using a data annotation. true if the configuration can be applied. Specifies a LINQ predicate expression that will automatically be applied to any queries targeting this entity type. The LINQ predicate expression. Indicates whether the configuration was specified using a data annotation. The same builder instance if the query filter was set, null otherwise. Returns a value indicating whether the given query filter can be set from the current configuration source. The LINQ predicate expression. Indicates whether the configuration was specified using a data annotation. true if the given query filter can be set. Configures a query used to provide data for a keyless entity type. The query that will provide the underlying data for the keyless entity type. Indicates whether the configuration was specified using a data annotation. The same builder instance if the query was set, null otherwise. Returns a value indicating whether the given defining query can be set from the current configuration source. The query that will provide the underlying data for the keyless entity type. Indicates whether the configuration was specified using a data annotation. true if the given defining query can be set. Configures the to be used for this entity type. This strategy indicates how the context detects changes to properties for an instance of the entity type. The change tracking strategy to be used. null to reset to default. Indicates whether the configuration was specified using a data annotation. The same builder instance if the was set, null otherwise. Returns a value indicating whether the given change tracking strategy can be set from the current configuration source. The change tracking strategy to be used. null to reset to default. Indicates whether the configuration was specified using a data annotation. true if the given change tracking strategy can be set. Sets the to use for all properties of this entity type. The to use for properties of this entity type. null to reset to default. Indicates whether the configuration was specified using a data annotation. The same builder instance so that multiple configuration calls can be chained. The same builder instance if the was set, null otherwise. Returns a value indicating whether the given can be set from the current configuration source. The to use for properties of this model. null to reset to default. Indicates whether the configuration was specified using a data annotation. true if the given can be set. Configures the discriminator column used to identify which entity type each row in a table represents when an inheritance hierarchy is mapped to a single table in a relational database. Indicates whether the configuration was specified using a data annotation. A builder that allows the discriminator column to be configured. Configures the discriminator column used to identify which entity type each row in a table represents when an inheritance hierarchy is mapped to a single table in a relational database. The type of values stored in the discriminator column. Indicates whether the configuration was specified using a data annotation. The same builder instance if the discriminator was configured, null otherwise. Configures the discriminator column used to identify which entity type each row in a table represents when an inheritance hierarchy is mapped to a single table in a relational database. The name of the discriminator column. Indicates whether the configuration was specified using a data annotation. The same builder instance if the discriminator was configured, null otherwise. Configures the discriminator column used to identify which entity type each row in a table represents when an inheritance hierarchy is mapped to a single table in a relational database. The name of the discriminator column. The type of values stored in the discriminator column. Indicates whether the configuration was specified using a data annotation. The same builder instance if the discriminator was configured, null otherwise. Configures the discriminator column used to identify which entity type each row in a table represents when an inheritance hierarchy is mapped to a single table in a relational database. The property mapped to the discriminator column. Indicates whether the configuration was specified using a data annotation. The same builder instance if the discriminator was configured, null otherwise. Removes the discriminator property from this entity type. This method is usually called when the entity type is no longer mapped to the same table as any other type in the hierarchy or when this entity type is no longer the root type. Indicates whether the configuration was specified using a data annotation. The same builder instance if the discriminator was configured, null otherwise. Returns a value indicating whether the discriminator column can be configured. The name of the discriminator column. Indicates whether the configuration was specified using a data annotation. true if the configuration can be applied. Returns a value indicating whether the discriminator column can be configured. The type of values stored in the discriminator column. Indicates whether the configuration was specified using a data annotation. true if the configuration can be applied. Returns a value indicating whether the discriminator column can be configured. The type of values stored in the discriminator column. The name of the discriminator column. Indicates whether the configuration was specified using a data annotation. true if the configuration can be applied. Provides a simple API surface for configuring an from conventions. This interface is typically used by database providers (and other extensions). It is generally not used in application code. The index being configured. Configures whether this index is unique (i.e. each set of values must be unique). A value indicating whether the index is unique. Indicates whether the configuration was specified using a data annotation. The same builder instance if the uniqueness was configured, null otherwise. Returns a value indicating whether this index uniqueness can be configured from the current configuration source A value indicating whether the index is unique. Indicates whether the configuration was specified using a data annotation. true if the index uniqueness can be configured. Provides a simple API surface for configuring an from conventions. This interface is typically used by database providers (and other extensions). It is generally not used in application code. The key being configured. Provides a simple API surface for configuring an from conventions. This interface is typically used by database providers (and other extensions). It is generally not used in application code. The model being configured. Returns an object that can be used to configure a given entity type in the model. If an entity type with the provided name is not already part of the model, a new shadow entity type will be added to the model. The name of the entity type to be configured. true if the entity type should be owned, false if the entity type should not be owned Indicates whether the configuration was specified using a data annotation. An object that can be used to configure the entity type if the entity type was added or already part of the model, null otherwise. Returns an object that can be used to configure a given entity type in the model. If an entity type with the provided type is not already part of the model, a new entity type will be added to the model. The type of the entity type to be configured. true if the entity type should be owned, false if the entity type should not be owned Indicates whether the configuration was specified using a data annotation. An object that can be used to configure the entity type if the entity type was added or already part of the model, null otherwise. Returns an object that can be used to configure a given entity type with defining navigation. If an entity type with the provided name is not already part of the model, a new shadow entity type will be added to the model. The name of the entity type to be configured. The defining navigation. The defining entity type. Indicates whether the configuration was specified using a data annotation. An object that can be used to configure the entity type if the entity type was added or already part of the model, null otherwise. Returns an object that can be used to configure a given entity type with defining navigation. If an entity type with the provided type is not already part of the model, a new entity type will be added to the model. The type of the entity type to be configured. The defining navigation. The defining entity type. Indicates whether the configuration was specified using a data annotation. An object that can be used to configure the entity type if the entity type was added or already part of the model, null otherwise. Marks an entity type as owned. All references to this type will be configured as separate owned type instances. The entity type to be configured. Indicates whether the configuration was specified using a data annotation. An object that can be used to provide default configuration for the owned entity types. Indicates whether the given entity type name is ignored for the current configuration source. The name of the entity type that might be ignored. Indicates whether the configuration was specified using a data annotation. true if the given entity type name is ignored. Indicates whether the given entity type name is ignored for the current configuration source. The name of the entity type that might be ignored. Indicates whether the configuration was specified using a data annotation. true if the given entity type name is ignored. Excludes the given entity type from the model and prevents it from being added by convention. The entity type to be removed from the model. Indicates whether the configuration was specified using a data annotation. The same builder instance so that additional configuration calls can be chained if the given entity type was ignored, null otherwise. Excludes the given entity type name from the model and prevents it from being added by convention. The entity type name to be removed from the model. Indicates whether the configuration was specified using a data annotation. true if the given entity type name was ignored. The same builder instance if the given entity type name was ignored, null otherwise. Removes the given entity type from the model. The entity type to be removed from the model. Indicates whether the configuration was specified using a data annotation. The same builder instance if the given entity type was removed, null otherwise. Returns a value indicating whether the given entity type can be ignored from the current configuration source The entity type to be removed from the model. Indicates whether the configuration was specified using a data annotation. true if the given entity type can be ignored. Returns a value indicating whether the given entity type name can be ignored from the current configuration source The entity type name to be removed from the model. Indicates whether the configuration was specified using a data annotation. true if the given entity type name can be ignored. Configures the default to be used for this model. This strategy indicates how the context detects changes to properties for an instance of an entity type. The change tracking strategy to be used. Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was successful, null otherwise. Returns a value indicating whether the given change tracking strategy can be set from the current configuration source The change tracking strategy to be used. Indicates whether the configuration was specified using a data annotation. true if the given change tracking strategy can be set. Sets the to use for all properties of this entity type. By default, the backing field, if one is found by convention or has been specified, is used when new objects are constructed, typically when entities are queried from the database. Properties are used for all other accesses. Calling this method will change that behavior for all properties in the model as described in the enum. The to use for properties of this model. Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was successful, null otherwise. Returns a value indicating whether the given property access mode can be set from the current configuration source The to use for properties of this model. Indicates whether the configuration was specified using a data annotation. true if the given property access mode can be set. This interface is typically used by database providers (and other extensions). It is generally not used in application code. Provides a simple API surface for configuring an from conventions. This interface is typically used by database providers (and other extensions). It is generally not used in application code. The property being configured. Configures whether this property must have a value assigned or null is a valid value. A property can only be configured as non-required if it is based on a CLR type that can be assigned null. A value indicating whether the property is required. null to reset to default. Indicates whether the configuration was specified using a data annotation. The same builder instance if the requiredness was configured, null otherwise. Returns a value indicating whether this property requiredness can be configured from the current configuration source. A value indicating whether the property is required. null to reset to default. Indicates whether the configuration was specified using a data annotation. true if the property requiredness can be configured. Sets a value indicating when a value for this property will be generated by the database. Even when the property is set to be generated by the database, EF may still attempt to save a specific value (rather than having one generated by the database) when the entity is added and a value is assigned, or the property is marked as modified for an existing entity. See and for more information. A value indicating when a value for this property will be generated by the database. null to reset to default. Indicates whether the configuration was specified using a data annotation. The same builder instance if the requiredness was configured, null otherwise. Returns a value indicating whether the property value generation can be configured from the current configuration source. A value indicating when a value for this property will be generated by the database. null to reset to default. Indicates whether the configuration was specified using a data annotation. true if the property value generation can be configured. Configures whether this property should be used as a concurrency token. When a property is configured as a concurrency token the value in the database will be checked when an instance of this entity type is updated or deleted during to ensure it has not changed since the instance was retrieved from the database. If it has changed, an exception will be thrown and the changes will not be applied to the database. A value indicating whether this property is a concurrency token. Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was applied, null otherwise. Returns a value indicating whether the property can be configured as a concurrency token from the current configuration source. A value indicating whether this property is a concurrency token. Indicates whether the configuration was specified using a data annotation. true if the property can be configured as a concurrency token. Sets the backing field to use for this property. The field name. Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was applied, null otherwise. Sets the backing field to use for this property. The field. Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was applied, null otherwise. Returns a value indicating whether the backing field can be set for this property from the current configuration source. The field name. Indicates whether the configuration was specified using a data annotation. true if the backing field can be set for this property. Returns a value indicating whether the backing field can be set for this property from the current configuration source. The field. Indicates whether the configuration was specified using a data annotation. true if the backing field can be set for this property. Sets the to use for this property. The to use for this property. Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was applied, null otherwise. Returns a value indicating whether the can be set for this property from the current configuration source. The to use for this property. Indicates whether the configuration was specified using a data annotation. true if the can be set for this property. Configures the maximum length of data that can be stored in this property. The maximum length of data allowed in the property. Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was applied, null otherwise. Returns a value indicating whether the maximum length of data allowed can be set for this property from the current configuration source. The maximum length of data allowed in the property. Indicates whether the configuration was specified using a data annotation. true if the maximum length of data allowed can be set for this property. Configures whether the property as capable of persisting unicode characters. A value indicating whether the property can contain unicode characters. Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was applied, null otherwise. Returns a value indicating whether the property can be configured as capable of persisting unicode characters from the current configuration source. A value indicating whether the property can contain unicode characters. Indicates whether the configuration was specified using a data annotation. true if the capability of persisting unicode characters can be configured for this property. Configures whether this property can be modified before the entity is saved to the database. A value indicating whether this property can be modified before the entity is saved to the database. null to reset to default. Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was applied, null otherwise. Returns a value indicating whether the ability to be modified before the entity is saved to the database can be configured for this property from the current configuration source. A value indicating whether this property can be modified before the entity is saved to the database. null to reset to default. Indicates whether the configuration was specified using a data annotation. true if the ability to be modified before the entity is saved to the database can be configured for this property. Configures whether this property can be modified after the entity is saved to the database. Sets a value indicating whether this property can be modified after the entity is saved to the database. null to reset to default. Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was applied, null otherwise. Returns a value indicating whether the ability to be modified after the entity is saved to the database can be configured for this property from the current configuration source. A value indicating whether this property can be modified after the entity is saved to the database. null to reset to default. Indicates whether the configuration was specified using a data annotation. true if the ability to be modified after the entity is saved to the database can be configured for this property. Configures the that will generate values for this property. A type that inherits from . Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was applied, null otherwise. Configures the that will generate values for this property. A delegate that will be used to create value generator instances. Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was applied, null otherwise. Returns a value indicating whether the can be configured for this property from the current configuration source. A delegate that will be used to create value generator instances. Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was applied, null otherwise. true if the can be configured for this property. Configures the property so that the property value is converted to and from the database using the given . The converter to use. Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was applied, null otherwise. Returns a value indicating whether the can be configured for this property from the current configuration source. The converter to use. Indicates whether the configuration was specified using a data annotation. true if the can be configured for this property. Configures the property so that the property value is converted to the given type before writing to the database and converted back when reading from the database. The type to convert to and from. Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was applied, null otherwise. Returns a value indicating whether the given type to convert values to and from can be configured for this property from the current configuration source. The type to convert to and from. Indicates whether the configuration was specified using a data annotation. true if the given type to convert values to and from can be configured for this property. Configures the for this property. The comparer, or null to remove any previously set comparer. Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was applied, null otherwise. Returns a value indicating whether the given can be configured for this property from the current configuration source. The comparer, or null to remove any previously set comparer. Indicates whether the configuration was specified using a data annotation. true if the given can be configured for this property. Configures the to be used for key comparisons for this property. The comparer, or null to remove any previously set comparer. Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was applied, null otherwise. Returns a value indicating whether the given can be configured for this property from the current configuration source. The comparer, or null to remove any previously set comparer. Indicates whether the configuration was specified using a data annotation. true if the given can be configured for this property. Configures the to be used for structural comparisons for this property. The comparer, or null to remove any previously set comparer. Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was applied, null otherwise. Returns a value indicating whether the given can be configured for this property from the current configuration source. The comparer, or null to remove any previously set comparer. Indicates whether the configuration was specified using a data annotation. true if the given can be configured for this property. Provides a simple API surface for configuring an from conventions. This interface is typically used by database providers (and other extensions). It is generally not used in application code. The foreign key being configured. Configures which entity types participate in this relationship. By calling this method the principal and dependent types can be switched or the relationship could be moved to a base type of one of the participating entity types. The principal entity type to set. The dependent entity type to set. Indicates whether the configuration was specified using a data annotation. A builder instance if the entity types were configured as related, null otherwise. Returns a value indicating whether the principal and dependent entity types can be switched from the current configuration source The properties to be used as the new foreign key or null to use any compatible properties. Indicates whether the configuration was specified using a data annotation. true if the principal and dependent entity types can be switched. Configures the properties to use as the foreign key for this relationship. The properties to use as the foreign key for this relationship. Indicates whether the configuration was specified using a data annotation. The same builder instance if the properties were configured as the foreign key, null otherwise. Configures the properties to use as the foreign key for this relationship. The properties to use as the foreign key for this relationship. Indicates whether the configuration was specified using a data annotation. The same builder instance if the properties were configured as the foreign key, null otherwise. Returns a value indicating whether the given properties can be set as the foreign key for this relationship from the current configuration source. The properties to use as the foreign key for this relationship. Indicates whether the configuration was specified using a data annotation. true if the given properties can be set as the foreign key. Returns a value indicating whether the given properties can be set as the foreign key for this relationship from the current configuration source. The properties to use as the foreign key for this relationship. Indicates whether the configuration was specified using a data annotation. true if the given properties can be set as the foreign key. Configures the properties that this relationship targets. The properties for this relationship to target. Indicates whether the configuration was specified using a data annotation. The same builder instance if the properties were configured as the target for this relationship, null otherwise. Configures the properties that this relationship targets. The properties for this relationship to target. Indicates whether the configuration was specified using a data annotation. The same builder instance if the properties were configured as the target for this relationship, null otherwise. Returns a value indicating whether the given properties can be set as the target for this relationship from the current configuration source The properties for this relationship to target. Indicates whether the configuration was specified using a data annotation. true if the given properties can be set as the target. Returns a value indicating whether the given properties can be set as the target for this relationship from the current configuration source The properties for this relationship to target. Indicates whether the configuration was specified using a data annotation. true if the given properties can be set as the target. Configures the property with the given name as a navigation property used by this relationship. The name of the property to use. A value indicating whether the navigation is on the dependent type pointing to the principal type. Indicates whether the configuration was specified using a data annotation. The same builder instance if the navigation property was configured, null otherwise. Configures the given property as a navigation property used by this relationship. The property to use. A value indicating whether the navigation is on the dependent type pointing to the principal type. Indicates whether the configuration was specified using a data annotation. The same builder instance if the navigation property was configured, null otherwise. Configures the properties with the given names as the navigation properties used by this relationship. The name of the property to use as the navigation to the principal entity type. Can be null. The name of the property to use as the navigation to the dependent entity type. Can be null. Indicates whether the configuration was specified using a data annotation. The same builder instance if the navigation properties were configured, null otherwise. Configures the given properties as the navigation properties used by this relationship. The property to use as the navigation to the principal entity type. Can be null. The property to use as the navigation to the dependent entity type. Can be null. Indicates whether the configuration was specified using a data annotation. The same builder instance if the navigation properties were configured, null otherwise. Returns a value indicating whether the property with the given name can be used as a navigation for this relationship from the current configuration source. The name of the property to use. A value indicating whether the navigation is on the dependent type pointing to the principal type. Indicates whether the configuration was specified using a data annotation. true if the given property can be used as a navigation. Returns a value indicating whether the given property can be used as a navigation for this relationship from the current configuration source. The property to use. A value indicating whether the navigation is on the dependent type pointing to the principal type. Indicates whether the configuration was specified using a data annotation. true if the given property can be used as a navigation. Returns a value indicating whether the properties with the given names can be used as the navigation properties for this relationship from the current configuration source The name of the property to use as the navigation to the principal entity type. Can be null. The name of the property to use as the navigation to the dependent entity type. Can be null. Indicates whether the configuration was specified using a data annotation. true if the given properties can be used as navigations. Returns a value indicating whether the given properties can be used as the navigation properties for this relationship from the current configuration source The property to use as the navigation to the principal entity type. Can be null. The property to use as the navigation to the dependent entity type. Can be null. Indicates whether the configuration was specified using a data annotation. true if the given properties can be used as navigations. Sets the backing field to use for a navigation. The field name. A value indicating whether the navigation is on the dependent type pointing to the principal type. Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was applied, null otherwise. Sets the backing field to use for a navigation. The field. A value indicating whether the navigation is on the dependent type pointing to the principal type. Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was applied, null otherwise. Returns a value indicating whether the backing field can be set for a navigation from the current configuration source. The field name. A value indicating whether the navigation is on the dependent type pointing to the principal type. Indicates whether the configuration was specified using a data annotation. true if the backing field can be set for this property. Returns a value indicating whether the backing field can be set for a navigation from the current configuration source. The field. A value indicating whether the navigation is on the dependent type pointing to the principal type. Indicates whether the configuration was specified using a data annotation. true if the backing field can be set for this property. Configures whether this navigation should be eager loaded by default. A value indicating whether this navigation should be eager loaded by default. A value indicating whether the navigation is on the dependent type pointing to the principal type. Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was applied, null otherwise. Returns a value indicating whether this navigation can be configured as should be eager loaded by default from the current configuration source. A value indicating whether this navigation should be eager loaded by default. A value indicating whether the navigation is on the dependent type pointing to the principal type. Indicates whether the configuration was specified using a data annotation. true if this navigation can be configured as should be eager loaded by default. Configures whether this is a required relationship (i.e. whether none the foreign key properties can be assigned null). A value indicating whether this is a required relationship. null to reset to default. Indicates whether the configuration was specified using a data annotation. The same builder instance if the requiredness was configured, null otherwise. Returns a value indicating whether this relationship requiredness can be configured from the current configuration source. A value indicating whether this is a required relationship. null to reset to default. Indicates whether the configuration was specified using a data annotation. true if the relationship requiredness can be configured. Configures whether this relationship defines an ownership (i.e. whether the dependent entity must always be accessed via the navigation from the principal entity). A value indicating whether this relationship defines an ownership. null to reset to default. Indicates whether the configuration was specified using a data annotation. The same builder instance if the ownership was configured, null otherwise. Returns a value indicating whether this relationship can be configured as defining an ownership or not from the current configuration source. A value indicating whether this relationship defines an ownership. null to reset to default. Indicates whether the configuration was specified using a data annotation. true if the relationship can be configured as defining an ownership. Configures whether the dependent entity is unique (i.e. whether the navigation to the dependent entity type is not a collection). A value indicating whether the dependent entity is unique. null to reset to default. Indicates whether the configuration was specified using a data annotation. The same builder instance if the uniqueness was configured, null otherwise. Returns a value indicating whether this relationship uniqueness can be configured from the current configuration source. A value indicating whether the dependent entity is unique. null to reset to default. Indicates whether the configuration was specified using a data annotation. true if the relationship uniqueness can be configured. Configures the operation applied to dependent entities in the relationship when the principal is deleted or the relationship is severed. The action to perform. null to reset to default. Indicates whether the configuration was specified using a data annotation. The same builder instance if the delete operation was configured, null otherwise. Returns a value indicating whether the operation on principal deletion can be configured from the current configuration source. The action to perform. null to reset to default. Indicates whether the configuration was specified using a data annotation. true if the operation on principal deletion can be configured Provides a simple API surface for configuring an from conventions. This interface is typically used by database providers (and other extensions). It is generally not used in application code. The service property being configured. Sets the backing field to use for this property. The field name. Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was applied, null otherwise. Sets the backing field to use for this property. The field. Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was applied, null otherwise. Returns a value indicating whether the backing field can be set for this property from the current configuration source. The field name. Indicates whether the configuration was specified using a data annotation. true if the backing field can be set for this property. Returns a value indicating whether the backing field can be set for this property from the current configuration source. The field. Indicates whether the configuration was specified using a data annotation. true if the backing field can be set for this property. Sets the for this property. The parameter binding. Indicates whether the configuration was specified using a data annotation. The same builder instance if the configuration was applied, null otherwise. Returns a value indicating whether the can be set for this property. from the current configuration source. The parameter binding. Indicates whether the configuration was specified using a data annotation. true if the can be set for this property. Provides a simple API for configuring an . Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. 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. The internal builder being used to configure the index. The index being configured. Adds or updates an annotation on the index. If an annotation with the key specified in already exists its value will be updated. The key of the annotation to be added or updated. The value to be stored in the annotation. The same builder instance so that multiple configuration calls can be chained. Configures whether this index is unique (i.e. the value(s) for each instance must be unique). A value indicating whether this index is unique. The same builder instance so that multiple configuration calls can be chained. Returns a string that represents the current object. A string that represents the current object. Determines whether the specified object is equal to the current object. The object to compare with the current object. true if the specified object is equal to the current object; otherwise, false. Serves as the default hash function. A hash code for the current object. Provides a simple API for configuring an . Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. 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. Adds or updates an annotation on the index. If an annotation with the key specified in already exists its value will be updated. The key of the annotation to be added or updated. The value to be stored in the annotation. The same builder instance so that multiple configuration calls can be chained. Configures whether this index is unique (i.e. the value(s) for each instance must be unique). A value indicating whether this index is unique. The same builder instance so that multiple configuration calls can be chained. Base class used for configuring an invertible relationship. 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. 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. Gets the first entity type used to configure this relationship. Gets the second entity type used to configure this relationship. 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. Gets the internal builder being used to configure this relationship. The foreign key that represents this relationship. Returns a string that represents the current object. A string that represents the current object. Determines whether the specified object is equal to the current object. The object to compare with the current object. true if the specified object is equal to the current object; otherwise, false. Serves as the default hash function. A hash code for the current object. Provides a simple API for configuring a . Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. 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. The internal builder being used to configure the key. The key being configured. Adds or updates an annotation on the key. If an annotation with the key specified in already exists its value will be updated. The key of the annotation to be added or updated. The value to be stored in the annotation. The same builder instance so that multiple configuration calls can be chained. Returns a string that represents the current object. A string that represents the current object. Determines whether the specified object is equal to the current object. The object to compare with the current object. true if the specified object is equal to the current object; otherwise, false. Serves as the default hash function. A hash code for the current object. Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. Returns a string that represents the current object. A string that represents the current object. Determines whether the specified object is equal to the current object. The object to compare with the current object. true if the specified object is equal to the current object; otherwise, false. Serves as the default hash function. A hash code for the current object. Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. The entity type being configured. Provides a simple API for configuring a navigation to an owned entity type. 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. Gets the principal entity type used to configure this relationship. Gets the dependent entity type used to configure this relationship. 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. 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. Gets the internal builder being used to configure the owned entity type. The foreign key that represents this ownership. The owned entity type being configured. Adds or updates an annotation on the owned entity type. If an annotation with the key specified in already exists its value will be updated. The key of the annotation to be added or updated. The value to be stored in the annotation. The same builder instance so that multiple configuration calls can be chained. Sets the properties that make up the primary key for this owned entity type. The names of the properties that make up the primary key. An object that can be used to configure the primary key. Returns an object that can be used to configure a property of the owned entity type. If no property with the given name exists, then a new property will be added. When adding a new property with this overload the property name must match the name of a CLR property or field on the entity type. This overload cannot be used to add a new shadow state property. The name of the property to be configured. An object that can be used to configure the property. Returns an object that can be used to configure a property of the owned entity type. If no property with the given name exists, then a new property will be added. When adding a new property, if a property with the same name exists in the entity class then it will be added to the model. If no property exists in the entity class, then a new shadow state property will be added. A shadow state property is one that does not have a corresponding property in the entity class. The current value for the property is stored in the rather than being stored in instances of the entity class. The type of the property to be configured. The name of the property to be configured. An object that can be used to configure the property. Returns an object that can be used to configure a property of the owned entity type. If no property with the given name exists, then a new property will be added. When adding a new property, if a property with the same name exists in the entity class then it will be added to the model. If no property exists in the entity class, then a new shadow state property will be added. A shadow state property is one that does not have a corresponding property in the entity class. The current value for the property is stored in the rather than being stored in instances of the entity class. The type of the property to be configured. The name of the property to be configured. An object that can be used to configure the property. Excludes the given property from the entity type. This method is typically used to remove properties or navigations from the owned entity type that were added by convention. The name of the property to be removed from the entity type. Configures an index on the specified properties. If there is an existing index on the given set of properties, then the existing index will be returned for configuration. The names of the properties that make up the index. An object that can be used to configure the index. Configures the relationship to the owner. Note that calling this method with no parameters will explicitly configure this side of the relationship to use no navigation property, even if such a property exists on the entity type. If the navigation property is to be used, then it must be specified. The name of the reference navigation property pointing to the owner. If null or not specified, there is no navigation property pointing to the owner. An object that can be used to configure the relationship. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity key value is always propagated from the entity it belongs to. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The name of the entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An object that can be used to configure the relationship. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity key value is always propagated from the entity it belongs to. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An object that can be used to configure the relationship. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity key value is always propagated from the entity it belongs to. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The name of the entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An action that performs configuration of the relationship. An object that can be used to configure the entity type. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity key value is always propagated from the entity it belongs to. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An action that performs configuration of the relationship. An object that can be used to configure the entity type. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The name of the entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An object that can be used to configure the owned type and the relationship. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An object that can be used to configure the owned type and the relationship. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The name of the entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An action that performs configuration of the owned type and the relationship. An object that can be used to configure the entity type. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An action that performs configuration of the owned type and the relationship. An object that can be used to configure the entity type. Configures a relationship where this entity type has a reference that points to a single instance of the other type in the relationship. Note that calling this method with no parameters will explicitly configure this side of the relationship to use no navigation property, even if such a property exists on the entity type. If the navigation property is to be used, then it must be specified. After calling this method, you should chain a call to or to fully configure the relationship. Calling just this method without the chained call will not produce a valid relationship. The name of the entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. If no property is specified, the relationship will be configured without a navigation property on this end. An object that can be used to configure the relationship. Configures a relationship where this entity type has a reference that points to a single instance of the other type in the relationship. Note that calling this method with no parameters will explicitly configure this side of the relationship to use no navigation property, even if such a property exists on the entity type. If the navigation property is to be used, then it must be specified. After calling this method, you should chain a call to or to fully configure the relationship. Calling just this method without the chained call will not produce a valid relationship. The name of the reference navigation property on this entity type that represents the relationship. An object that can be used to configure the relationship. Configures a relationship where this entity type has a reference that points to a single instance of the other type in the relationship. Note that calling this method with no parameters will explicitly configure this side of the relationship to use no navigation property, even if such a property exists on the entity type. If the navigation property is to be used, then it must be specified. After calling this method, you should chain a call to or to fully configure the relationship. Calling just this method without the chained call will not produce a valid relationship. The entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. If no property is specified, the relationship will be configured without a navigation property on this end. An object that can be used to configure the relationship. 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. 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. Configures the to be used for this entity type. This strategy indicates how the context detects changes to properties for an instance of the entity type. The change tracking strategy to be used. The same builder instance so that multiple configuration calls can be chained. Sets the to use for all properties of this entity type. By default, the backing field, if one is found by convention or has been specified, is used when new objects are constructed, typically when entities are queried from the database. Properties are used for all other accesses. Calling this method will change that behavior for all properties of this entity type as described in the enum. Calling this method overrides for all properties of this entity type any access mode that was set on the model. The to use for properties of this entity type. The same builder instance so that multiple configuration calls can be chained. Configures this entity to have seed data. It is used to generate data motion migrations. An array of seed data represented by anonymous types. An object that can be used to configure the model data. Provides a simple API for configuring a navigation to an owned entity type. 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. Adds or updates an annotation on the owned entity type. If an annotation with the key specified in already exists its value will be updated. The key of the annotation to be added or updated. The value to be stored in the annotation. The same builder instance so that multiple configuration calls can be chained. Sets the properties that make up the primary key for this owned entity type. A lambda expression representing the primary key property(s) (blog => blog.Url). If the primary key is made up of multiple properties then specify an anonymous type including the properties (post => new { post.Title, post.BlogId }). An object that can be used to configure the primary key. Returns an object that can be used to configure a property of the owned entity type. If no property with the given name exists, then a new property will be added. When adding a new property, if a property with the same name exists in the entity class then it will be added to the model. If no property exists in the entity class, then a new shadow state property will be added. A shadow state property is one that does not have a corresponding property in the entity class. The current value for the property is stored in the rather than being stored in instances of the entity class. The type of the property to be configured. A lambda expression representing the property to be configured ( blog => blog.Url). An object that can be used to configure the property. Excludes the given property from the entity type. This method is typically used to remove properties or navigations from the owned entity type that were added by convention. The name of the property to be removed from the entity type. Excludes the given property from the entity type. This method is typically used to remove properties or navigations from the owned entity type that were added by convention. A lambda expression representing the property to be ignored (blog => blog.Url). Configures an index on the specified properties. If there is an existing index on the given set of properties, then the existing index will be returned for configuration. A lambda expression representing the property(s) to be included in the index (blog => blog.Url). If the index is made up of multiple properties then specify an anonymous type including the properties (post => new { post.Title, post.BlogId }). An object that can be used to configure the index. Configures the relationship to the owner. Note that calling this method with no parameters will explicitly configure this side of the relationship to use no navigation property, even if such a property exists on the entity type. If the navigation property is to be used, then it must be specified. The name of the reference navigation property pointing to the owner. If null or not specified, there is no navigation property pointing to the owner. An object that can be used to configure the relationship. Configures the relationship to the owner. Note that calling this method with no parameters will explicitly configure this side of the relationship to use no navigation property, even if such a property exists on the entity type. If the navigation property is to be used, then it must be specified. A lambda expression representing the reference navigation property pointing to the owner (blog => blog.BlogInfo). If no property is specified, the relationship will be configured without a navigation property pointing to the owner. An object that can be used to configure the relationship. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity key value is always propagated from the entity it belongs to. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An object that can be used to configure the entity type. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity key value is always propagated from the entity it belongs to. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. A lambda expression representing the reference navigation property on this entity type that represents the relationship (customer => customer.Address). An object that can be used to configure the entity type. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity key value is always propagated from the entity it belongs to. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An action that performs configuration of the relationship. An object that can be used to configure the entity type. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity key value is always propagated from the entity it belongs to. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. A lambda expression representing the reference navigation property on this entity type that represents the relationship (customer => customer.Address). An action that performs configuration of the relationship. An object that can be used to configure the entity type. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An object that can be used to configure the owned type and the relationship. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. A lambda expression representing the reference navigation property on this entity type that represents the relationship (customer => customer.Address). An object that can be used to configure the owned type and the relationship. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. An action that performs configuration of the owned type and the relationship. An object that can be used to configure the entity type. Configures a relationship where the target entity is owned by (or part of) this entity. The target entity type for each ownership relationship is treated as a different entity type even if the navigation is of the same type. Configuration of the target entity type isn't applied to the target entity type of other ownership relationships. Most operations on an owned entity require accessing it through the owner entity using the corresponding navigation. After calling this method, you should chain a call to to fully configure the relationship. The entity type that this relationship targets. A lambda expression representing the reference navigation property on this entity type that represents the relationship (customer => customer.Address). An action that performs configuration of the owned type and the relationship. An object that can be used to configure the entity type. Configures a relationship where this entity type has a reference that points to a single instance of the other type in the relationship. Note that calling this method with no parameters will explicitly configure this side of the relationship to use no navigation property, even if such a property exists on the entity type. If the navigation property is to be used, then it must be specified. After calling this method, you should chain a call to or to fully configure the relationship. Calling just this method without the chained call will not produce a valid relationship. The entity type that this relationship targets. The name of the reference navigation property on this entity type that represents the relationship. If no property is specified, the relationship will be configured without a navigation property on this end. An object that can be used to configure the relationship. Configures a relationship where this entity type has a reference that points to a single instance of the other type in the relationship. Note that calling this method with no parameters will explicitly configure this side of the relationship to use no navigation property, even if such a property exists on the entity type. If the navigation property is to be used, then it must be specified. After calling this method, you should chain a call to or to fully configure the relationship. Calling just this method without the chained call will not produce a valid relationship. The entity type that this relationship targets. A lambda expression representing the reference navigation property on this entity type that represents the relationship (post => post.Blog). If no property is specified, the relationship will be configured without a navigation property on this end. An object that can be used to configure the relationship. Configures the to be used for this entity type. This strategy indicates how the context detects changes to properties for an instance of the entity type. The change tracking strategy to be used. The same builder instance so that multiple configuration calls can be chained. Sets the to use for all properties of this entity type. By default, the backing field, if one is found by convention or has been specified, is used when new objects are constructed, typically when entities are queried from the database. Properties are used for all other accesses. Calling this method will change that behavior for all properties of this entity type as described in the enum. Calling this method overrides for all properties of this entity type any access mode that was set on the model. The to use for properties of this entity type. The same builder instance so that multiple configuration calls can be chained. Configures this entity to have seed data. It is used to generate data motion migrations. An array of seed data. An object that can be used to configure the model data. Configures this entity to have seed data. It is used to generate data motion migrations. An array of seed data represented by anonymous types. An object that can be used to configure the model data. Provides a simple API for configuring an ownership. 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. 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. Adds or updates an annotation on the foreign key. If an annotation with the key specified in already exists its value will be updated. The key of the annotation to be added or updated. The value to be stored in the annotation. The same builder instance so that multiple configuration calls can be chained. Configures the property(s) to use as the foreign key for this relationship. If the specified property name(s) do not exist on the entity type then a new shadow state property(s) will be added to serve as the foreign key. A shadow state property is one that does not have a corresponding property in the entity class. The current value for the property is stored in the rather than being stored in instances of the entity class. If is not specified, then an attempt will be made to match the data type and order of foreign key properties against the primary key of the principal entity type. If they do not match, new shadow state properties that form a unique index will be added to the principal entity type to serve as the reference key. The name(s) of the foreign key property(s). The same builder instance so that multiple configuration calls can be chained. Configures the unique property(s) that this relationship targets. Typically you would only call this method if you want to use a property(s) other than the primary key as the principal property(s). If the specified property(s) is not already a unique constraint (or the primary key) then a new unique constraint will be introduced. The name(s) of the reference key property(s). The same builder instance so that multiple configuration calls can be chained. Provides a simple API for configuring an ownership. 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. 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. Adds or updates an annotation on the foreign key. If an annotation with the key specified in already exists its value will be updated. The key of the annotation to be added or updated. The value to be stored in the annotation. The same builder instance so that multiple configuration calls can be chained. Configures the property(s) to use as the foreign key for this relationship. If the specified property name(s) do not exist on the entity type then a new shadow state property(s) will be added to serve as the foreign key. A shadow state property is one that does not have a corresponding property in the entity class. The current value for the property is stored in the rather than being stored in instances of the entity class. If is not specified, then an attempt will be made to match the data type and order of foreign key properties against the primary key of the principal entity type. If they do not match, new shadow state properties that form a unique index will be added to the principal entity type to serve as the reference key. The name(s) of the foreign key property(s). The same builder instance so that multiple configuration calls can be chained. Configures the property(s) to use as the foreign key for this relationship. If the specified property name(s) do not exist on the entity type then a new shadow state property(s) will be added to serve as the foreign key. A shadow state property is one that does not have a corresponding property in the entity class. The current value for the property is stored in the rather than being stored in instances of the entity class. If is not specified, then an attempt will be made to match the data type and order of foreign key properties against the primary key of the principal entity type. If they do not match, new shadow state properties that form a unique index will be added to the principal entity type to serve as the reference key. A lambda expression representing the foreign key property(s) (t => t.Id1). If the foreign key is made up of multiple properties then specify an anonymous type including the properties (t => new { t.Id1, t.Id2 }). The order specified should match the order of corresponding properties in . The same builder instance so that multiple configuration calls can be chained. Configures the unique property(s) that this relationship targets. Typically you would only call this method if you want to use a property(s) other than the primary key as the principal property(s). If the specified property(s) is not already a unique constraint (or the primary key) then a new unique constraint will be introduced. The name(s) of the reference key property(s). The same builder instance so that multiple configuration calls can be chained. Configures the unique property(s) that this relationship targets. Typically you would only call this method if you want to use a property(s) other than the primary key as the principal property(s). If the specified property(s) is not already a unique constraint (or the primary key) then a new unique constraint will be introduced. A lambda expression representing the reference key property(s) (t => t.Id). If the principal key is made up of multiple properties then specify an anonymous type including the properties (t => new { t.Id1, t.Id2 }). The order specified should match the order of corresponding properties in . The same builder instance so that multiple configuration calls can be chained. Provides a simple API for configuring a . Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. 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. The internal builder being used to configure the property. The property being configured. Adds or updates an annotation on the property. If an annotation with the key specified in already exists its value will be updated. The key of the annotation to be added or updated. The value to be stored in the annotation. The same builder instance so that multiple configuration calls can be chained. Configures whether this property must have a value assigned or null is a valid value. A property can only be configured as non-required if it is based on a CLR type that can be assigned null. A value indicating whether the property is required. The same builder instance so that multiple configuration calls can be chained. Configures the maximum length of data that can be stored in this property. Maximum length can only be set on array properties (including properties). The maximum length of data allowed in the property. The same builder instance so that multiple configuration calls can be chained. Configures whether the property as capable of persisting unicode characters. Can only be set on properties. A value indicating whether the property can contain unicode characters. The same builder instance so that multiple configuration calls can be chained. Configures the property as and . Database providers can choose to interpret this in different way, but it is commonly used to indicate some form of automatic row-versioning as used for optimistic concurrency detection. The same builder instance so that multiple configuration calls can be chained. Configures the that will generate values for this property. Values are generated when the entity is added to the context using, for example, . Values are generated only when the property is assigned the CLR default value (null for string, 0 for int, Guid.Empty for Guid, etc.). A single instance of this type will be created and used to generate values for this property in all instances of the entity type. The type must be instantiable and have a parameterless constructor. This method is intended for use with custom value generation. Value generation for common cases is usually handled automatically by the database provider. A type that inherits from . The same builder instance so that multiple configuration calls can be chained. Configures the that will generate values for this property. Values are generated when the entity is added to the context using, for example, . Values are generated only when the property is assigned the CLR default value (null for string, 0 for int, Guid.Empty for Guid, etc.). A single instance of this type will be created and used to generate values for this property in all instances of the entity type. The type must be instantiable and have a parameterless constructor. This method is intended for use with custom value generation. Value generation for common cases is usually handled automatically by the database provider. Setting null does not disable value generation for this property, it just clears any generator explicitly configured for this property. The database provider may still have a value generator for the property type. A type that inherits from . The same builder instance so that multiple configuration calls can be chained. Configures a factory for creating a to use to generate values for this property. Values are generated when the entity is added to the context using, for example, . Values are generated only when the property is assigned the CLR default value (null for string, 0 for int, Guid.Empty for Guid, etc.). This factory will be invoked once to create a single instance of the value generator, and this will be used to generate values for this property in all instances of the entity type. This method is intended for use with custom value generation. Value generation for common cases is usually handled automatically by the database provider. A delegate that will be used to create value generator instances. The same builder instance so that multiple configuration calls can be chained. Configures whether this property should be used as a concurrency token. When a property is configured as a concurrency token the value in the database will be checked when an instance of this entity type is updated or deleted during to ensure it has not changed since the instance was retrieved from the database. If it has changed, an exception will be thrown and the changes will not be applied to the database. A value indicating whether this property is a concurrency token. The same builder instance so that multiple configuration calls can be chained. Configures a property to never have a value generated by the database when an instance of this entity type is saved. The same builder instance so that multiple configuration calls can be chained. Note that values may still be generated by a client-side value generator, if one is set explicitly or by a convention. Configures a property to have a value generated only when saving a new entity, unless a non-null, non-temporary value has been set, in which case the set value will be saved instead. The value may be generated by a client-side value generator or may be generated by the database as part of saving the entity. The same builder instance so that multiple configuration calls can be chained. Configures a property to have a value generated when saving a new or existing entity. The same builder instance so that multiple configuration calls can be chained. Configures a property to have a value generated when saving an existing entity. The same builder instance so that multiple configuration calls can be chained. Sets the backing field to use for this property. Backing fields are normally found by convention as described here: http://go.microsoft.com/fwlink/?LinkId=723277. This method is useful for setting backing fields explicitly in cases where the correct field is not found by convention. By default, the backing field, if one is found or has been specified, is used when new objects are constructed, typically when entities are queried from the database. Properties are used for all other accesses. This can be changed by calling . The field name. The same builder instance so that multiple configuration calls can be chained. Sets the to use for this property. By default, the backing field, if one is found by convention or has been specified, is used when new objects are constructed, typically when entities are queried from the database. Properties are used for all other accesses. Calling this method will change that behavior for this property as described in the enum. Calling this method overrides for this property any access mode that was set on the entity type or model. The to use for this property. The same builder instance so that multiple configuration calls can be chained. Configures the property so that the property value is converted to the given type before writing to the database and converted back when reading from the database. The type to convert to and from. The same builder instance so that multiple configuration calls can be chained. Configures the property so that the property value is converted to the given type before writing to the database and converted back when reading from the database. The type to convert to and from. The same builder instance so that multiple configuration calls can be chained. Configures the property so that the property value is converted to and from the database using the given . The converter to use. The same builder instance so that multiple configuration calls can be chained. Returns a string that represents the current object. A string that represents the current object. Determines whether the specified object is equal to the current object. The object to compare with the current object. true if the specified object is equal to the current object; otherwise, false. Serves as the default hash function. A hash code for the current object. Provides a simple API for configuring a . Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. 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. Adds or updates an annotation on the property. If an annotation with the key specified in already exists its value will be updated. The key of the annotation to be added or updated. The value to be stored in the annotation. The same builder instance so that multiple configuration calls can be chained. Configures whether this property must have a value assigned or whether null is a valid value. A property can only be configured as non-required if it is based on a CLR type that can be assigned null. A value indicating whether the property is required. The same builder instance so that multiple configuration calls can be chained. Configures the maximum length of data that can be stored in this property. Maximum length can only be set on array properties (including properties). The maximum length of data allowed in the property. The same builder instance so that multiple configuration calls can be chained. Configures the property as capable of persisting unicode characters. Can only be set on properties. A value indicating whether the property can contain unicode characters. The same builder instance so that multiple configuration calls can be chained. Configures the property as and . Database providers can choose to interpret this in different way, but it is commonly used to indicate some form of automatic row-versioning as used for optimistic concurrency detection. The same builder instance so that multiple configuration calls can be chained. Configures the that will generate values for this property. Values are generated when the entity is added to the context using, for example, . Values are generated only when the property is assigned the CLR default value (null for string, 0 for int, Guid.Empty for Guid, etc.). A single instance of this type will be created and used to generate values for this property in all instances of the entity type. The type must be instantiable and have a parameterless constructor. This method is intended for use with custom value generation. Value generation for common cases is usually handled automatically by the database provider. A type that inherits from . The same builder instance so that multiple configuration calls can be chained. Configures the that will generate values for this property. Values are generated when the entity is added to the context using, for example, . Values are generated only when the property is assigned the CLR default value (null for string, 0 for int, Guid.Empty for Guid, etc.). A single instance of this type will be created and used to generate values for this property in all instances of the entity type. The type must be instantiable and have a parameterless constructor. This method is intended for use with custom value generation. Value generation for common cases is usually handled automatically by the database provider. Setting null does not disable value generation for this property, it just clears any generator explicitly configured for this property. The database provider may still have a value generator for the property type. A type that inherits from . The same builder instance so that multiple configuration calls can be chained. Configures a factory for creating a to use to generate values for this property. Values are generated when the entity is added to the context using, for example, . Values are generated only when the property is assigned the CLR default value (null for string, 0 for int, Guid.Empty for Guid, etc.). This factory will be invoked once to create a single instance of the value generator, and this will be used to generate values for this property in all instances of the entity type. This method is intended for use with custom value generation. Value generation for common cases is usually handled automatically by the database provider. A delegate that will be used to create value generator instances. The same builder instance so that multiple configuration calls can be chained. Configures whether this property should be used as a concurrency token. When a property is configured as a concurrency token the value in the database will be checked when an instance of this entity type is updated or deleted during to ensure it has not changed since the instance was retrieved from the database. If it has changed, an exception will be thrown and the changes will not be applied to the database. A value indicating whether this property is a concurrency token. The same builder instance so that multiple configuration calls can be chained. Configures a property to never have a value generated when an instance of this entity type is saved. The same builder instance so that multiple configuration calls can be chained. Note that temporary values may still be generated for use internally before a new entity is saved. Configures a property to have a value generated only when saving a new entity, unless a non-null, non-temporary value has been set, in which case the set value will be saved instead. The value may be generated by a client-side value generator or may be generated by the database as part of saving the entity. The same builder instance so that multiple configuration calls can be chained. Configures a property to have a value generated when saving a new or existing entity. The same builder instance so that multiple configuration calls can be chained. Configures a property to have a value generated when saving an existing entity. The same builder instance so that multiple configuration calls can be chained. Sets the backing field to use for this property. Backing fields are normally found by convention as described here: http://go.microsoft.com/fwlink/?LinkId=723277. This method is useful for setting backing fields explicitly in cases where the correct field is not found by convention. By default, the backing field, if one is found or has been specified, is used when new objects are constructed, typically when entities are queried from the database. Properties are used for all other accesses. This can be changed by calling . The field name. The same builder instance so that multiple configuration calls can be chained. Configures the property so that the property value is converted to the given type before writing to the database and converted back when reading from the database. The type to convert to and from. The same builder instance so that multiple configuration calls can be chained. Configures the property so that the property value is converted to the given type before writing to the database and converted back when reading from the database. The type to convert to and from. The same builder instance so that multiple configuration calls can be chained. Configures the property so that the property value is converted to and from the database using the given conversion expressions. The store type generated by the conversions. An expression to convert objects when writing data to the store. An expression to convert objects when reading data from the store. The same builder instance so that multiple configuration calls can be chained. Configures the property so that the property value is converted to and from the database using the given . The store type generated by the converter. The converter to use. The same builder instance so that multiple configuration calls can be chained. Configures the property so that the property value is converted to and from the database using the given . The converter to use. The same builder instance so that multiple configuration calls can be chained. Sets the to use for this property. By default, the backing field, if one is found by convention or has been specified, is used when new objects are constructed, typically when entities are queried from the database. Properties are used for all other accesses. Calling this method will change that behavior for this property as described in the enum. Calling this method overrides for this property any access mode that was set on the entity type or model. The to use for this property. The same builder instance so that multiple configuration calls can be chained. Provides a simple API for configuring an . Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. The query type being configured. 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. Provides a simple API for configuring a one-to-many relationship. Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. 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. 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. Adds or updates an annotation on the relationship. If an annotation with the key specified in already exists its value will be updated. The key of the annotation to be added or updated. The value to be stored in the annotation. The same builder instance so that multiple configuration calls can be chained. Configures the property(s) to use as the foreign key for this relationship. If the specified property name(s) do not exist on the entity type then a new shadow state property(s) will be added to serve as the foreign key. A shadow state property is one that does not have a corresponding property in the entity class. The current value for the property is stored in the rather than being stored in instances of the entity class. If is not specified, then an attempt will be made to match the data type and order of foreign key properties against the primary key of the principal entity type. If they do not match, new shadow state properties that form a unique index will be added to the principal entity type to serve as the reference key. The name(s) of the foreign key property(s). The same builder instance so that multiple configuration calls can be chained. 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. 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. Configures the unique property(s) that this relationship targets. Typically you would only call this method if you want to use a property(s) other than the primary key as the principal property(s). If the specified property(s) is not already a unique constraint (or the primary key) then a new unique constraint will be introduced. The name(s) of the referenced key property(s). The same builder instance so that multiple configuration calls can be chained. 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. 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. Configures whether this is a required relationship (i.e. whether the foreign key property(s) can be assigned null). A value indicating whether this is a required relationship. The same builder instance so that multiple configuration calls can be chained. Configures the operation applied to dependent entities in the relationship when the principal is deleted or the relationship is severed. The action to perform. The same builder instance so that multiple configuration calls can be chained. Provides a simple API for configuring a one-to-many relationship. Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. The principal entity type in this relationship. The dependent entity type in this relationship. 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. 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. Configures the property(s) to use as the foreign key for this relationship. If the specified property name(s) do not exist on the entity type then a new shadow state property(s) will be added to serve as the foreign key. A shadow state property is one that does not have a corresponding property in the entity class. The current value for the property is stored in the rather than being stored in instances of the entity class. If is not specified, then an attempt will be made to match the data type and order of foreign key properties against the primary key of the principal entity type. If they do not match, new shadow state properties that form a unique index will be added to the principal entity type to serve as the reference key. The name(s) of the foreign key property(s). The same builder instance so that multiple configuration calls can be chained. Configures the property(s) to use as the foreign key for this relationship. If is not specified, then an attempt will be made to match the data type and order of foreign key properties against the primary key of the principal entity type. If they do not match, new shadow state properties that form a unique index will be added to the principal entity type to serve as the reference key. A shadow state property is one that does not have a corresponding property in the entity class. The current value for the property is stored in the rather than being stored in instances of the entity class. A lambda expression representing the foreign key property(s) (post => post.BlogId). If the foreign key is made up of multiple properties then specify an anonymous type including the properties (comment => new { comment.BlogId, comment.PostTitle }). The order specified should match the order of corresponding properties in . The same builder instance so that multiple configuration calls can be chained. Configures the unique property(s) that this relationship targets. Typically you would only call this method if you want to use a property(s) other than the primary key as the principal property(s). If the specified property(s) is not already a unique constraint (or the primary key) then a new unique constraint will be introduced. The name(s) of the referenced key property(s). The same builder instance so that multiple configuration calls can be chained. Configures the unique property(s) that this relationship targets. Typically you would only call this method if you want to use a property(s) other than the primary key as the principal property(s). If the specified property(s) is not already a unique constraint (or the primary key) then a new unique constraint will be introduced. A lambda expression representing the referenced key property(s) (blog => blog.BlogId). If the principal key is made up of multiple properties then specify an anonymous type including the properties (t => new { t.Id1, t.Id2 }). The order specified should match the order of corresponding properties in . The same builder instance so that multiple configuration calls can be chained. Adds or updates an annotation on the relationship. If an annotation with the key specified in already exists its value will be updated. The key of the annotation to be added or updated. The value to be stored in the annotation. The same builder instance so that multiple configuration calls can be chained. Configures whether this is a required relationship (i.e. whether the foreign key property(s) can be assigned null). A value indicating whether this is a required relationship. The same builder instance so that multiple configuration calls can be chained. Configures the operation applied to dependent entities in the relationship when the principal is deleted or the relationship is severed. The action to perform. The same builder instance so that multiple configuration calls can be chained. Provides a simple API for configuring a relationship where configuration began on an end of the relationship with a reference that points to an instance of another entity type. Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. 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. 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. 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. 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. 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. 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. Gets the internal builder being used to configure the relationship. Configures this as a one-to-many relationship. Note that calling this method with no parameters will explicitly configure this side of the relationship to use no navigation property, even if such a property exists on the entity type. If the navigation property is to be used, then it must be specified. The name of the collection navigation property on the other end of this relationship. If null or not specified, there is no navigation property on the other end of the relationship. An object to further configure the relationship. 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. 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. Configures this as a one-to-one relationship. Note that calling this method with no parameters will explicitly configure this side of the relationship to use no navigation property, even if such a property exists on the entity type. If the navigation property is to be used, then it must be specified. The name of the reference navigation property on the other end of this relationship. If null or not specified, there is no navigation property on the other end of the relationship. An object to further configure the relationship. 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. 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. Returns a string that represents the current object. A string that represents the current object. Determines whether the specified object is equal to the current object. The object to compare with the current object. true if the specified object is equal to the current object; otherwise, false. Serves as the default hash function. A hash code for the current object. Provides a simple API for configuring a relationship where configuration began on an end of the relationship with a reference that points to an instance of another entity type. Instances of this class are returned from methods when using the API and it is not designed to be directly constructed in your application code. The entity type to be configured. The entity type that this relationship targets. 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. 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. Configures this as a one-to-many relationship. Note that calling this method with no parameters will explicitly configure this side of the relationship to use no navigation property, even if such a property exists on the entity type. If the navigation property is to be used, then it must be specified. The name of the collection navigation property on the other end of this relationship. If null or not specified, there is no navigation property on the other end of the relationship. An object to further configure the relationship. Configures this as a one-to-many relationship. Note that calling this method with no parameters will explicitly configure this side of the relationship to use no navigation property, even if such a property exists on the entity type. If the navigation property is to be used, then it must be specified. A lambda expression representing the collection navigation property on the other end of this relationship (blog => blog.Posts). If no property is specified, the relationship will be configured without a navigation property on the other end of the relationship. An object to further configure the relationship. Configures this as a one-to-many relationship. Note that calling this method with no parameters will explicitly configure this side of the relationship to use no navigation property, even if such a property exists on the entity type. If the navigation property is to be used, then it must be specified. The name of the reference navigation property on the other end of this relationship. If null or not specified, there is no navigation property on the other end of the relationship. An object to further configure the relationship. Configures this as a one-to-one relationship. Note that calling this method with no parameters will explicitly configure this side of the relationship to use no navigation property, even if such a property exists on the entity type. If the navigation property is to be used, then it must be specified. A lambda expression representing the reference navigation property on the other end of this relationship (blog => blog.BlogInfo). If no property is specified, the relationship will be configured without a navigation property on the other end of the relationship. An object to further configure the relationship. Provides a simple API for configuring a one-to-one relationship. 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. 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. Adds or updates an annotation on the relationship. If an annotation with the key specified in already exists its value will be updated. The key of the annotation to be added or updated. The value to be stored in the annotation. The same builder instance so that multiple configuration calls can be chained. Configures the property(s) to use as the foreign key for this relationship. If the specified property name(s) do not exist on the entity type then a new shadow state property(s) will be added to serve as the foreign key. A shadow state property is one that does not have a corresponding property in the entity class. The current value for the property is stored in the rather than being stored in instances of the entity class. If is not specified, then an attempt will be made to match the data type and order of foreign key properties against the primary key of the principal entity type. If they do not match, new shadow state properties that form a unique index will be added to the principal entity type to serve as the reference key. The name of the entity type that is the dependent in this relationship (the type that has the foreign key properties). The name(s) of the foreign key property(s). The same builder instance so that multiple configuration calls can be chained. Configures the property(s) to use as the foreign key for this relationship. If the specified property name(s) do not exist on the entity type then a new shadow state property(s) will be added to serve as the foreign key. A shadow state property is one that does not have a corresponding property in the entity class. The current value for the property is stored in the rather than being stored in instances of the entity class. If is not specified, then an attempt will be made to match the data type and order of foreign key properties against the primary key of the principal entity type. If they do not match, new shadow state properties that form a unique index will be added to the principal entity type to serve as the reference key. The entity type that is the dependent in this relationship (the type that has the foreign key properties). The name(s) of the foreign key property(s). The same builder instance so that multiple configuration calls can be chained. 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. 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. Configures the unique property(s) that this relationship targets. Typically you would only call this method if you want to use a property(s) other than the primary key as the principal property(s). If the specified property(s) is not already a unique constraint (or the primary key) then a new unique constraint will be introduced. If multiple principal key properties are specified, the order of principal key properties should match the order that the primary key or unique constraint properties were configured on the principal entity type. The name of the entity type that is the principal in this relationship (the type that has the reference key properties). The name(s) of the reference key property(s). The same builder instance so that multiple configuration calls can be chained. Configures the unique property(s) that this relationship targets. Typically you would only call this method if you want to use a property(s) other than the primary key as the principal property(s). If the specified property(s) is not already a unique constraint (or the primary key) then a new unique constraint will be introduced. If multiple principal key properties are specified, the order of principal key properties should match the order that the primary key or unique constraint properties were configured on the principal entity type. The entity type that is the principal in this relationship (the type that has the reference key properties). The name(s) of the reference key property(s). The same builder instance so that multiple configuration calls can be chained. 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. 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. 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. 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. Configures whether this is a required relationship (i.e. whether the foreign key property(s) can be assigned null). A value indicating whether this is a required relationship. The same builder instance so that multiple configuration calls can be chained. Configures the operation applied to dependent entities in the relationship when the principal is deleted or the relationship is severed. The action to perform. The same builder instance so that multiple configuration calls can be chained. Provides a simple API for configuring a one-to-one relationship. 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. 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. Adds or updates an annotation on the relationship. If an annotation with the key specified in already exists its value will be updated. The key of the annotation to be added or updated. The value to be stored in the annotation. The same builder instance so that multiple configuration calls can be chained. Configures the property(s) to use as the foreign key for this relationship. If the specified property name(s) do not exist on the entity type then a new shadow state property(s) will be added to serve as the foreign key. A shadow state property is one that does not have a corresponding property in the entity class. The current value for the property is stored in the rather than being stored in instances of the entity class. If is not specified, then an attempt will be made to match the data type and order of foreign key properties against the primary key of the principal entity type. If they do not match, new shadow state properties that form a unique index will be added to the principal entity type to serve as the reference key. The name of entity type that is the dependent in this relationship (the type that has the foreign key properties). The name(s) of the foreign key property(s). The same builder instance so that multiple configuration calls can be chained. Configures the property(s) to use as the foreign key for this relationship. If the specified property name(s) do not exist on the entity type then a new shadow state property(s) will be added to serve as the foreign key. A shadow state property is one that does not have a corresponding property in the entity class. The current value for the property is stored in the rather than being stored in instances of the entity class. If is not specified, then an attempt will be made to match the data type and order of foreign key properties against the primary key of the principal entity type. If they do not match, new shadow state properties that form a unique index will be added to the principal entity type to serve as the reference key. The entity type that is the dependent in this relationship (the type that has the foreign key properties). The name(s) of the foreign key property(s). The same builder instance so that multiple configuration calls can be chained. Configures the property(s) to use as the foreign key for this relationship. If the specified property name(s) do not exist on the entity type then a new shadow state property(s) will be added to serve as the foreign key. A shadow state property is one that does not have a corresponding property in the entity class. The current value for the property is stored in the rather than being stored in instances of the entity class. If is not specified, then an attempt will be made to match the data type and order of foreign key properties against the primary key of the principal entity type. If they do not match, new shadow state properties that form a unique index will be added to the principal entity type to serve as the referenced key. The entity type that is the dependent in this relationship (the type that has the foreign key properties). The name(s) of the foreign key property(s). The same builder instance so that multiple configuration calls can be chained. Configures the property(s) to use as the foreign key for this relationship. If the specified property name(s) do not exist on the entity type then a new shadow state property(s) will be added to serve as the foreign key. A shadow state property is one that does not have a corresponding property in the entity class. The current value for the property is stored in the rather than being stored in instances of the entity class. If is not specified, then an attempt will be made to match the data type and order of foreign key properties against the primary key of the principal entity type. If they do not match, new shadow state properties that form a unique index will be added to the principal entity type to serve as the reference key. The entity type that is the dependent in this relationship. That is, the type that has the foreign key properties. A lambda expression representing the foreign key property(s) (t => t.Id1). If the foreign key is made up of multiple properties then specify an anonymous type including the properties (t => new { t.Id1, t.Id2 }). The order specified should match the order of corresponding keys in . The same builder instance so that multiple configuration calls can be chained. Configures the unique property(s) that this relationship targets. Typically you would only call this method if you want to use a property(s) other than the primary key as the principal property(s). If the specified property(s) is not already a unique constraint (or the primary key) then a new unique constraint will be introduced. The name of entity type that is the principal in this relationship (the type that has the reference key properties). The name(s) of the reference key property(s). The same builder instance so that multiple configuration calls can be chained. Configures the unique property(s) that this relationship targets. Typically you would only call this method if you want to use a property(s) other than the primary key as the principal property(s). If the specified property(s) is not already a unique constraint (or the primary key) then a new unique constraint will be introduced. The entity type that is the principal in this relationship (the type that has the reference key properties). The name(s) of the reference key property(s). The same builder instance so that multiple configuration calls can be chained. Configures the unique property(s) that this relationship targets. Typically you would only call this method if you want to use a property(s) other than the primary key as the principal property(s). If the specified property(s) is not already a unique constraint (or the primary key) then a new unique constraint will be introduced. The entity type that is the principal in this relationship (the type that has the reference key properties). The name(s) of the reference key property(s). The same builder instance so that multiple configuration calls can be chained. Configures the unique property(s) that this relationship targets. Typically you would only call this method if you want to use a property(s) other than the primary key as the principal property(s). If the specified property(s) is not already a unique constraint (or the primary key) then a new unique constraint will be introduced. If multiple principal key properties are specified, the order of principal key properties should match the order that the primary key or unique constraint properties were configured on the principal entity type. The entity type that is the principal in this relationship. That is, the type that has the reference key properties. A lambda expression representing the reference key property(s) (t => t.Id). If the principal key is made up of multiple properties then specify an anonymous type including the properties (t => new { t.Id1, t.Id2 }). The order specified should match the order of corresponding properties in . The same builder instance so that multiple configuration calls can be chained. Configures whether this is a required relationship (i.e. whether the foreign key property(s) can be assigned null). A value indicating whether this is a required relationship. The same builder instance so that multiple configuration calls can be chained. Configures the operation applied to dependent entities in the relationship when the principal is deleted or the relationship is severed. The action to perform. The same builder instance so that multiple configuration calls can be chained. Base class used for configuring a relationship. 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. 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. The principal entity type used to configure this relationship. The dependent entity type used to configure this relationship. 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. The foreign key that represents this relationship. Gets the internal builder being used to configure this relationship. Returns a string that represents the current object. A string that represents the current object. Determines whether the specified object is equal to the current object. The object to compare with the current object. true if the specified object is equal to the current object; otherwise, false. Serves as the default hash function. A hash code for the current object. Indicates whether an element in the was specified explicitly using the fluent API in , through use of a .NET attribute (data annotation), or by convention via the EF Core model building conventions. This type is typically used by database providers (and other extensions). It is generally not used in application code. Indicates that the model element was explicitly specified using the fluent API in . Indicates that the model element was specified through use of a .NET attribute (data annotation). Indicates that the model element was specified by convention via the EF Core model building conventions. Provides extension methods for Returns a value indicating whether the new configuration source can override configuration set with the old configuration source. The new configuration source. The old configuration source. true if the new configuration source can override configuration set with the old configuration source. Returns a value indicating whether the new configuration source can override configuration set with the old configuration source. The new configuration source. The old configuration source. true if the new configuration source can override configuration set with the old configuration source. Returns a value indicating whether the configuration source always takes precedence over the other configuration source. The new configuration source. The old configuration source. true if the configuration source always takes precedence over the other configuration source. Returns a value indicating whether the configuration source always takes precedence over the other configuration source. The new configuration source. The old configuration source. true if the configuration source always takes precedence over the other configuration source. Defines the binding of parameters to a CLR for an entity type. Creates a new instance. The constructor to use. The parameters to bind. The bound . Creates a that represents creating an entity instance using the given constructor. Information needed to create the expression. The expression tree. The type that will be created from the expression tree created for this binding. Describes the binding of a , which may or may not also have and associated , to a parameter in a constructor, factory method, or similar. Creates a new instance for the given service type. The CLR type. The associated , or null. Creates an expression tree representing the binding of the value of a property from a materialization expression to a parameter of the constructor, factory method, etc. The expression representing the materialization context. The expression representing the constant. The expression tree. A convention that finds backing fields for properties based on their names: * <[property name]>k__BackingField * _[camel-cased property name] * _[property name] * m_[camel-cased property name] * m_[property name] The field type must be of a type that's assignable to or from the property type. If more than one matching field is found an exception is thrown. Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Called after a property is added to the entity type. The builder for the property. Additional information associated with convention execution. Called after a navigation is added to the entity type. The builder for the foreign key. The navigation. Additional information associated with convention execution. Called after a model is finalized. The builder for the model. Additional information associated with convention execution. A convention that finds a base entity type that's already part of the model based on the associated CLR type hierarchy. Creates a new instance of . Parameter object containing dependencies for this convention. Called after an entity type is added to the model. The builder for the entity type. Additional information associated with convention execution. A convention that sets the delete behavior to for required foreign keys and for optional ones. Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Called after a foreign key is added to the entity type. The builder for the foreign key. Additional information associated with convention execution. Called after the requiredness for a foreign key is changed. The builder for the foreign key. Additional information associated with convention execution. Returns the delete behavior to set for the given foreign key. The foreign key. A convention that sets a flag on the model to always skip detecting changes if no entity type is using the strategy. Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Called after a model is finalized. The builder for the model. Additional information associated with convention execution. A convention that configures a property as a concurrency token if it has the . Creates a new instance of . Parameter object containing dependencies for this convention. Called after a property is added to the entity type with an attribute on the associated CLR property or field. The builder for the property. The attribute. The member that has the attribute. Additional information associated with convention execution. A convention that binds entity type constructor parameters to existing properties and service properties based on their names: * [parameter name] * [pascal-cased parameter name] * _[parameter name] * _[pascal-cased parameter name] * m_[parameter name] * m_[pascal-cased parameter name] Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Called after a model is finalized. The builder for the model. Additional information associated with convention execution. Represents a set of conventions used to build a model. Conventions to run to setup the initial model. Conventions to run when model building is completed. Conventions to run when an annotation is set or removed on a model. Conventions to run when an entity type is added to the model. Conventions to run when an entity type is ignored. Conventions to run when an entity type is removed. Conventions to run when a property is ignored. Conventions to run when the base entity type is changed. Conventions to run when a primary key is changed. Conventions to run when an annotation is set or removed on an entity type. Conventions to run when a foreign key is added. Conventions to run when a foreign key is removed. Conventions to run when the principal end of a relationship is configured. Conventions to run when the properties or the principal key of a foreign key are changed. Conventions to run when the uniqueness of a foreign key is changed. Conventions to run when the requiredness of a foreign key is changed. Conventions to run when the ownership of a foreign key is changed. Conventions to run when an annotation is changed on a foreign key. Conventions to run when a navigation property is added. Conventions to run when a navigation property is removed. Conventions to run when a key is added. Conventions to run when a key is removed. Conventions to run when an annotation is changed on a key. Conventions to run when an index is added. Conventions to run when an index is removed. Conventions to run when the uniqueness of an index is changed. Conventions to run when an annotation is changed on an index. Conventions to run when a property is added. Conventions to run when the nullability of a property is changed. Conventions to run when the field of a property is changed. Conventions to run when an annotation is changed on a property. Replaces an existing convention with a derived convention. The type of convention being replaced. The type of the old convention. The list of existing convention instances to scan. The new convention. true if the convention was replaced. Adds a convention before an existing convention. The type of convention being added. The list of existing convention instances to scan. The new convention. The type of the existing convention. true if the convention was added. Adds a convention after an existing convention. The type of convention being added. The list of existing convention instances to scan. The new convention. The type of the existing convention. true if the convention was added. Removes an existing convention. The type of convention being removed. The list of existing convention instances to scan. The type of the existing convention. true if the convention was removed. Call this method to build a for only core services when using the outside of . Note that it is unusual to use this method. Consider using in the normal way instead. The convention set. A convention that configures a property as if is specified, if is specified or if is specified using a . Creates a new instance of . Parameter object containing dependencies for this convention. Called after a property is added to the entity type with an attribute on the associated CLR property or field. The builder for the property. The attribute. The member that has the attribute. Additional information associated with convention execution. A convention that adds entity types based on the properties defined on the derived class. Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Called after a model is initialized. The builder for the model. Additional information associated with convention execution. A convention that finds derived entity types that are already part of the model based on the associated CLR type hierarchy. Creates a new instance of . Parameter object containing dependencies for this convention. Called after an entity type is added to the model. The builder for the entity type. Additional information associated with convention execution. A convention that configures the discriminator value for entity types in a hierarchy as the entity type name. Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Called after the base type of an entity type changes. The builder for the entity type. The new base entity type. The old base entity type. Additional information associated with convention execution. Called after an entity type is removed from the model. The builder for the model. The removed entity type. Additional information associated with convention execution. Configures the discriminator values for the given entity types. The entity types to configure. The discriminator builder. A base type for conventions that perform configuration based on an attribute specified on an entity type. The attribute type to look for. Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Called after an entity type is added to the model. The builder for the entity type. Additional information associated with convention execution. Called after an entity type is added to the model if it has an attribute. The builder for the entity type. The attribute. Additional information associated with convention execution. A convention that configures the foreign key properties associated with a navigation property based on the specified on the properties or the navigation properties. For one-to-one relationships the attribute has to be specified on the navigation property pointing to the principal. Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Called after a foreign key is added to the entity type. The builder for the foreign key. Additional information associated with convention execution. Called after a model is finalized. The builder for the model. Additional information associated with convention execution. A convention that creates indexes on foreign key properties unless they are already covered by existing indexes or keys. Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Called after a foreign key is added to the entity type. The builder for the foreign key. Additional information associated with convention execution. Called after a foreign key is removed. The builder for the entity type. The removed foreign key. Additional information associated with convention execution. Called after the foreign key properties or principal key are changed. The builder for the foreign key. The old foreign key properties. The old principal key. Additional information associated with convention execution. Called after a key is added to the entity type. The builder for the key. Additional information associated with convention execution. 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. Called after the base type of an entity type changes. The builder for the entity type. The new base entity type. The old base entity type. Additional information associated with convention execution. Called after an index is added to the entity type. The builder for the index. Additional information associated with convention execution. Called after an index is removed. The builder for the entity type. The removed index. Additional information associated with convention execution. Called after the uniqueness for a foreign key is changed. The builder for the foreign key. Additional information associated with convention execution. Called after the uniqueness for an index is changed. The builder for the index. Additional information associated with convention execution. 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. Returns a value indicating whether the given properties are already covered by an existing index. The properties to check. Whether the index to create should be unique. The properties of an existing index. Whether the existing index is unique. true if the existing index covers the given properties. Called after a model is finalized. The builder for the model. Additional information associated with convention execution. A convention that finds foreign key properties for relationships based on their names, ignoring case: * [navigation property name][principal key property name] * [navigation property name]Id * [principal entity name][principal key property name] * [principal entity name]Id If no matching properties were found, the relationship doesn't represent an ownership, the dependent side is not ambiguous and not derived then if the relationship is one-to-one, the primary key properties are used, otherwise the convention tries to match properties with the exact name as principal key properties if they are a proper subset of the dependent PK. If a match was found, but the property types are not compatible with the principal key types no further matches are searched for. If the relationship uses shadow properties created by convention they are recreated to remove suffixes used to make the names unique. Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Called after a foreign key is added to the entity type. The builder for the foreign key. Additional information associated with convention execution. Called after a navigation is added to the entity type. The builder for the foreign key. The navigation. Additional information associated with convention execution. Called after a property is added to the entity type. The builder for the property. Additional information associated with convention execution. Called after an entity type member is ignored. The builder for the entity type. The name of the ignored member. Additional information associated with convention execution. Called after the backing field for a property is changed. The builder for the property. The new field. The old field. Additional information associated with convention execution. Called after the nullability for a property is changed. The builder for the property. Additional information associated with convention execution. Called after the uniqueness for a foreign key is changed. The builder for the foreign key. Additional information associated with convention execution. Called after the requiredness for a foreign key is changed. The builder for the foreign key. Additional information associated with convention execution. Called after the foreign key properties or principal key are changed. The builder for the foreign key. The old foreign key properties. The old principal key. Additional information associated with convention execution. Called after the principal end of a foreign key is changed. The builder for the foreign key. Additional information associated with convention execution. Called after a key is added to the entity type. The builder for the key. Additional information associated with convention execution. 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. Called after the primary key for an entity type is changed. The builder for the entity type. The new primary key. The old primary key. Additional information associated with convention execution. 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. This is the base interface for all convention interfaces, it should not be implemented directly. Represents an object that delays any convention invocations until it is run or disposed. Runs the delayed conventions while tracking changes to the given foreign key. The foreign key to track. The new foreign key object if the given one was replaced by a convention. Starts tracking changes to the given foreign key. The foreign key to track. An object that will contain the reference to the new foreign key instance if the given one was replaced by a convention. Contextual information associated with each convention call. Calling this will prevent further processing of the associated event by other conventions. The common use case is when the metadata object was removed by the convention. Prevents conventions from being executed immediately when a metadata aspect is modified. All the delayed conventions will be executed after the returned object is disposed. This is useful when performing multiple operations that depend on each other. An object that should be disposed to execute the delayed conventions. Contextual information associated with each convention call. The type of the metadata object. Calling this will prevent further processing of the associated event by other conventions. The common use case is when the metadata object was replaced by the convention. The new metadata object. Calling this will prevent further processing of the associated event by other conventions if the given objects are different. The common use case is when the metadata object was replaced by the convention. The new metadata object. Represents an operation that should be performed when an entity type is added to the model. Called after an entity type is added to the model. The builder for the entity type. Additional information associated with convention execution. Represents an operation that should be performed when an annotation is changed on an entity type. Called after an annotation is changed on an entity type. The builder for the entity type. The annotation name. The new annotation. The old annotation. Additional information associated with convention execution. Represents an operation that should be performed when the base type of an entity type changes. Called after the base type of an entity type changes. The builder for the entity type. The new base entity type. The old base entity type. Additional information associated with convention execution. Represents an operation that should be performed when an entity type is ignored. Called after an entity type is ignored. The builder for the model. The name of the ignored entity type. The ignored entity type. Additional information associated with convention execution. Represents an operation that should be performed when an entity type member is ignored. Called after an entity type member is ignored. The builder for the entity type. The name of the ignored member. Additional information associated with convention execution. Represents an operation that should be performed when the primary key for an entity type is changed. Called after the primary key for an entity type is changed. The builder for the entity type. The new primary key. The old primary key. Additional information associated with convention execution. Represents an operation that should be performed when an entity type is removed from the model. Called after an entity type is removed from the model. The builder for the model. The removed entity type. Additional information associated with convention execution. Represents an operation that should be performed when a foreign key is added to the entity type. Called after a foreign key is added to the entity type. The builder for the foreign key. Additional information associated with convention execution. Represents an operation that should be performed when an annotation is changed on a foreign key. Called after an annotation is changed on a foreign key. The builder for the foreign key. The annotation name. The new annotation. The old annotation. Additional information associated with convention execution. Represents an operation that should be performed when the ownership value for a foreign key is changed. Called after the ownership value for a foreign key is changed. The builder for the foreign key. Additional information associated with convention execution. Represents an operation that should be performed when the principal end of a foreign key is changed. Called after the principal end of a foreign key is changed. The builder for the foreign key. Additional information associated with convention execution. Represents an operation that should be performed when the foreign key properties or principal key are changed. Called after the foreign key properties or principal key are changed. The builder for the foreign key. The old foreign key properties. The old principal key. Additional information associated with convention execution. Represents an operation that should be performed when a foreign key is removed. Called after a foreign key is removed. The builder for the entity type. The removed foreign key. Additional information associated with convention execution. Represents an operation that should be performed when the requiredness for a foreign key is changed. Called after the requiredness for a foreign key is changed. The builder for the foreign key. Additional information associated with convention execution. Represents an operation that should be performed when the uniqueness for a foreign key is changed. Called after the uniqueness for a foreign key is changed. The builder for the foreign key. Additional information associated with convention execution. Represents an operation that should be performed when an index is added to the entity type. Called after an index is added to the entity type. The builder for the index. Additional information associated with convention execution. Represents an operation that should be performed when an annotation is changed on an index. Called after an annotation is changed on an index. The builder for the index. The annotation name. The new annotation. The old annotation. Additional information associated with convention execution. Represents an operation that should be performed when an index is removed from the entity type. Called after an index is removed. The builder for the entity type. The removed index. Additional information associated with convention execution. Represents an operation that should be performed when the uniqueness for an index is changed. Called after the uniqueness for an index is changed. The builder for the index. Additional information associated with convention execution. Represents an operation that should be performed when a key is added to the entity type. Called after a key is added to the entity type. The builder for the key. Additional information associated with convention execution. Represents an operation that should be performed when an annotation is changed on a key. Called after an annotation is changed on a key. The builder for the key. The annotation name. The new annotation. The old annotation. Additional information associated with convention execution. Represents an operation that should be performed when a key is removed. Called after a key is removed. The builder for the entity type. The removed key. Additional information associated with convention execution. Represents an operation that should be performed when an annotation is changed on a model. Called after an annotation is changed on an model. The builder for the model. The annotation name. The new annotation. The old annotation. Additional information associated with convention execution. Represents an operation that should be performed when a model is finalized. Called after a model is finalized. The builder for the model. Additional information associated with convention execution. Represents an operation that should be performed when a model is initialized. Called after a model is initialized. The builder for the model. Additional information associated with convention execution. Represents an operation that should be performed when a navigation is added to the entity type. Called after a navigation is added to the entity type. The builder for the foreign key. The navigation. Additional information associated with convention execution. Represents an operation that should be performed when a navigation is removed from the entity type. Called after a navigation is removed from the entity type. The builder for the entity type that contained the navigation. The builder for the target entity type of the navigation. The navigation name. The member used for by the navigation. Additional information associated with convention execution. A service on the EF internal service provider that creates the that will be used by the current instance. This type is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Builds and returns the convention set to use. The convention set to use. A service on the EF internal service provider that allows extensions to customize the being used. Database providers should implement . This service is intended only for non-provider extensions that need to customize conventions. This type is typically used by extensions. It is generally not used in application code. The service lifetime is and multiple registrations are allowed. This means that each instance will use its own set of instances of this service. The implementations may depend on other services registered with any lifetime. The implementations do not need to be thread-safe. Called to customize or otherwise modify the given convention set. The convention set to customize. The customized convention set. A service on the EF internal service provider that creates the for the current database provider. This is combined with instances to produce the full convention set exposed by the service. Database providers should implement this service by inheriting from either (for non-relational providers) or `RelationalConventionSetBuilder` (for relational providers). This type is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Builds and returns the convention set for the current database provider. The convention set for the current database provider. A service on the EF internal service provider that creates the for the current database provider. This is combined with instances to produce the full convention set exposed by the service. Database providers should implement this service by inheriting from either this class (for non-relational providers) or `RelationalConventionSetBuilder` (for relational providers). This type is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Initializes a new instance of the class. Parameter object containing dependencies for this service. Parameter object containing service dependencies. Builds and returns the convention set for the current database provider. The convention set for the current database provider. Replaces an existing convention with a derived convention. The type of convention being replaced. The type of the old convention. The list of existing convention instances to scan. The new convention. Service dependencies parameter class for This type is typically used by database providers (and other extensions). It is generally not used in application code. 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. Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Creates the service dependencies parameter object for a . Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. 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. 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. The type mapping source. The parameter binding factories. The member classifier. The constructor binding factory. The model logger. The model validation logger. The set finder. The current context instance. The model validator. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Base type for inheritance discovery conventions Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Finds an entity type in the model that's associated with a CLR type that the given entity type's associated CLR type is derived from and is the closest one in the CLR hierarchy. The entity type. 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. 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. 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. 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. 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. Calling this will prevent further processing of the associated event by other conventions. Calling this will prevent further processing of the associated event by other conventions. The common use case is when the metadata object was removed or replaced by the convention. The new metadata object or null. Calling this will prevent further processing of the associated event by other conventions if the given objects are different. The common use case is when the metadata object was replaced by the convention. The new metadata object. Prevents conventions from being executed immediately when a metadata aspect is modified. All the delayed conventions will be executed after the returned object is disposed. This is useful when performing multiple operations that depend on each other. An object that should be disposed to execute the delayed conventions. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is and multiple registrations are allowed. This means that each instance will use its own set of instances of this service. The implementations may depend on other services registered with any lifetime. The implementations do not need to be thread-safe. 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. 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. A convention that configures the inverse navigation property based on the specified on the other navigation property. Creates a new instance of . Parameter object containing dependencies for this convention. Called for every navigation property that has an attribute after an entity type is added to the model. The builder for the entity type. The navigation member info. The CLR type of the target entity type The attribute. Additional information associated with convention execution. Called for every navigation property that has an attribute after an entity type is ignored. The builder for the model. The ignored entity type. The navigation member info. The CLR type of the target entity type. The attribute. Additional information associated with convention execution. Called after a navigation property that has an attribute is added to an entity type. The builder for the relationship. The navigation. The attribute. Additional information associated with convention execution. Called for every navigation property that has an attribute after the base type for an entity type is changed. The builder for the entity type. The new base type. The old base type. The navigation member info. The CLR type of the target entity type. The attribute. Additional information associated with convention execution. Called after a navigation property that has an attribute is ignored. The builder for the entity type. The navigation member info. The CLR type of the target entity type. The attribute. Additional information associated with convention execution. Called after a model is finalized. The builder for the model. Additional information associated with convention execution. Returns a value indication whether the given navigation has ambiguous inverse navigations with . The entity type. The navigation. Target entity type. true if the given navigation has ambiguous inverse navigations with . Represents an operation that should be performed when a property is added to the entity type. Called after a property is added to the entity type. The builder for the property. Additional information associated with convention execution. Represents an operation that should be performed when an annotation is changed on a property. Called after an annotation is changed on a property. The builder for the property. The annotation name. The new annotation. The old annotation. Additional information associated with convention execution. Represents an operation that should be performed when the backing field for a property is changed. Called after the backing field for a property is changed. The builder for the property. The new field. The old field. Additional information associated with convention execution. Represents an operation that should be performed when the nullability for a property is changed. Called after the nullability for a property is changed. The builder for the property. Additional information associated with convention execution. A convention that configures the entity type key based on the specified on a property. Creates a new instance of . Parameter object containing dependencies for this convention. Called after a property is added to the entity type with an attribute on the associated CLR property or field. The builder for the property. The attribute. The member that has the attribute. Additional information associated with convention execution. Called after a model is finalized. The builder for the model. Additional information associated with convention execution. A convention that finds primary key property for the entity type based on the names, ignoring case: * Id * [entity name]Id If the entity type is owned through a reference navigation property then the corresponding foreign key properties are used. If the entity type is owned through a collection navigation property then a composite primary key is configured using the foreign key properties with an extra property that matches the naming convention above. Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Returns the properties that should be used for the primary key. The entity type. The properties to consider. The properties that should be used for the primary key. Called after an entity type is added to the model. The builder for the entity type. Additional information associated with convention execution. Called after the base type of an entity type changes. The builder for the entity type. The new base entity type. The old base entity type. Additional information associated with convention execution. Called after a property is added to the entity type. The builder for the property. Additional information associated with convention execution. Called after the backing field for a property is changed. The builder for the property. The new field. The old field. Additional information associated with convention execution. 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. Called after a foreign key is added to the entity type. The builder for the foreign key. Additional information associated with convention execution. Called after the foreign key properties or principal key are changed. The builder for the foreign key. The old foreign key properties. The old principal key. Additional information associated with convention execution. Called after the ownership value for a foreign key is changed. The builder for the foreign key. Additional information associated with convention execution. Called after a foreign key is removed. The builder for the entity type. The removed foreign key. Additional information associated with convention execution. Called after the uniqueness for a foreign key is changed. The builder for the foreign key. Additional information associated with convention execution. A convention that configures the maximum length based on the applied on the property. Creates a new instance of . Parameter object containing dependencies for this convention. Called after a property is added to the entity type with an attribute on the associated CLR property or field. The builder for the property. The attribute. The member that has the attribute. Additional information associated with convention execution. A convention that removes any state that is only used during model building. Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Called after a model is finalized. The builder for the model. Additional information associated with convention execution. A base type for conventions that perform configuration based on an attribute applied to a navigation. The attribute type to look for. Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Called after an entity type is added to the model. The builder for the entity type. Additional information associated with convention execution. Called after an entity type is ignored. The builder for the model. The name of the ignored entity type. The ignored entity type. Additional information associated with convention execution. Called after the base type of an entity type changes. The builder for the entity type. The new base entity type. The old base entity type. Additional information associated with convention execution. Called after a navigation is added to the entity type. The builder for the foreign key. The navigation. Additional information associated with convention execution. Called after an entity type member is ignored. The builder for the entity type. The name of the ignored member. Additional information associated with convention execution. Returns the attributes applied to the given navigation. The entity type. The navigation. The attribute type to look for. The attributes applied to the given navigation. Called for every navigation property that has an attribute after an entity type is added to the model. The builder for the entity type. The navigation member info. The CLR type of the target entity type The attribute. Additional information associated with convention execution. Called for every navigation property that has an attribute after an entity type is ignored. The builder for the model. The ignored entity type. The navigation member info. The CLR type of the target entity type. The attribute. Additional information associated with convention execution. Called for every navigation property that has an attribute after the base type for an entity type is changed. The builder for the entity type. The new base type. The old base type. The navigation member info. The CLR type of the target entity type. The attribute. Additional information associated with convention execution. Called after a navigation property that has an attribute is added to an entity type. The builder for the relationship. The navigation. The attribute. Additional information associated with convention execution. Called after a navigation property that has an attribute is ignored. The builder for the entity type. The navigation member info. The CLR type of the target entity type. The attribute. Additional information associated with convention execution. A convention that configures the navigations to owned entity types as eager loaded. Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Called after the ownership value for a foreign key is changed. The builder for the foreign key. Additional information associated with convention execution. A base type for conventions that configure model aspects based on whether the member type is a non-nullable reference type. Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Returns a value indicating whether the member type is a non-nullable reference type. The model builder used to build the model. The member info. true if the member type is a non-nullable reference type. Called after a model is finalized. Removes the cached state annotation used by this convention. The builder for the model. Additional information associated with convention execution. A convention that configures the non-nullable navigations to principal entity type as required. Creates a new instance of . Parameter object containing dependencies for this convention. Called after a navigation is added to the entity type. The builder for the foreign key. The navigation. Additional information associated with convention execution. A convention that configures the properties of non-nullable types as required. Creates a new instance of . Parameter object containing dependencies for this convention. Called after a property is added to the entity type. The builder for the property. Additional information associated with convention execution. Called after the backing field for a property is changed. The builder for the property. The new field. The old field. Additional information associated with convention execution. A convention that ignores entity types that have the . Creates a new instance of . Parameter object containing dependencies for this convention. Called after an entity type is added to the model if it has an attribute. The builder for the entity type. The attribute. Additional information associated with convention execution. A convention that ignores members on entity types that have the . Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Called after an entity type is added to the model. The builder for the entity type. Additional information associated with convention execution. A convention that configures the entity types that have the as owned. Creates a new instance of . Parameter object containing dependencies for this convention. Called after an entity type is added to the model if it has an attribute. The builder for the entity type. The attribute. Additional information associated with convention execution. A convention that configures owned entity types with defining navigation as owned entity types without defining navigation if there's only one navigation of this type. Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Called after an entity type is removed from the model. The builder for the model. The removed entity type. Additional information associated with convention execution. A base type for conventions that perform configuration based on an attribute applied to a property. The attribute type to look for. Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Called after a property is added to the entity type. The builder for the property. Additional information associated with convention execution. Called after the backing field for a property is changed. The builder for the property. The new field. The old field. Additional information associated with convention execution. Called after a property is added to the entity type with an attribute on the associated CLR property or field. The builder for the property. The attribute. The member that has the attribute. Additional information associated with convention execution. A convention that adds properties to entity types corresponding to scalar public properties on the CLR type. Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Called after an entity type is added to the model. The builder for the entity type. Additional information associated with convention execution. Called after the base type of an entity type changes. The builder for the entity type. The new base entity type. The old base entity type. Additional information associated with convention execution. Convention that converts accesses of DbSets inside query filters and defining queries into EntityQueryables. This makes them consistent with how DbSet accesses in the actual queries are represented, which allows for easier processing in the query pipeline. Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Visitor used to rewrite DbSets accesses encountered in query filters and defining queries to EntityQueryables. Called after a model is finalized. The builder for the model. Additional information associated with convention execution. A convention that configures relationships between entity types based on the navigation properties as long as there is no ambiguity as to which is the corresponding inverse navigation. Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Called after an entity type is added to the model. The builder for the entity type. Additional information associated with convention execution. Called after the base type of an entity type changes. The builder for the entity type. The new base entity type. The old base entity type. Additional information associated with convention execution. Called after a navigation is removed from the entity type. The builder for the entity type that contained the navigation. The builder for the target entity type of the navigation. The navigation name. The member used for by the navigation. Additional information associated with convention execution. Called after an entity type is ignored. The builder for the model. The name of the ignored entity type. The ignored entity type. Additional information associated with convention execution. Called after an entity type member is ignored. The builder for the entity type. The name of the ignored member. Additional information associated with convention execution. Called after a navigation is added to the entity type. The builder for the foreign key. The navigation. Additional information associated with convention execution. Called after the ownership value for a foreign key is changed. The builder for the foreign key. Additional information associated with convention execution. A convention that configures the principal side of the relationship as required if the is applied on the navigation property to the principal entity type. Creates a new instance of . Parameter object containing dependencies for this convention. Called after a navigation property that has an attribute is added to an entity type. The builder for the relationship. The navigation. The attribute. Additional information associated with convention execution. A convention that configures properties as required if they have the applied. Creates a new instance of . Parameter object containing dependencies for this convention. Called after a property is added to the entity type with an attribute on the associated CLR property or field. The builder for the property. The attribute. The member that has the attribute. Additional information associated with convention execution. A convention that adds service properties to entity types. Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Called after an entity type is added to the model. The builder for the entity type. Additional information associated with convention execution. Called after the base type of an entity type changes. The builder for the entity type. The new base entity type. The old base entity type. Additional information associated with convention execution. Called after an entity type member is ignored. The builder for the entity type. The name of the ignored member. Additional information associated with convention execution. Called after a model is finalized. The builder for the model. Additional information associated with convention execution. A convention that configures the maximum length based on the applied on the property. Creates a new instance of . Parameter object containing dependencies for this convention. Called after a property is added to the entity type with an attribute on the associated CLR property or field. The builder for the property. The attribute. The member that has the attribute. Additional information associated with convention execution. A convention that configures the property as a concurrency token if a is applied to it. Creates a new instance of . Parameter object containing dependencies for this convention. Called after a property is added to the entity type with an attribute on the associated CLR property or field. The builder for the property. The attribute. The member that has the attribute. Additional information associated with convention execution. A convention that creates and assigns store type mapping to entity properties. Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Called after a model is finalized. The builder for the model. Additional information associated with convention execution. A convention that checks whether the model is valid. Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Called after a model is finalized. The builder for the model. Additional information associated with convention execution. A convention that configures store value generation as on properties that are part of the primary key and not part of any foreign keys. Creates a new instance of . Parameter object containing dependencies for this convention. Parameter object containing service dependencies. Called after a foreign key is added to the entity type. The builder for the foreign key. Additional information associated with convention execution. Called after a foreign key is removed. The builder for the entity type. The removed foreign key. Additional information associated with convention execution. Called after the foreign key properties or principal key are changed. The builder for the foreign key. The old foreign key properties. The old principal key. Additional information associated with convention execution. Called after the primary key for an entity type is changed. The builder for the entity type. The new primary key. The old primary key. Additional information associated with convention execution. Called after the base type of an entity type changes. The builder for the entity type. The new base entity type. The old base entity type. Additional information associated with convention execution. Returns the store value generation strategy to set for the given property. The property. The store value generation strategy to set for the given property. Returns the store value generation strategy to set for the given property. The property. The store value generation strategy to set for the given property. Indicates whether the specified property can have the value generated by the store or by a non-temporary value generator when not set. The key property that might be store generated. A value indicating whether the specified property should have the value generated by the store. Describes the binding from a method on an EF internal dependency injection service, which may or may not also have and associated , to a parameter in a constructor, factory method, or similar. Creates a new instance for the given method of the given service type. The parameter CLR type. The service CLR types, as resolved from dependency injection The method of the service to bind to. The associated , or null. The method being bound to, as defined on the dependency injection service interface. Creates an expression tree representing the binding of the value of a property from a materialization expression to a parameter of the constructor, factory method, etc. The expression representing the materialization context. The expression representing the constant. The expression tree. Describes the binding from an EF internal dependency injection service, which may or may not also have and associated , to a parameter in a constructor, factory method, or similar. Creates a new instance for the given service type. The parameter CLR type. The service CLR types, as resolved from dependency injection The associated , or null. Creates an expression tree representing the binding of the value of a property from a materialization expression to a parameter of the constructor, factory method, etc. The expression representing the materialization context. The expression representing the constant. The expression tree. Describes the binding of a , which may or may not also have and associated , to a parameter in a constructor, factory method, or similar. Creates a new instance for the given service type. The associated , or null. Creates an expression tree representing the binding of the value of a property from a materialization expression to a parameter of the constructor, factory method, etc. The expression representing the materialization context. The expression representing the constant. The expression tree. Defines the binding of parameters to a factory method. Creates a new instance for a static factory method. The factory method to bind to. The parameters to use. The CLR type of the instance created by the factory method. Creates a new instance for a static factory method. The object on which the factory method should be called. The factory method to bind to. The parameters to use. The CLR type of the instance created by the factory method. Creates a using the given method. Information needed to create the expression. The expression tree. The type that will be created from the expression tree created for this binding. Represents operations backed by compiled delegates that allow manipulation of collections on navigation properties. Adds a value to the navigation property collection, unless it is already contained in the collection. The entity instance. The value to add. If true, then the value is being added as part of query materialization. True if a value was added; false if it was already in the collection. Checks whether the value is contained in the collection. The entity instance. The value to check. True if the value is contained in the collection; false otherwise. Removes a value from the collection. The entity instance. The value to check. True if the value was contained in the collection; false otherwise. Creates a new collection instance of the appropriate type for the navigation property. The collection instance. Either returns the existing collection instance set on the navigation property, or if none exists, then creates a new instance, sets it, and returns it. The entity instance. If true, then this is happening as part of query materialization; false otherwise. The existing or new collection. The collection type. Represents operations backed by compiled delegates that support getting the value of a mapped EF property. Gets the property value. The entity instance. The property value. Checks whether or not the property is set to the CLR default for its type. The entity instance. True if the property value is the CLR default; false it is any other value. Represents operations backed by compiled delegates that support setting the value of a mapped EF property. Sets the value of the property. The entity instance. The value to set. A factory for finding and creating instances for a given CLR constructor. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Attempts to create a for the given and The entity type. The constructor to use. The binding, or null if null could be created. The parameters that could not be bound. true if a binding was created; false otherwise. Attempts to create a for the given and The entity type. The constructor to use. The binding, or null if null could be created. The parameters that could not be bound. true if a binding was created; false otherwise. A class that exposes annotations that can be modified. Annotations allow for arbitrary metadata to be stored on an object. This interface is typically used by database providers (and other extensions). It is generally not used in application code. Gets all annotations on the current object. Adds an annotation to this object. Throws if an annotation with the specified name already exists. The name of the annotation to be added. The value to be stored in the annotation. Indicates whether the configuration was specified using a data annotation. The newly added annotation. Sets the annotation stored under the given name. Overwrites the existing annotation if an annotation with the specified name already exists. The name of the annotation to be set. The value to be stored in the annotation. Indicates whether the configuration was specified using a data annotation. Gets the annotation with the given name, returning null if it does not exist. The name of the annotation to find. The existing annotation if an annotation with the specified name already exists. Otherwise, null. Removes the annotation with the given name from this object. The name of the annotation to remove. The annotation that was removed. An arbitrary piece of metadata that can be stored on an object that implements . This interface is typically used by database providers (and other extensions). It is generally not used in application code. Returns the configuration source for this annotation. The configuration source. Represents an entity in an . This interface is used during model creation and allows the metadata to be modified. Once the model is built, represents a read-only view of the same metadata. Returns the configuration source for this entity type. The configuration source. Gets the model this entity belongs to. Gets the builder that can be used to configure this entity type. Gets the base type of this entity type. Returns null if this is not a derived type in an inheritance hierarchy. Gets the defining entity type. Gets a value indicating whether the entity type has no keys. If true it will only be usable for queries. Sets the base type of this entity type. Returns null if this is not a derived type in an inheritance hierarchy. The base entity type. Indicates whether the configuration was specified using a data annotation. Sets a value indicating whether the entity type has no keys. When set to true it will only be usable for queries. null to reset to default. A value indicating whether the entity type to has no keys. Indicates whether the configuration was specified using a data annotation. Sets the primary key for this entity type. The properties that make up the primary key. Indicates whether the configuration was specified using a data annotation. The newly created key. Gets primary key for this entity type. Returns null if no primary key is defined. The primary key, or null if none is defined. Returns the configuration source for the primary key. The configuration source for the primary key. Adds a new alternate key to this entity type. The properties that make up the alternate key. Indicates whether the configuration was specified using a data annotation. The newly created key. Gets the primary or alternate key that is defined on the given properties. Returns null if no key is defined for the given properties. The properties that make up the key. The key, or null if none is defined. Gets the primary and alternate keys for this entity type. The primary and alternate keys. Removes a primary or alternate key from this entity type. The key to be removed. Adds a new relationship to this entity type. The properties that the foreign key is defined on. The primary or alternate key that is referenced. The entity type that the relationship targets. This may be different from the type that is defined on when the relationship targets a derived type in an inheritance hierarchy (since the key is defined on the base type of the hierarchy). Indicates whether the configuration source should be set for the properties, principal key and principal end. Indicates whether the configuration was specified using a data annotation. The newly created foreign key. Gets the foreign key for the given properties that points to a given primary or alternate key. Returns null if no foreign key is found. The properties that the foreign key is defined on. The primary or alternate key that is referenced. The entity type that the relationship targets. This may be different from the type that is defined on when the relationship targets a derived type in an inheritance hierarchy (since the key is defined on the base type of the hierarchy). The foreign key, or null if none is defined. Gets the foreign keys defined on this entity type. The foreign keys defined on this entity type. Removes a foreign key from this entity type. The foreign key to be removed. Adds an index to this entity type. The properties that are to be indexed. Indicates whether the configuration was specified using a data annotation. The newly created index. Gets the index defined on the given properties. Returns null if no index is defined. The properties to find the index on. The index, or null if none is found. Gets the indexes defined on this entity type. The indexes defined on this entity type. Removes an index from this entity type. The index to remove. Adds a property to this entity type. The name of the property to add. The type of value the property will hold. The corresponding CLR type member or null for a shadow property. An indexer with a string parameter and object return type can be used. Indicates whether the type configuration source should be set. Indicates whether the configuration was specified using a data annotation. The newly created property. Gets the property with a given name. Returns null if no property with the given name is defined. This API only finds scalar properties and does not find navigation properties. Use to find a navigation property. The name of the property. The property, or null if none is found. Gets the properties defined on this entity type. This API only returns scalar properties and does not return navigation properties. Use to get navigation properties. The properties defined on this entity type. Removes a property from this entity type. The property to remove. Adds a to this entity type. The or of the property to add. Indicates whether the configuration was specified using a data annotation. The newly created property. Gets the with a given name. Returns null if no property with the given name is defined. This API only finds service properties and does not find scalar or navigation properties. The name of the property. The service property, or null if none is found. Gets all the defined on this entity type. This API only returns service properties and does not return scalar or navigation properties. The service properties defined on this entity type. Removes an from this entity type. The name of the property to remove. The property that was removed. Represents a relationship where a foreign key property(s) in a dependent entity type reference a corresponding primary or alternate key in a principal entity type. This interface is used during model creation and allows the metadata to be modified. Once the model is built, represents a read-only view of the same metadata. Gets the builder that can be used to configure this foreign key. Gets the foreign key properties in the dependent entity. Gets the primary or alternate key that the relationship targets. Gets the dependent entity type. This may be different from the type that are defined on when the relationship is defined a derived type in an inheritance hierarchy (since the properties may be defined on a base type). Gets the principal entity type that this relationship targets. This may be different from the type that is defined on when the relationship targets a derived type in an inheritance hierarchy (since the key is defined on the base type of the hierarchy). Gets the navigation property on the dependent entity type that points to the principal entity. Gets the navigation property on the principal entity type that points to the dependent entity. Returns the configuration source for this property. The configuration source. Sets the foreign key properties and that target principal key. Foreign key properties in the dependent entity. The primary or alternate key to target. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The configuration source for . Returns the configuration source for . The configuration source for . Returns the configuration source for . The configuration source for . Sets a value indicating whether the values assigned to the foreign key properties are unique. A value indicating whether the values assigned to the foreign key properties are unique. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The configuration source for . Sets a value indicating whether this relationship is required. If true, the dependent entity must always be assigned to a valid principal entity. A value indicating whether this relationship is required. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The configuration source for . Sets a value indicating whether this relationship defines an ownership. If true, the dependent entity must always be accessed via the navigation from the principal entity. A value indicating whether this relationship defines an ownership. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The configuration source for . Sets a value indicating how a delete operation is applied to dependent entities in the relationship when the principal is deleted or the relationship is severed. A value indicating how a delete operation is applied to dependent entities in the relationship when the principal is deleted or the relationship is severed. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The configuration source for . Sets the navigation property on the dependent entity type that points to the principal entity. The name of the navigation property on the dependent type. Passing null will result in there being no navigation property defined. Indicates whether the configuration was specified using a data annotation. The newly created navigation property. Sets the navigation property on the dependent entity type that points to the principal entity. The navigation property on the dependent type. Passing null will result in there being no navigation property defined. Indicates whether the configuration was specified using a data annotation. The newly created navigation property. Returns the configuration source for . The configuration source for . Sets the navigation property on the principal entity type that points to the dependent entity. The name of the navigation property on the principal type. Passing null will result in there being no navigation property defined. Indicates whether the configuration was specified using a data annotation. The newly created navigation property. Sets the navigation property on the principal entity type that points to the dependent entity. The name of the navigation property on the principal type. Passing null will result in there being no navigation property defined. Indicates whether the configuration was specified using a data annotation. The newly created navigation property. Returns the configuration source for . The configuration source for . Represents an index on a set of properties. This interface is used during model creation and allows the metadata to be modified. Once the model is built, represents a read-only view of the same metadata. Gets the builder that can be used to configure this index. Gets the properties that this index is defined on. Gets the entity type the index is defined on. This may be different from the type that are defined on when the index is defined a derived type in an inheritance hierarchy (since the properties may be defined on a base type). Returns the configuration source for this index. The configuration source. Sets a value indicating whether the values assigned to the index properties are unique. A value indicating whether the values assigned to the index properties are unique. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The configuration source for . Represents a primary or alternate key on an entity. This interface is used during model creation and allows the metadata to be modified. Once the model is built, represents a read-only view of the same metadata. Gets the builder that can be used to configure this key. Gets the properties that make up the key. Gets the entity type the key is defined on. This may be different from the type that are defined on when the key is defined a derived type in an inheritance hierarchy (since the properties may be defined on a base type). Returns the configuration source for this key. The configuration source. Metadata about the shape of entities, the relationships between them, and how they map to the database. A model is typically created by overriding the method on a derived . This interface is used during model creation and allows the metadata to be modified. Once the model is built, represents a read-only view of the same metadata. Gets the builder that can be used to configure this model. Adds a shadow state entity type to the model. Shadow entities are not currently supported in a model that is used at runtime with a . Therefore, shadow state entity types will only exist in migration model snapshots, etc. The name of the entity to be added. Indicates whether the configuration was specified using a data annotation. The new entity type. Adds an entity type to the model. The CLR class that is used to represent instances of the entity type. Indicates whether the configuration was specified using a data annotation. The new entity type. Adds an entity type with a defining navigation to the model. The name of the entity type to be added. The defining navigation. The defining entity type. Indicates whether the configuration was specified using a data annotation. The new entity type. Adds an entity type with a defining navigation to the model. The CLR class that is used to represent instances of this entity type. The defining navigation. The defining entity type. Indicates whether the configuration was specified using a data annotation. The new entity type. Gets the entity with the given name. Returns null if no entity type with the given name is found or the entity type has a defining navigation. The name of the entity type to find. The entity type, or null if none are found. Gets the entity type for the given name, defining navigation name and the defining entity type. Returns null if no matching entity type is found. The name of the entity type to find. The defining navigation of the entity type to find. The defining entity type of the entity type to find. The entity type, or null if none are found. Removes an entity type from the model. The entity type to be removed. Gets all entity types defined in the model. All entity types defined in the model. Marks the given entity type name as ignored. The name of the entity type to be ignored. Indicates whether the configuration was specified using a data annotation. Removes the ignored entity type name. The name of the ignored entity type to be removed. Indicates whether the given entity type name is ignored. The name of the entity type that could be ignored. The configuration source if the given entity type name is ignored, null otherwise. Represents a navigation property which can be used to navigate a relationship. This interface is used during model creation and allows the metadata to be modified. Once the model is built, represents a read-only view of the same metadata. Gets the type that this property belongs to. Gets the foreign key that defines the relationship this navigation property will navigate. Represents a scalar property of an entity. This interface is used during model creation and allows the metadata to be modified. Once the model is built, represents a read-only view of the same metadata. Gets the builder that can be used to configure this property. Gets the type that this property belongs to. Returns the configuration source for this property. The configuration source. Returns the configuration source for . The configuration source for . Sets a value indicating whether this property can contain null. A value indicating whether this property can contain null. null to reset to default. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The configuration source for . Sets a value indicating when a value for this property will be generated by the database. Even when the property is set to be generated by the database, EF may still attempt to save a specific value (rather than having one generated by the database) when the entity is added and a value is assigned, or the property is marked as modified for an existing entity. See and for more information. A value indicating when a value for this property will be generated by the database. null to reset to default. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The configuration source for . Sets a value indicating whether this property is used as a concurrency token. When a property is configured as a concurrency token the value in the database will be checked when an instance of this entity type is updated or deleted during to ensure it has not changed since the instance was retrieved from the database. If it has changed, an exception will be thrown and the changes will not be applied to the database. Sets a value indicating whether this property is used as a concurrency token. null to reset to default. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The configuration source for . Base type for navigation and scalar properties. This interface is used during model creation and allows the metadata to be modified. Once the model is built, represents a read-only view of the same metadata. Gets the type that this property belongs to. Sets the for the underlying CLR field that this property should use. By default, the backing field, if one is found or has been specified, is used when new objects are constructed, typically when entities are queried from the database. Properties are used for all other accesses. This can be changed by calling . The for the underlying CLR field to use. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The configuration source for . A in the Entity Framework model that represents an injected service from the . This interface is used during model creation and allows the metadata to be modified. Once the model is built, represents a read-only view of the same metadata. Gets the builder that can be used to configure this service property. Gets the type that this property belongs to. Returns the configuration source for this property. The configuration source. Sets the for this property. The parameter binding. Indicates whether the configuration was specified using a data annotation. Returns the configuration source for . The configuration source for . Represents a type in an . This interface is used during model creation and allows the metadata to be modified. Once the model is built, represents a read-only view of the same metadata. Gets the model that this type belongs to. Marks the given member name as ignored, preventing conventions from adding a matching property or navigation to the type. The name of the member to be ignored. Indicates whether the configuration was specified using a data annotation. Removes the ignored member name. The name of the member to be removed. Indicates whether the given member name is ignored. The name of the member to be ignored. The configuration source if the given member name is ignored, null otherwise. Gets all the ignored members. The list of ignored member names. Represents an entity type in an . Gets the base type of this entity type. Returns null if this is not a derived type in an inheritance hierarchy. Gets the name of the defining navigation. Gets the defining entity type. Gets primary key for this entity type. Returns null if no primary key is defined. The primary key, or null if none is defined. Gets the primary or alternate key that is defined on the given properties. Returns null if no key is defined for the given properties. The properties that make up the key. The key, or null if none is defined. Gets the primary and alternate keys for this entity type. The primary and alternate keys. Gets the foreign key for the given properties that points to a given primary or alternate key. Returns null if no foreign key is found. The properties that the foreign key is defined on. The primary or alternate key that is referenced. The entity type that the relationship targets. This may be different from the type that is defined on when the relationship targets a derived type in an inheritance hierarchy (since the key is defined on the base type of the hierarchy). The foreign key, or null if none is defined. Gets the foreign keys defined on this entity type. The foreign keys defined on this entity type. Gets the index defined on the given properties. Returns null if no index is defined. The properties to find the index on. The index, or null if none is found. Gets the indexes defined on this entity type. The indexes defined on this entity type. Gets the property with a given name. Returns null if no property with the given name is defined. This API only finds scalar properties and does not find navigation properties. Use to find a navigation property. The name of the property. The property, or null if none is found. Gets the properties defined on this entity type. This API only returns scalar properties and does not return navigation properties. Use to get navigation properties. The properties defined on this entity type. Gets the with a given name. Returns null if no property with the given name is defined. This API only finds service properties and does not find scalar or navigation properties. The name of the property. The service property, or null if none is found. Gets all the defined on this entity type. This API only returns service properties and does not return scalar or navigation properties. The service properties defined on this entity type. Represents a relationship where a foreign key property(s) in a dependent entity type reference a corresponding primary or alternate key in a principal entity type. Gets the dependent entity type. This may be different from the type that are defined on when the relationship is defined a derived type in an inheritance hierarchy (since the properties may be defined on a base type). Gets the foreign key properties in the dependent entity. Gets the principal entity type that this relationship targets. This may be different from the type that is defined on when the relationship targets a derived type in an inheritance hierarchy (since the key is defined on the base type of the hierarchy). Gets the primary or alternate key that the relationship targets. Gets the navigation property on the dependent entity type that points to the principal entity. Gets the navigation property on the principal entity type that points to the dependent entity. Gets a value indicating whether the values assigned to the foreign key properties are unique. Gets a value indicating whether this relationship is required. If true, the dependent entity must always be assigned to a valid principal entity. Gets or sets a value indicating whether this relationship defines an ownership. If true, the dependent entity must always be accessed via the navigation from the principal entity. Gets a value indicating how a delete operation is applied to dependent entities in the relationship when the principal is deleted or the relationship is severed. Represents an index on a set of properties. Gets the properties that this index is defined on. Gets a value indicating whether the values assigned to the indexed properties are unique. Gets the entity type the index is defined on. This may be different from the type that are defined on when the index is defined a derived type in an inheritance hierarchy (since the properties may be defined on a base type). Represents a primary or alternate key on an entity. Gets the properties that make up the key. Gets the entity type the key is defined on. This may be different from the type that are defined on when the key is defined a derived type in an inheritance hierarchy (since the properties may be defined on a base type). Represents a reference to a metadata object. If the metadata object instance is replaced this will be updated with the new object. The metadata type The referenced object. Metadata about the shape of entities, the relationships between them, and how they map to the database. A model is typically created by overriding the see cref="DbContext.OnConfiguring(DbContextOptionsBuilder)" /> method on a derived . The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Gets all entity types defined in the model. All entity types defined in the model. Gets the entity type with the given name. Returns null if no entity type with the given name is found or the entity type has a defining navigation. The name of the entity type to find. The entity type, or null if none are found. Gets the entity type for the given name, defining navigation name and the defining entity type. Returns null if no matching entity type is found. The name of the entity type to find. The defining navigation of the entity type to find. The defining entity type of the entity type to find. The entity type, or null if none are found. A class that exposes annotations that can be modified. Annotations allow for arbitrary metadata to be stored on an object. This interface is typically used by database providers (and other extensions). It is generally not used in application code. Gets or sets the value of the annotation with the given name. The name of the annotation. The value of the existing annotation if an annotation with the specified name already exists. Otherwise, null. Adds an annotation to this object. Throws if an annotation with the specified name already exists. The name of the annotation to be added. The value to be stored in the annotation. The newly added annotation. Sets the annotation stored under the given key. Overwrites the existing annotation if an annotation with the specified name already exists. The name of the annotation to be added. The value to be stored in the annotation. Removes the given annotation from this object. The name of the annotation to remove. The annotation that was removed. Represents an entity in an . This interface is used during model creation and allows the metadata to be modified. Once the model is built, represents a read-only view of the same metadata. Gets the model this entity belongs to. Gets or sets the base type of this entity type. Returns null if this is not a derived type in an inheritance hierarchy. Gets the defining entity type. Gets or sets a value indicating whether the entity type has no keys. If set to true it will only be usable for queries. Sets the primary key for this entity type. The properties that make up the primary key. The newly created key. Gets primary key for this entity type. Returns null if no primary key is defined. The primary key, or null if none is defined. Adds a new alternate key to this entity type. The properties that make up the alternate key. The newly created key. Gets the primary or alternate key that is defined on the given properties. Returns null if no key is defined for the given properties. The properties that make up the key. The key, or null if none is defined. Gets the primary and alternate keys for this entity type. The primary and alternate keys. Removes a primary or alternate key from this entity type. The key to be removed. Adds a new relationship to this entity type. The properties that the foreign key is defined on. The primary or alternate key that is referenced. The entity type that the relationship targets. This may be different from the type that is defined on when the relationship targets a derived type in an inheritance hierarchy (since the key is defined on the base type of the hierarchy). The newly created foreign key. Gets the foreign key for the given properties that points to a given primary or alternate key. Returns null if no foreign key is found. The properties that the foreign key is defined on. The primary or alternate key that is referenced. The entity type that the relationship targets. This may be different from the type that is defined on when the relationship targets a derived type in an inheritance hierarchy (since the key is defined on the base type of the hierarchy). The foreign key, or null if none is defined. Gets the foreign keys defined on this entity type. The foreign keys defined on this entity type. Removes a foreign key from this entity type. The foreign key to be removed. Adds an index to this entity type. The properties that are to be indexed. The newly created index. Gets the index defined on the given properties. Returns null if no index is defined. The properties to find the index on. The index, or null if none is found. Gets the indexes defined on this entity type. The indexes defined on this entity type. Removes an index from this entity type. The index to remove. Adds a property to this entity type. The name of the property to add. The type of value the property will hold. The corresponding CLR type member or null for a shadow property. An indexer with a string parameter and object return type can be used. The newly created property. Gets the property with a given name. Returns null if no property with the given name is defined. This API only finds scalar properties and does not find navigation properties. Use to find a navigation property. The name of the property. The property, or null if none is found. Gets the properties defined on this entity type. This API only returns scalar properties and does not return navigation properties. Use to get navigation properties. The properties defined on this entity type. Removes a property from this entity type. The property to remove. Adds a to this entity type. The or of the property to add. The newly created property. Gets the with a given name. Returns null if no property with the given name is defined. This API only finds service properties and does not find scalar or navigation properties. The name of the property. The service property, or null if none is found. Gets all the defined on this entity type. This API only returns service properties and does not return scalar or navigation properties. The service properties defined on this entity type. Removes an from this entity type. The name of the property to remove. The property that was removed. Represents a relationship where a foreign key property(s) in a dependent entity type reference a corresponding primary or alternate key in a principal entity type. This interface is used during model creation and allows the metadata to be modified. Once the model is built, represents a read-only view of the same metadata. Gets the foreign key properties in the dependent entity. Gets the primary or alternate key that the relationship targets. Gets the dependent entity type. This may be different from the type that are defined on when the relationship is defined a derived type in an inheritance hierarchy (since the properties may be defined on a base type). Gets the principal entity type that this relationship targets. This may be different from the type that is defined on when the relationship targets a derived type in an inheritance hierarchy (since the key is defined on the base type of the hierarchy). Gets or sets a value indicating whether the values assigned to the foreign key properties are unique. Gets or sets a value indicating whether this relationship is required. If true, the dependent entity must always be assigned to a valid principal entity. Gets or sets a value indicating whether this relationship defines ownership. If true, the dependent entity must always be accessed via the navigation from the principal entity. Gets or sets a value indicating how a delete operation is applied to dependent entities in the relationship when the principal is deleted or the relationship is severed. Gets the navigation property on the dependent entity type that points to the principal entity. Gets the navigation property on the principal entity type that points to the dependent entity. Sets the foreign key properties and that target principal key. Foreign key properties in the dependent entity. The primary or alternate key to target. Sets the navigation property on the dependent entity type that points to the principal entity. The name of the navigation property on the dependent type. Passing null will result in there being no navigation property defined. The newly created navigation property. Sets the navigation property on the dependent entity type that points to the principal entity. The navigation property on the dependent type. Passing null will result in there being no navigation property defined. The newly created navigation property. Sets the navigation property on the principal entity type that points to the dependent entity. The name of the navigation property on the principal type. Passing null will result in there being no navigation property defined. The newly created navigation property. Sets the navigation property on the principal entity type that points to the dependent entity. The name of the navigation property on the principal type. Passing null will result in there being no navigation property defined. The newly created navigation property. Represents an index on a set of properties. This interface is used during model creation and allows the metadata to be modified. Once the model is built, represents a read-only view of the same metadata. Gets or sets a value indicating whether the values assigned to the indexed properties are unique. Gets the properties that this index is defined on. Gets the entity type the index is defined on. This may be different from the type that are defined on when the index is defined a derived type in an inheritance hierarchy (since the properties may be defined on a base type). Represents a primary or alternate key on an entity. This interface is used during model creation and allows the metadata to be modified. Once the model is built, represents a read-only view of the same metadata. Gets the properties that make up the key. Gets the entity type the key is defined on. This may be different from the type that are defined on when the key is defined a derived type in an inheritance hierarchy (since the properties may be defined on a base type). Metadata about the shape of entities, the relationships between them, and how they map to the database. A model is typically created by overriding the method on a derived . This interface is used during model creation and allows the metadata to be modified. Once the model is built, represents a read-only view of the same metadata. Adds a shadow state entity type to the model. Shadow entities are not currently supported in a model that is used at runtime with a . Therefore, shadow state entity types will only exist in migration model snapshots, etc. The name of the entity to be added. The new entity type. Adds an entity type to the model. The CLR class that is used to represent instances of the entity type. The new entity type. Adds an entity type with a defining navigation to the model. The name of the entity type to be added. The defining navigation. The defining entity type. The new entity type. Adds an entity type with a defining navigation to the model. The CLR class that is used to represent instances of this entity type. The defining navigation. The defining entity type. The new entity type. Gets the entity with the given name. Returns null if no entity type with the given name is found or the entity type has a defining navigation. The name of the entity type to find. The entity type, or null if none are found. Gets the entity type for the given name, defining navigation name and the defining entity type. Returns null if no matching entity type is found. The name of the entity type to find. The defining navigation of the entity type to find. The defining entity type of the entity type to find. The entity type, or null if none are found. Removes an entity type from the model. The entity type to be removed. Gets all entity types defined in the model. All entity types defined in the model. Marks the given entity type name as ignored, preventing conventions from adding a matching entity type to the model. The name of the entity type to be ignored. Removes the ignored entity type name. The name of the ignored entity type to be removed. Indicates whether the given entity type name is ignored. The name of the entity type that might be ignored. true if the given entity type name is ignored. Represents a navigation property which can be used to navigate a relationship. This interface is used during model creation and allows the metadata to be modified. Once the model is built, represents a read-only view of the same metadata. Gets the type that this property belongs to. Gets the foreign key that defines the relationship this navigation property will navigate. Represents a scalar property of an entity. This interface is used during model creation and allows the metadata to be modified. Once the model is built, represents a read-only view of the same metadata. Gets the type that this property belongs to. Gets or sets a value indicating whether this property can contain null. Gets or sets a value indicating when a value for this property will be generated by the database. Even when the property is set to be generated by the database, EF may still attempt to save a specific value (rather than having one generated by the database) when the entity is added and a value is assigned, or the property is marked as modified for an existing entity. See and for more information. Gets or sets a value indicating whether this property is used as a concurrency token. When a property is configured as a concurrency token the value in the database will be checked when an instance of this entity type is updated or deleted during to ensure it has not changed since the instance was retrieved from the database. If it has changed, an exception will be thrown and the changes will not be applied to the database. Base type for navigation and scalar properties. This interface is used during model creation and allows the metadata to be modified. Once the model is built, represents a read-only view of the same metadata. Gets the type that this property belongs to. Gets or sets the underlying CLR field for this property. This may be null for shadow properties or if the backing field for the property is not known. A in the Entity Framework model that represents an injected service from the . This interface is used during model creation and allows the metadata to be modified. Once the model is built, represents a read-only view of the same metadata. Gets the type that this property belongs to. The for this property. Represents a type in an . This interface is used during model creation and allows the metadata to be modified. Once the model is built, represents a read-only view of the same metadata. Gets the model that this type belongs to. Marks the given member name as ignored, preventing conventions from adding a matching property or navigation to the type. The name of the member to be ignored. Removes the ignored member name. The name of the member to be removed. Indicates whether the given member name is ignored. The name of the member that might be ignored. true if the given member name is ignored. Gets all the ignored members. The list of ignored member names. Represents a navigation property which can be used to navigate a relationship. Gets the entity type that this property belongs to. Gets the foreign key that defines the relationship this navigation property will navigate. Defines how to create an entity instance through the binding of EF model properties to, for example, constructor parameters or parameters of a factory method. Creates a new instance. The parameter bindings to use. Creates an expression tree that represents creating an entity instance from the given binding information. For example, this might be a to call a constructor, or a to call a factory method. Information needed to create the expression. The expression tree. The collection of instances used. The type that will be created from the expression tree created for this binding. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. Called when an annotation was set or removed. The key of the set annotation. The annotation set. The old annotation. The annotation that was set. Runs the corresponding conventions when an annotation was set or removed. The key of the set annotation. The annotation set. The old annotation. The annotation that was set. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. Runs the conventions when an annotation was set or removed. The key of the set annotation. The annotation set. The old annotation. The annotation that was set. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is and multiple registrations are allowed. This means a single instance of each service is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. 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. 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. 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. 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. Determines whether the specified objects are equal. The first object of type T to compare. The second object of type T to compare. true if the specified objects are equal; otherwise, false. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. Runs the conventions when an annotation was set or removed. The key of the set annotation. The annotation set. The old annotation. The annotation that was set. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. Runs the conventions when an annotation was set or removed. The key of the set annotation. The annotation set. The old annotation. The annotation that was set. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. Runs the conventions when an annotation was set or removed. The key of the set annotation. The annotation set. The old annotation. The annotation that was set. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. Runs the conventions when an annotation was set or removed. The key of the set annotation. The annotation set. The old annotation. The annotation that was set. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. Runs the conventions when an annotation was set or removed. The key of the set annotation. The annotation set. The old annotation. The annotation that was set. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. Gets a value indicating whether this property requires a to generate values when new entities are added to the context. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. Allows a to be found from those registered in the internal service provider. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Attempts to find a that can bind to a parameter with the given type and name. The parameter type. The parameter name. The found factory, or null if none could be found. Factory for finding and creating instances. The service lifetime is and multiple registrations are allowed. This means a single instance of each service is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Checks whether or not this factory can bind a parameter with the given type and name. The parameter type. The parameter name. True if this parameter can be bound; false otherwise. Creates a for the given type and name on the given entity type. The entity type. The parameter type. The parameter name. The binding. Creates a for the given type and name on the given entity type. The entity type. The parameter type. The parameter name. The binding. Represents a scalar property of an entity. Gets the entity type that this property belongs to. Gets a value indicating whether this property can contain null. Gets a value indicating when a value for this property will be generated by the database. Even when the property is set to be generated by the database, EF may still attempt to save a specific value (rather than having one generated by the database) when the entity is added and a value is assigned, or the property is marked as modified for an existing entity. See and for more information. Gets a value indicating whether this property is used as a concurrency token. When a property is configured as a concurrency token the value in the database will be checked when an instance of this entity type is updated or deleted during to ensure it has not changed since the instance was retrieved from the database. If it has changed, an exception will be thrown and the changes will not be applied to the database. Base type for navigation and scalar properties. Gets the name of the property. Gets the type that this property belongs to. Gets the type of value that this property holds. Gets the for the underlying CLR property that this object represents. This may be null for shadow properties or properties mapped directly to fields. Gets the for the underlying CLR field for this property. This may be null for shadow properties or if the backing field for the property is not known. Finds a specifically for some form of property (that is, some ) of the model. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Finds a specifically for an in the model. The entity type on which the is defined. The parameter name. The parameter type. The parameter binding, or null if none was found. A in the Entity Framework model that represents an injected service from the . Gets the entity type that this property belongs to. The for this property. Represents a type in an . Gets the model that this type belongs to. Gets the name of this type. Gets the CLR class that is used to represent instances of this type. Returns null if the type does not have a corresponding CLR class (known as a shadow type). Shadow types are not currently supported in a model that is used at runtime with a . Therefore, shadow types will only exist in migration model snapshots, etc. A for binding to the service. The service lifetime is and multiple registrations are allowed. This means a single instance of each service is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Creates a new instance. The service dependencies to use. Checks whether or not this factory can bind a parameter with the given type and name. The parameter type. The parameter name. True if this parameter can be bound; false otherwise. Creates a for the given type and name on the given entity type. The entity type. The parameter type. The parameter name. The binding. Creates a for the given type and name on the given entity type. The entity type. The parameter type. The parameter name. The binding. Service dependencies parameter class for This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is and multiple registrations are allowed. This means a single instance of each service is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Creates the service dependencies parameter object for a . Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. 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. Describes the binding from many EF model properties, dependency injection services, or metadata types to a new array of objects suitable for passing to a general purpose factory method such as is often used for creating proxies. Creates a new taking all the given instances and combining them into one binding that will initialize an array of . The binding to combine. Creates an expression tree representing the binding of the value of a property from a materialization expression to a parameter of the constructor, factory method, etc. The binding information. The expression tree. Describes the binding from one or many EF model properties, dependency injection services, or metadata types to a parameter in a constructor, factory method, or similar. Creates a new instance. The parameter CLR type. The properties that are handled by this binding and so do not need to be set in some other way. The parameter CLR type. The properties that are handled by this binding and so do not need to be set in some other way. Creates an expression tree representing the binding of the value of a property from a materialization expression to a parameter of the constructor, factory method, etc. The binding information. The expression tree. Carries information about a parameter binding. Creates a new to define a parameter binding. The entity type for this binding. The expression tree from which the parameter value will come. The entity type for this binding. The expression tree from which the parameter value will come. Gets the index into the where the property value can be found. The property. The index where its value can be found. Describes the binding from an to a parameter in a constructor, factory method, or similar. Creates a new instance for the given . The property to bind. Creates an expression tree representing the binding of the value of a property from a materialization expression to a parameter of the constructor, factory method, etc. The binding information. The expression tree. Indicates how changes to the value of a property will be handled by Entity Framework change tracking which in turn will determine whether the value set is sent to the database or not. Used with and The value set or changed will be sent to the database in the normal way. Any value set or changed will be ignored. If an explicit value is set or the value is changed, then an exception will be thrown. Describes the binding from an EF dependency injection service, or metadata type, which may or may not also have and associated , to a parameter in a constructor, factory method, or similar. Creates a new instance for the given service type or metadata type. The parameter CLR type. The service or metadata CLR type. The associated , or null. The EF internal service CLR type. Creates an expression tree representing the binding of the value of a property from a materialization expression to a parameter of the constructor, factory method, etc. The binding information. The expression tree. Creates an expression tree representing the binding of the value of a property from a materialization expression to a parameter of the constructor, factory method, etc. The expression representing the materialization context. The expression representing the constant. The expression tree. A delegate to set a CLR service property on an entity instance. A for binding to dependency-injected services. The service lifetime is and multiple registrations are allowed. This means a single instance of each service is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Creates a new instance for the given service type. The service type. Checks whether or not this factory can bind a parameter with the given type and name. The parameter type. The parameter name. True if this parameter can be bound; false otherwise. Creates a for the given type and name on the given entity type. The entity type. The parameter type. The parameter name. The binding. Creates a for the given type and name on the given entity type. The entity type. The parameter type. The parameter name. The binding. Creates instances of that have no conventions. This is useful when Exhaustively configuring a model based on some existing metadata. This is typically not used in application code since building a model by overriding or using directly is much easier. Creates an empty model with no conventions. All aspects of the model must be exhaustively configured. The newly created model. Indicates when a value for a property will be generated by the database. Even when a property is set to be generated by the database, EF may still attempt to save a specific value (rather than having one generated by the database) when an entity is added and a value is assigned, or the property is marked as modified for an existing entity. See for more details. A value is never generated by the database. A value is generated by the database when an entity is first added to the database. The most common scenario for this is generated primary key values. No value is generated when the entity is first added to the database, but a value will be read from the database whenever the entity is subsequently updated. A value is read from the database when the entity is first added and whenever the entity is subsequently updated. This is typically used for computed columns and scenarios such as rowversions, timestamps, etc. Provides a simple API surface for configuring a that defines the shape of your entities, the relationships between them, and how they map to the database. You can use to construct a model for a context by overriding on your derived context. Alternatively you can create the model externally and set it on a instance that is passed to the context constructor. Initializes a new instance of the class that will apply a set of conventions. The conventions to be applied to the model. 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. The model being configured. Adds or updates an annotation on the model. If an annotation with the key specified in already exists its value will be updated. The key of the annotation to be added or updated. The value to be stored in the annotation. The same instance so that multiple configuration calls can be chained. The internal being used to configure this model. This property is intended for use by extension methods to configure the model. It is not intended to be used in application code. Returns an object that can be used to configure a given entity type in the model. If the entity type is not already part of the model, it will be added to the model. The entity type to be configured. An object that can be used to configure the entity type. Returns an object that can be used to configure a given entity type in the model. If the entity type is not already part of the model, it will be added to the model. The entity type to be configured. An object that can be used to configure the entity type. Returns an object that can be used to configure a given entity type in the model. If an entity type with the provided name is not already part of the model, a new entity type that does not have a corresponding CLR type will be added to the model. The name of the entity type to be configured. An object that can be used to configure the entity type. Performs configuration of a given entity type in the model. If the entity type is not already part of the model, it will be added to the model. This overload allows configuration of the entity type to be done in line in the method call rather than being chained after a call to . This allows additional configuration at the model level to be chained after configuration for the entity type. The entity type to be configured. An action that performs configuration of the entity type. The same instance so that additional configuration calls can be chained. Performs configuration of a given entity type in the model. If the entity type is not already part of the model, it will be added to the model. This overload allows configuration of the entity type to be done in line in the method call rather than being chained after a call to . This allows additional configuration at the model level to be chained after configuration for the entity type. The entity type to be configured. An action that performs configuration of the entity type. The same instance so that additional configuration calls can be chained. Performs configuration of a given entity type in the model. If an entity type with the provided name is not already part of the model, a new entity type that does not have a corresponding CLR type will be added to the model. This overload allows configuration of the entity type to be done in line in the method call rather than being chained after a call to . This allows additional configuration at the model level to be chained after configuration for the entity type. The name of the entity type to be configured. An action that performs configuration of the entity type. The same instance so that additional configuration calls can be chained. Returns an object that can be used to configure a given query type in the model. If the query type is not already part of the model, it will be added to the model. The query type to be configured. An object that can be used to configure the query type. Returns an object that can be used to configure a given query type in the model. If the query type is not already part of the model, it will be added to the model. The query type to be configured. An object that can be used to configure the query type. Performs configuration of a given query type in the model. If the query type is not already part of the model, it will be added to the model. This overload allows configuration of the query type to be done in line in the method call rather than being chained after a call to . This allows additional configuration at the model level to be chained after configuration for the query type. The query type to be configured. An action that performs configuration of the query type. The same instance so that additional configuration calls can be chained. Performs configuration of a given query type in the model. If the query type is not already part of the model, it will be added to the model. This overload allows configuration of the query type to be done in line in the method call rather than being chained after a call to . This allows additional configuration at the model level to be chained after configuration for the query type. The query type to be configured. An action that performs configuration of the query type. The same instance so that additional configuration calls can be chained. Excludes the given entity type from the model. This method is typically used to remove types from the model that were added by convention. The entity type to be removed from the model. The same instance so that additional configuration calls can be chained. Excludes the given entity type from the model. This method is typically used to remove types from the model that were added by convention. The entity type to be removed from the model. The same instance so that additional configuration calls can be chained. Applies configuration that is defined in an instance. The entity type to be configured. The configuration to be applied. The same instance so that additional configuration calls can be chained. Applies configuration that is defined in an instance. The query type to be configured. The configuration to be applied. The same instance so that additional configuration calls can be chained. Applies configuration from all and instances that are defined in provided assembly. The assembly to scan. Optional predicate to filter types within the assembly. The same instance so that additional configuration calls can be chained. Marks an entity type as owned. All references to this type will be configured as separate owned type instances. The entity type to be configured. Marks an entity type as owned. All references to this type will be configured as separate owned type instances. The entity type to be configured. Configures the default to be used for this model. This strategy indicates how the context detects changes to properties for an instance of an entity type. The change tracking strategy to be used. The same instance so that additional configuration calls can be chained. Sets the to use for all properties of this entity type. By default, the backing field, if one is found by convention or has been specified, is used when new objects are constructed, typically when entities are queried from the database. Properties are used for all other accesses. Calling this method will change that behavior for all properties in the model as described in the enum. The to use for properties of this model. The same instance so that additional configuration calls can be chained. Forces post-processing on the model such that it is ready for use by the runtime. This post processing happens automatically when using ; this method allows it to be run explicitly in cases where the automatic execution is not possible. The finalized . Returns a string that represents the current object. A string that represents the current object. Determines whether the specified object is equal to the current object. The object to compare with the current object. true if the specified object is equal to the current object; otherwise, false. Serves as the default hash function. A hash code for the current object. Pass a value from this enum to , , or to change whether the property or backing field will be used when reading and writing to a property or field. The default behavior is . Prior to EF Core 3.0, the default behavior was . Enforces that all accesses to the property must go through the field. An exception will be thrown if this mode is set and it is not possible to read from or write to the field. Enforces that all accesses to the property must go through the field when new instances are being constructed. New instances are typically constructed when entities are queried from the database. An exception will be thrown if this mode is set and it is not possible to write to the field. All other uses of the property will go through the property getters and setters, unless this is not possible because, for example, the property is read-only, in which case these accesses will also use the field. Enforces that all accesses to the property must go through the property getters and setters, even when new objects are being constructed. An exception will be thrown if this mode is set and it is not possible to read from or write to the property, for example because it is read-only. All accesses to the property goes directly to the field, unless the field is not known, in which as access goes through the property. All accesses to the property when constructing new entity instances goes directly to the field, unless the field is not known, in which as access goes through the property. All other uses of the property will go through the property getters and setters, unless this is not possible because, for example, the property is read-only, in which case these accesses will also use the field. All accesses to the property go through the property, unless there is no property or it is missing a setter/getter, in which as access goes directly to the field. Indicates how the results of a query are tracked by the . The change tracker will keep track of changes for all entities that are returned from a LINQ query. Any modification to the entity instances will be detected and persisted to the database during . The change tracker will not track any of the entities that are returned from a LINQ query. If the entity instances are modified, this will not be detected by the change tracker and will not persist those changes to the database. Disabling change tracking is useful for read-only scenarios because it avoids the overhead of setting up change tracking for each entity instance. You should not disable change tracking if you want to manipulate entity instances and persist those changes to the database using . Identity resolution will still be performed to ensure that all occurrences of an entity with a given key in the result set are represented by the same entity instance. Creates keys that uniquely identifies a query. This is used to store and lookup compiled versions of a query in a cache. This type is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Initializes a new instance of the class. Parameter object containing dependencies for this service. Dependencies used to create a Generates the cache key for the given query. The query to get the cache key for. A value indicating whether the query will be executed asynchronously. The cache key. Generates the cache key for the given query. The query to get the cache key for. A value indicating whether the query will be executed asynchronously. The cache key. A key that uniquely identifies a query. This is used to store and lookup compiled versions of a query in a cache. This type is typically used by database providers (and other extensions). It is generally not used in application code. Initializes a new instance of the class. The query to generate the key for. The model that queries is written against. The tracking behavior for results of the query. A value indicating whether the query will be executed asynchronously. Determines if this key is equivalent to a given object (i.e. if they are keys for the same query). The object to compare this key to. True if the object is a and is for the same query, otherwise false. Gets the hash code for the key. The hash code for the key. Service dependencies parameter class for This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Creates the service dependencies parameter object for a . This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. The model that queries will be written against. The context that queries will be executed for. Whether the configured execution strategy can retry. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Service dependencies parameter class for This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Creates the service dependencies parameter object for a . Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. 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. Represents a filter for evaluatable expressions. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Parameter object containing dependencies for this service. Creates a new instance. This type is typically used by database providers (and other extensions). It is generally not used in application code. The dependencies to use. Checks whether the given expression can be evaluated. The expression. The model. True if the expression can be evaluated; false otherwise. Service dependencies parameter class for This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Creates the service dependencies parameter object for a . Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. 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. A cache key generator for the compiled query cache. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Generates a cache key. The query to generate a cache key for. True if the query will be executed asynchronously. An object representing a query cache key. Defines a source for generating trees that read values from a or creates entity instances. This type is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Creates an tree representing reading a value from a This method is typically used by database providers (and other extensions). It is generally not used in application code. The expression that exposes the . The type to read. The index in the buffer to read from. The IPropertyBase being read if any. An expression to read the value. Creates an tree representing creating an entity instance. This method is typically used by database providers (and other extensions). It is generally not used in application code. The entity type being materialized. The name of the instance being materialized. The materialization expression to build on. An expression to read the value. Returns a cached delegate that creates instances of the given entity type. This method is typically used by database providers (and other extensions). It is generally not used in application code. The entity type being materialized. A delegate to create instances. Represents a filter for evaluatable expressions. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Checks whether the given expression can be evaluated. The expression. The model. True if the expression can be evaluated; false otherwise. Supports queryable Include/ThenInclude chaining operators. The entity type. The property type. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. 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. 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. Rewrites comparisons of entities (as opposed to comparisons of their properties) into comparison of their keys. For example, an expression such as cs.Where(c => c == something) would be rewritten to cs.Where(c => c.Id == something.Id). If the entity equality visitors introduces new runtime parameters (because it adds key access over existing parameters), those parameters will have this prefix. Replaces the lambda's single parameter with a type wrapper based on the given source, and then visits the lambda's body. Replaces the lambda's two parameters with type wrappers based on the given sources, and then visits the lambda's body. Receives already-visited left and right operands of an equality expression and applies entity equality rewriting to them, if possible. The rewritten entity equality expression, or null if rewriting could not occur for some reason. Extracts the list parameter with name from and returns a projection to its elements' values. The underlying expression being wrapped. Attempts to find as a navigation from the current node, and if successful, returns a new wrapping the given expression. Otherwise returns the given expression without wrapping it. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. 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. Creates a new . 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . 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. 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. A factory for creating instances. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. 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. 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. 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. 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. 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. 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. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . A factory for creating instances. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . A factory for creating instances. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . A factory for creating instances. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Factory for instances. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Creates a new QueryContext. A QueryContext instance. A factory for creating instances. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . A factory for creating instances. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . A factory for creating instances. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Expression representing null-conditional access. Logic in this file is based on https://github.com/bartdesmet/ExpressionFutures Creates a new instance of NullConditionalExpression. Expression representing potentially nullable caller that needs to be tested for it's nullability. Expression representing access operation. Expression representing potentially nullable caller that needs to be tested for it's nullability. Expression representing access operation. Indicates that the node can be reduced to a simpler node. If this returns true, Reduce() can be called to produce the reduced form. Gets the static type of the expression that this expression represents. Gets the node type of this expression. Reduces the node and then calls the visitor delegate on the reduced expression. The method throws an exception if the node is not reducible. The expression being visited, or an expression which should replace it in the tree. An instance of . Reduces this node to a simpler expression. If CanReduce returns true, this should return a valid expression. This method can return another node which itself must be reduced. Determines whether the specified object is equal to the current object. The object to compare with the current object. True if the specified object is equal to the current object; otherwise, false. Determines whether the specified object is equal to the current object. The object to compare with the current object. True if the specified object is equal to the current object; otherwise, false. Serves as the default hash function. A hash code for the current object. Returns a textual representation of the . A textual representation of the . A class that provides reflection metadata for translatable LINQ methods. Service dependencies parameter class for This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Creates the service dependencies parameter object for a . Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. 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. A dictionary mapping parameter names to lambdas that, given a QueryContext, can extract that parameter's value. This is needed for cases where we need to introduce a parameter during the compilation phase (e.g. entity equality rewrites a parameter to an ID property on that parameter). Registers a runtime parameter that is being added at some point during the compilation phase. A lambda must be provided, which will extract the parameter's value from the QueryContext every time the query is executed. Service dependencies parameter class for This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Creates the service dependencies parameter object for a . Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. 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. The cache being used to store value generator instances. The model. The query optimizer factory. The queryable method-translating expression visitor factory. The shaped-query optimizer factory The shaped-query compiling expression visitor factory. Whether the configured execution strategy can retry. The context options. The logger. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. The principal data structure used by a compiled query during execution. Creates a new instance. This type is typically used by database providers (and other extensions). It is generally not used in application code. The dependencies to use. Gets the current DbContext. Parameter object containing dependencies for this service. 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. Sets the navigation as loaded. The entity instance. The navigation property. The query provider. The query provider. The execution strategy factory. The execution strategy factory. Gets the concurrency detector. The concurrency detector. Gets or sets the cancellation token. The cancellation token. Gets or sets the cancellation token. The cancellation token. Gets or sets the cancellation token. The cancellation token. The parameter values. Adds a parameter. The name. The value. 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. Service dependencies parameter class for This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Creates the service dependencies parameter object for a . Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. 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. The cache being used to store value generator instances. 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. Gets the query provider. The execution strategy. Gets the concurrency detector. The command logger. A query logger. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Service dependencies parameter class for This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Creates the service dependencies parameter object for a . Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. 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. Service dependencies parameter class for This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Creates the service dependencies parameter object for a . Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. 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. Evaluatable expression filter. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Service dependencies parameter class for This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is and multiple registrations are allowed. This means a single instance of each service is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Creates the service dependencies parameter object for a . Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. 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. The materializer source. The type mapping source. The memory cache. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Represents the mapping between a .NET type and a database type. This type is typically used by database providers (and other extensions). It is generally not used in application code. Parameter object for use in the hierarchy. Creates a new parameter object. The .NET type used in the EF model. Converts types to and from the store whenever this mapping is used. Supports custom value snapshotting and comparisons. Supports custom comparisons between keys--e.g. PK to FK comparison. Supports structural snapshotting needed for mutable reference types. An optional factory for creating a specific . The mapping CLR type. The mapping converter. The mapping comparer. The mapping key comparer. The mapping structural comparer. An optional factory for creating a specific to use with this mapping. Creates a new parameter object with the given converter composed with any existing converter and set on the new parameter object. The converter. The new parameter object. Initializes a new instance of the class. The parameters for this mapping. Returns the parameters used to create this type mapping. Gets the .NET type used in the EF model. Converts types to and from the store whenever this mapping is used. May be null if no conversion is needed. An optional factory for creating a specific to use with this mapping. A adds custom value snapshotting and comparison for CLR types that cannot be compared with and/or need a deep copy when taking a snapshot. A adds custom value comparison for use when comparing key values to each other. For example, when comparing a PK to and FK. A adds custom value comparison for use when a deep/structural copy and/or comparison is needed. Returns a new copy of this type mapping with the given added. The converter to use. A new type mapping Creates a an expression tree that can be used to generate code for the literal value. Currently, only very basic expressions such as constructor calls and factory methods taking simple constants are supported. The value for which a literal is needed. An expression tree that can be used to generate code for the literal value. The main interaction point between a context and the database provider. This type is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Initializes a new instance of the class. Parameter object containing dependencies for this service. Parameter object containing dependencies for this service. Persists changes from the supplied entries to the database. Entries representing the changes to be persisted. The number of state entries persisted to the database. Asynchronously persists changes from the supplied entries to the database. Entries representing the changes to be persisted. A to observe while waiting for the task to complete. A task that represents the asynchronous save operation. The task result contains the number of entries persisted to the database. Service dependencies parameter class for This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Creates the service dependencies parameter object for a . Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. 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. Factory for compilation contexts to process LINQ queries. Factory for creating model data tracker. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. The primary point where a database provider can tell EF that it has been selected for the current context. This type is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . The type of options that the database provider will add to to identify that is has been selected (and to store its database specific settings). Initializes a new instance of the class. Parameter object containing dependencies for this service. The unique name used to identify the database provider. This should be the same as the NuGet package name for the providers runtime. Gets a value indicating whether this database provider has been selected for a given context. The options for the context. True if the database provider has been selected, otherwise false. Service dependencies parameter class for This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is . This means a single instance of each service is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Creates the service dependencies parameter object for a . Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. 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. Represents the execution state of an operation. The type of the result. Creates a new instance of . true if the operation succeeded. The result of the operation if successful. Indicates whether the operation succeeded. The result of the operation if successful. The base class for implementations. The default number of retry attempts. The default maximum time delay between retries, must be nonnegative. The default maximum random factor, must not be lesser than 1. The default base for the exponential function used to compute the delay between retries, must be positive. The default coefficient for the exponential function used to compute the delay between retries, must be nonnegative. Creates a new instance of . The context on which the operations will be invoked. The maximum number of retry attempts. The maximum delay between retries. Creates a new instance of . Parameter object containing service dependencies. The maximum number of retry attempts. The maximum delay between retries. The list of exceptions that caused the operation to be retried so far. A pseudo-random number generator that can be used to vary the delay between retries. The maximum number of retry attempts. The maximum delay between retries. Parameter object containing service dependencies. Indicates whether the strategy is suspended. The strategy is typically suspending while executing to avoid recursive execution from nested operations. Indicates whether this might retry the execution after a failure. Executes the specified operation and returns the result. The state that will be passed to the operation. A delegate representing an executable operation that returns the result of type . A delegate that tests whether the operation succeeded even though an exception was thrown. The type of the state. The return type of . The result from the operation. The operation has not succeeded after the configured number of retries. Executes the specified asynchronous operation and returns the result. The state that will be passed to the operation. A function that returns a started task of type . A delegate that tests whether the operation succeeded even though an exception was thrown. A cancellation token used to cancel the retry operation, but not operations that are already in flight or that already completed successfully. The type of the state. The result type of the returned by . A task that will run to completion if the original task completes successfully (either the first time or after retrying transient failures). If the task fails with a non-transient error or the retry limit is reached, the returned task will become faulted and the exception must be observed. The operation has not succeeded after the configured number of retries. Method called before the first operation execution Method called before retrying the operation execution Determines whether the operation should be retried and the delay before the next attempt. The exception thrown during the last execution attempt. Returns the delay indicating how long to wait for before the next execution attempt if the operation should be retried; null otherwise Determines whether the specified exception could be thrown after a successful execution. The exception object to be verified. true if the specified exception could be thrown after a successful execution, otherwise false. Determines whether the specified exception represents a transient failure that can be compensated by a retry. The exception object to be verified. true if the specified exception is considered as transient, otherwise false. Recursively gets InnerException from as long as it is an exception created by Entity Framework and calls on the innermost one. The exception to be unwrapped. A delegate that will be called with the unwrapped exception. The return type of . The result from . Service dependencies parameter class for This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Creates the service dependencies parameter object for a . Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. 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. The options for the current instance. Indirection to the current instance. The logger. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. The main interaction point between a context and the database provider. This interface is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Persists changes from the supplied entries to the database. Entries representing the changes to be persisted. The number of state entries persisted to the database. Asynchronously persists changes from the supplied entries to the database. Entries representing the changes to be persisted. A to observe while waiting for the task to complete. A task that represents the asynchronous save operation. The task result contains the number of entries persisted to the database. Creates and deletes databases for a given database provider. This interface is typically used by database providers (and other extensions). It is generally not used in application code. Ensures that the database for the context does not exist. If it does not exist, no action is taken. If it does exist then the database is deleted. Warning: The entire database is deleted an no effort is made to remove just the database objects that are used by the model for this context. True if the database is deleted, false if it did not exist. Asynchronously ensures that the database for the context does not exist. If it does not exist, no action is taken. If it does exist then the database is deleted. Warning: The entire database is deleted an no effort is made to remove just the database objects that are used by the model for this context. A to observe while waiting for the task to complete. A task that represents the asynchronous save operation. The task result contains true if the database is deleted, false if it did not exist. Ensures that the database for the context exists. If it exists, no action is taken. If it does not exist then the database and all its schema are created. If the database exists, then no effort is made to ensure it is compatible with the model for this context. True if the database is created, false if it already existed. Asynchronously ensures that the database for the context exists. If it exists, no action is taken. If it does not exist then the database and all its schema are created. If the database exists, then no effort is made to ensure it is compatible with the model for this context. A to observe while waiting for the task to complete. A task that represents the asynchronous save operation. The task result contains true if the database is created, false if it already existed. Determines whether or not the database is available and can be connected to. Note that being able to connect to the database does not mean that it is up-to-date with regard to schema creation, etc. True if the database is available; false otherwise. Determines whether or not the database is available and can be connected to. Note that being able to connect to the database does not mean that it is up-to-date with regard to schema creation, etc. A to observe while waiting for the task to complete. True if the database is available; false otherwise. The primary point where a database provider can tell EF that it has been selected for the current context and provide the services required for it to function. This type is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . The unique name used to identify the database provider. This should be the same as the NuGet package name for the providers runtime. Gets a value indicating whether this database provider has been configured for a given context. The options for the context. True if the database provider has been configured, otherwise false. A transaction against the database. Instances of this class are typically obtained from and it is not designed to be directly constructed in your application code. Gets the transaction identifier. Commits all changes made to the database in the current transaction. Discards all changes made to the database in the current transaction. Commits all changes made to the database in the current transaction asynchronously. The cancellation token. A representing the asynchronous operation. Discards all changes made to the database in the current transaction asynchronously. The cancellation token. A representing the asynchronous operation. Creates and manages the current transaction. This interface is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Begins a new transaction. The newly created transaction. Asynchronously begins a new transaction. A to observe while waiting for the task to complete. A task that represents the asynchronous operation. The task result contains the newly created transaction. Commits all changes made to the database in the current transaction. Discards all changes made to the database in the current transaction. Gets the current transaction. A strategy that is used to execute a command or query against the database, possibly with logic to retry when a failure occurs. Indicates whether this might retry the execution after a failure. Executes the specified operation and returns the result. The state that will be passed to the operation. A delegate representing an executable operation that returns the result of type . A delegate that tests whether the operation succeeded even though an exception was thrown. The type of the state. The return type of . The result from the operation. The operation has not succeeded after the configured number of retries. Executes the specified asynchronous operation and returns the result. The state that will be passed to the operation. A function that returns a started task of type . A delegate that tests whether the operation succeeded even though an exception was thrown. A cancellation token used to cancel the retry operation, but not operations that are already in flight or that already completed successfully. The type of the state. The result type of the returned by . A task that will run to completion if the original task completes successfully (either the first time or after retrying transient failures). If the task fails with a non-transient error or the retry limit is reached, the returned task will become faulted and the exception must be observed. The operation has not succeeded after the configured number of retries. Factory for instances. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Creates a new . An instance of . 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. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Parameter object containing service dependencies. Creates a new instance of this class with the given service dependencies. Parameter object containing dependencies for this service. Creates a new . An instance of . 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. 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. 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. 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. 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. Manages the current . This interface is typically used by database providers (and other extensions). It is generally not used in application code. The currently enlisted transaction. Specifies an existing to be used for database operations. The transaction to be used. The core type mapping interface for EF Core, starting with version 2.1. Type mappings describe how a provider maps CLR types/values to database types/values. Warning: do not implement this interface directly. Instead, derive from for non-relational providers, or 'RelationalTypeMappingSourceBase' for relational providers. This type is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Finds the type mapping for a given . The property. The type mapping, or null if none was found. Finds the type mapping for a given representing a field or a property of a CLR type. Note: Only call this method if there is no available, otherwise call The field or property. The type mapping, or null if none was found. Finds the type mapping for a given . Note: Only call this method if there is no or available, otherwise call or The CLR type. The type mapping, or null if none was found. Represents a plugin type mapping source. The service lifetime is and multiple registrations are allowed. This means a single instance of each service is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Finds a type mapping for the given info. The mapping info to use to create the mapping. The type mapping, or null if none could be found. Parameter object containing context needed for materialization of an entity. This type is typically used by database providers (and other extensions). It is generally not used in application code. The for the get method. Creates a new instance. The to use to materialize an entity. The current instance being used. The to use to materialize an entity. The current instance being used. The exception that is thrown when the action failed more times than the configured limit. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The message that describes the error. Initializes a new instance of the class. The message that describes the error. The exception that is the cause of the current exception. Initializes a new instance of the class from a serialized form. The serialization info. The streaming context being used. Describes metadata needed to decide on a type mapping for a property or type. Creates a new instance of . The property for which mapping is needed. Creates a new instance of . The principal property chain for the property for which mapping is needed. Specifies a fallback Specifies Unicode or ANSI mapping for the mapping, in case one isn't found at the core level, or null for default. Specifies a fallback size for the mapping, in case one isn't found at the core level, or null for default. Specifies a fallback precision for the mapping, in case one isn't found at the core level, or null for default. Specifies a fallback scale for the mapping, in case one isn't found at the core level, or null for default. Creates a new instance of . The property or field for which mapping is needed. Specifies Unicode or ANSI mapping, or null for default. Specifies a size for the mapping, or null for default. Specifies a precision for the mapping, or null for default. Specifies a scale for the mapping, or null for default. Creates a new instance of . The CLR type in the model for which mapping is needed. If true, then a special mapping for a key or index may be returned. Specifies Unicode or ANSI mapping, or null for default. Specifies a size for the mapping, or null for default. Specifies a row-version, or null for default. Specifies a precision for the mapping, or null for default. Specifies a scale for the mapping, or null for default. Creates a new instance of with the given . The source info. The converter to apply. Specifies Unicode or ANSI mapping, or null for default. Specifies a size for the mapping, or null for default. Specifies a precision for the mapping, or null for default. Specifies a scale for the mapping, or null for default. Returns a new with the given converter applied. The converter to apply. The new mapping info. Indicates whether or not the mapping is part of a key or index. Indicates the store-size to use for the mapping, or null if none. Indicates whether or not the mapping supports Unicode, or null if not defined. Indicates whether or not the mapping will be used for a row version, or null if not defined. The suggested precision of the mapped data type. The suggested scale of the mapped data type. The CLR type in the model. May be null if type information is conveyed via other means (e.g. the store name in a relational type mapping info) Compares this to another to check if they represent the same mapping. The other object. True if they represent the same mapping; false otherwise. Compares this to another to check if they represent the same mapping. The other object. True if they represent the same mapping; false otherwise. Returns a hash code for this object. The hash code. The base class for non-relational type mapping starting with version 2.1. Non-relational providers should derive from this class and override This type is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Initializes a new instance of the this class. Parameter object containing dependencies for this service. Finds the type mapping for a given . Note: providers should typically not need to override this method. The property. The type mapping, or null if none was found. Finds the type mapping for a given . Note: Only call this method if there is no or available, otherwise call or Note: providers should typically not need to override this method. The CLR type. The type mapping, or null if none was found. Finds the type mapping for a given representing a field or a property of a CLR type. Note: Only call this method if there is no available, otherwise call Note: providers should typically not need to override this method. The field or property. The type mapping, or null if none was found. The base class for non-relational type mapping starting with version 2.1. Non-relational providers should derive from this class and override This type is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Initializes a new instance of the this class. Parameter object containing dependencies for this service. Dependencies used to create this Overridden by database providers to find a type mapping for the given info. The mapping info is populated with as much information about the required type mapping as is available. Use all the information necessary to create the best mapping. Return null if no mapping is available. The mapping info to use to create the mapping. The type mapping, or null if none could be found. Called after a mapping has been found so that it can be validated for the given property. The mapping, if any. The property, if any. Finds the type mapping for a given . Note: providers should typically not need to override this method. The property. The type mapping, or null if none was found. Finds the type mapping for a given . Note: Only call this method if there is no or available, otherwise call or Note: providers should typically not need to override this method. The CLR type. The type mapping, or null if none was found. Finds the type mapping for a given representing a field or a property of a CLR type. Note: Only call this method if there is no available, otherwise call Note: providers should typically not need to override this method. The field or property. The type mapping, or null if none was found. Service dependencies parameter class for This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is . This means a single instance of each service is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Creates the service dependencies parameter object for a . Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. 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. The registry of known s. Gets the plugins. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Represents a set of indexed values. Typically used to represent a row of data returned from a database. This type is typically used by database providers (and other extensions). It is generally not used in application code. A buffer with no values in it. Initializes a new instance of the class. The list of values for this buffer. Gets the value at a requested index. The index of the value to get. The value at the requested index. Gets the number of values in this buffer. Gets a value indicating whether the value buffer is empty. Determines if this value buffer is equivalent to a given object (i.e. if they are both value buffers and contain the same values). The object to compare this value buffer to. True if the object is a and contains the same values, otherwise false. Gets the hash code for the value buffer. The hash code for the value buffer. Converts values to and from two string values. Creates a new instance of this converter. A case-insensitive first character test is used when converting from the store. The string to use for false. The string to use for true. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts values to and from two different values. Creates a new instance of this converter that will convert a false false to one value and a true to another. Use for converting a to zero/one. The value to convert to for false. The value to convert to for true. Optional custom translator from store. Hints that can be used by the to create data types with appropriate facets for the converted data. Converts values to and from 0 and 1. Creates a new instance of this converter. This converter preserves order. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts arrays of bytes to and from strings. Creates a new instance of this converter. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts TModel to and from TProvider using simple casts from one type to the other. Creates a new instance of this converter. A for the default use of this converter. Converts a to and from a single-character . Creates a new instance of this converter. This converter preserves order. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Specifies hints used by the type mapper when mapping using a . Creates a new instance. Any hint contained in the instance can be null to indicate it has not been specified. The suggested size of the mapped data type. The suggested precision of the mapped data type. The suggested scale of the mapped data type. Whether or not the mapped data type should support Unicode. An optional factory for creating a specific . Adds hints from the given object to this one. Hints that are already specified are not overridden. The hints to add. The combined hints. The suggested size of the mapped data type. The suggested precision of the mapped data type. The suggested scale of the mapped data type. Whether or not the mapped data type should support Unicode. An optional factory for creating a specific to use for model values when this converter is being used. Converts to and from binary representation in a long. The DateTime is truncated beyond 0.1 millisecond precision. Creates a new instance of this converter. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts to and from arrays of bytes. Creates a new instance of this converter. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts to and from strings. Creates a new instance of this converter. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts using . This will preserve the . Creates a new instance of this converter. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts to and from strings. Creates a new instance of this converter. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts to and . Creates a new instance of this converter. Hints that can be used by the to create data types with appropriate facets for the converted data. Service dependencies parameter class for This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is . This means a single instance of each service is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Creates the service dependencies parameter object for a . Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. 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. Converts enum values to and from their underlying numeric representation. Creates a new instance of this converter. This converter preserves order. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts enum values to and from their string representation. Creates a new instance of this converter. This converter does not preserve order. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts a to and from an array of . Creates a new instance of this converter. This converter does not preserve order because the ordering of bits in the standard binary representation of a GUID does not match the ordering in the standard string representation. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts a to and from a using the standard "8-4-4-4-12" format./>. Creates a new instance of this converter. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. A registry of that can be used to find the preferred converter to use to convert to and from a given model type to a type that the database provider supports. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Returns the list of instances that can be used to convert the given model type. Converters nearer the front of the list should be used in preference to converters nearer the end. The type for which a converter is needed. The store type to target, or null for any. The converters available. Converts numeric values to and from arrays of bytes. Creates a new instance of this converter. This converter supports , , , , , , , , , , , and . Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts numeric values to and from their string representation. Creates a new instance of this converter. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts strings to and from values. Creates a new instance of this converter. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts strings to and from arrays of bytes. Creates a new instance of this converter. The string encoding to use. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts strings to and from values. Creates a new instance of this converter. This converter preserves order. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts strings to and from values. Creates a new instance of this converter. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts strings to and from values. Creates a new instance of this converter. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts strings to and from enum values. Creates a new instance of this converter. This converter does not preserve order. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts strings to and from a using the standard "8-4-4-4-12" format./>. Creates a new instance of this converter. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts strings to and from numeric values. Creates a new instance of this converter. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts strings to and from values. Creates a new instance of this converter. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts strings to and from values. Creates a new instance of this converter. This converter preserves order. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts to and from strings. Creates a new instance of this converter. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts to and . Creates a new instance of this converter. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Converts a to and from a . Creates a new instance of this converter. This converter preserves order. Hints that can be used by the to create data types with appropriate facets for the converted data. A for the default use of this converter. Defines conversions from an object of one type in a model to an object of the same or different type in the store. Initializes a new instance of the class. The expression to convert objects when writing data to the store, exactly as supplied and may not handle nulls, boxing, and non-exact matches of simple types. The expression to convert objects when reading data from the store, exactly as supplied and may not handle nulls, boxing, and non-exact matches of simple types. Hints that can be used by the to create data types with appropriate facets for the converted data. Gets the function to convert objects when writing data to the store, setup to handle nulls, boxing, and non-exact matches of simple types. Gets the function to convert objects when reading data from the store, setup to handle nulls, boxing, and non-exact matches of simple types. Gets the expression to convert objects when writing data to the store, exactly as supplied and may not handle nulls, boxing, and non-exact matches of simple types. Gets the expression to convert objects when reading data from the store, exactly as supplied and may not handle nulls, boxing, and non-exact matches of simple types. The CLR type used in the EF model. The CLR type used when reading and writing from the store. Hints that can be used by the to create data types with appropriate facets for the converted data. Checks that the type used with a value converter is supported by that converter and throws if not. The type to check. The value converter type. The types that are supported. The given type. Composes another instance with this one such that the result of the first conversion is used as the input to the second conversion. The second converter. The composed converter. Contains information on an available including a factory to create an instance. Creates a new instance. The CLR type used in the EF model. The CLR type used when reading and writing from the database provider. A factory to create the converter, if needed. Hints that can be used by the to create data types with appropriate facets for the converted data. The CLR type used in the EF model. The CLR type used when reading and writing from the database provider. Hints that can be used by the to create data types with appropriate facets for the converted data. Creates an instance of the . A registry of instances that can be used to find the preferred converter to use to convert to and from a given model type to a type that the database provider supports. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Initializes a new instance of the class. Parameter object containing dependencies for this service. Dependencies used to create a Returns the list of instances that can be used to convert the given model type. Converters nearer the front of the list should be used in preference to converters nearer the end. The type for which a converter is needed. The database provider type to target, or null for any. The converters available. Defines conversions from an object of one type in a model to an object of the same or different type in the store. Initializes a new instance of the class. An expression to convert objects when writing data to the store. An expression to convert objects when reading data from the store. Hints that can be used by the to create data types with appropriate facets for the converted data. Gets the function to convert objects when writing data to the store, setup to handle nulls, boxing, and non-exact matches of simple types. Gets the function to convert objects when reading data from the store, setup to handle nulls, boxing, and non-exact matches of simple types. Gets the expression to convert objects when writing data to the store, exactly as supplied and may not handle nulls, boxing, and non-exact matches of simple types. Gets the expression to convert objects when reading data from the store, exactly as supplied and may not handle nulls, boxing, and non-exact matches of simple types. The CLR type used in the EF model. The CLR type used when reading and writing from the store. Extension methods for Executes the specified operation. The strategy that will be used for the execution. A delegate representing an executable operation that doesn't return any results. Executes the specified operation and returns the result. The strategy that will be used for the execution. A delegate representing an executable operation that returns the result of type . The return type of . The result from the operation. Executes the specified operation. The strategy that will be used for the execution. The state that will be passed to the operation. A delegate representing an executable operation that doesn't return any results. The type of the state. Executes the specified asynchronous operation. The strategy that will be used for the execution. A function that returns a started task. A task that will run to completion if the original task completes successfully (either the first time or after retrying transient failures). If the task fails with a non-transient error or the retry limit is reached, the returned task will become faulted and the exception must be observed. Executes the specified asynchronous operation. The strategy that will be used for the execution. A function that returns a started task. A cancellation token used to cancel the retry operation, but not operations that are already in flight or that already completed successfully. A task that will run to completion if the original task completes successfully (either the first time or after retrying transient failures). If the task fails with a non-transient error or the retry limit is reached, the returned task will become faulted and the exception must be observed. Executes the specified asynchronous operation and returns the result. The strategy that will be used for the execution. A function that returns a started task of type . The result type of the returned by . A task that will run to completion if the original task completes successfully (either the first time or after retrying transient failures). If the task fails with a non-transient error or the retry limit is reached, the returned task will become faulted and the exception must be observed. Executes the specified asynchronous operation and returns the result. The strategy that will be used for the execution. A function that returns a started task of type . A cancellation token used to cancel the retry operation, but not operations that are already in flight or that already completed successfully. The result type of the returned by . A task that will run to completion if the original task completes successfully (either the first time or after retrying transient failures). If the task fails with a non-transient error or the retry limit is reached, the returned task will become faulted and the exception must be observed. Executes the specified asynchronous operation. The strategy that will be used for the execution. The state that will be passed to the operation. A function that returns a started task. The type of the state. A task that will run to completion if the original task completes successfully (either the first time or after retrying transient failures). If the task fails with a non-transient error or the retry limit is reached, the returned task will become faulted and the exception must be observed. Executes the specified asynchronous operation. The strategy that will be used for the execution. The state that will be passed to the operation. A function that returns a started task. A cancellation token used to cancel the retry operation, but not operations that are already in flight or that already completed successfully. The type of the state. A task that will run to completion if the original task completes successfully (either the first time or after retrying transient failures). If the task fails with a non-transient error or the retry limit is reached, the returned task will become faulted and the exception must be observed. Executes the specified asynchronous operation and returns the result. The strategy that will be used for the execution. The state that will be passed to the operation. A function that returns a started task of type . The type of the state. The result type of the returned by . A task that will run to completion if the original task completes successfully (either the first time or after retrying transient failures). If the task fails with a non-transient error or the retry limit is reached, the returned task will become faulted and the exception must be observed. Executes the specified operation and returns the result. The strategy that will be used for the execution. The state that will be passed to the operation. A delegate representing an executable operation that returns the result of type . The type of the state. The return type of . The result from the operation. Executes the specified asynchronous operation and returns the result. The strategy that will be used for the execution. The state that will be passed to the operation. A function that returns a started task of type . A cancellation token used to cancel the retry operation, but not operations that are already in flight or that already completed successfully. The type of the state. The result type of the returned by . A task that will run to completion if the original task completes successfully (either the first time or after retrying transient failures). If the task fails with a non-transient error or the retry limit is reached, the returned task will become faulted and the exception must be observed. Executes the specified operation and returns the result. The strategy that will be used for the execution. A delegate representing an executable operation that returns the result of type . A delegate that tests whether the operation succeeded even though an exception was thrown. The state that will be passed to the operation. The type of the state. The return type of . The result from the operation. The operation has not succeeded after the configured number of retries. Executes the specified operation and returns the result. The strategy that will be used for the execution. A delegate representing an executable operation that returns the result of type . A delegate that tests whether the operation succeeded even though an exception was thrown. The state that will be passed to the operation. The type of the state. The return type of . The result from the operation. The operation has not succeeded after the configured number of retries. Executes the specified asynchronous operation and returns the result. The strategy that will be used for the execution. The state that will be passed to the operation. A function that returns a started task of type . A delegate that tests whether the operation succeeded even though an exception was thrown. A cancellation token used to cancel the retry operation, but not operations that are already in flight or that already completed successfully. The type of the state. The result type of the returned by . A task that will run to completion if the original task completes successfully (either the first time or after retrying transient failures). If the task fails with a non-transient error or the retry limit is reached, the returned task will become faulted and the exception must be observed. The operation has not succeeded after the configured number of retries. Executes the specified operation in a transaction. Allows to check whether the transaction has been rolled back if an error occurs during commit. The strategy that will be used for the execution. A delegate representing an executable operation. A delegate that tests whether the operation succeeded even though an exception was thrown when the transaction was being committed. The operation has not succeeded after the configured number of retries. Executes the specified asynchronous operation in a transaction. Allows to check whether the transaction has been rolled back if an error occurs during commit. The strategy that will be used for the execution. A function that returns a started task. A delegate that tests whether the operation succeeded even though an exception was thrown when the transaction was being committed. A task that will run to completion if the original task completes successfully (either the first time or after retrying transient failures). If the task fails with a non-transient error or the retry limit is reached, the returned task will become faulted and the exception must be observed. The operation has not succeeded after the configured number of retries. Executes the specified asynchronous operation in a transaction. Allows to check whether the transaction has been rolled back if an error occurs during commit. The strategy that will be used for the execution. A function that returns a started task. A delegate that tests whether the operation succeeded even though an exception was thrown when the transaction was being committed. A cancellation token used to cancel the retry operation, but not operations that are already in flight or that already completed successfully. A task that will run to completion if the original task completes successfully (either the first time or after retrying transient failures). If the task fails with a non-transient error or the retry limit is reached, the returned task will become faulted and the exception must be observed. The operation has not succeeded after the configured number of retries. Executes the specified operation in a transaction and returns the result. Allows to check whether the transaction has been rolled back if an error occurs during commit. The strategy that will be used for the execution. A delegate representing an executable operation that returns the result of type . A delegate that tests whether the operation succeeded even though an exception was thrown when the transaction was being committed. The return type of . The result from the operation. The operation has not succeeded after the configured number of retries. Executes the specified asynchronous operation in a transaction and returns the result. Allows to check whether the transaction has been rolled back if an error occurs during commit. The strategy that will be used for the execution. A function that returns a started task of type . A delegate that tests whether the operation succeeded even though an exception was thrown when the transaction was being committed. A cancellation token used to cancel the retry operation, but not operations that are already in flight or that already completed successfully. The result type of the returned by . A task that will run to completion if the original task completes successfully (either the first time or after retrying transient failures). If the task fails with a non-transient error or the retry limit is reached, the returned task will become faulted and the exception must be observed. The operation has not succeeded after the configured number of retries. Executes the specified operation in a transaction. Allows to check whether the transaction has been rolled back if an error occurs during commit. The strategy that will be used for the execution. The state that will be passed to the operation. A delegate representing an executable operation. A delegate that tests whether the operation succeeded even though an exception was thrown when the transaction was being committed. The type of the state. The operation has not succeeded after the configured number of retries. Executes the specified asynchronous operation in a transaction. Allows to check whether the transaction has been rolled back if an error occurs during commit. The strategy that will be used for the execution. The state that will be passed to the operation. A function that returns a started task. A delegate that tests whether the operation succeeded even though an exception was thrown when the transaction was being committed. A cancellation token used to cancel the retry operation, but not operations that are already in flight or that already completed successfully. The type of the state. A task that will run to completion if the original task completes successfully (either the first time or after retrying transient failures). If the task fails with a non-transient error or the retry limit is reached, the returned task will become faulted and the exception must be observed. The operation has not succeeded after the configured number of retries. Executes the specified operation in a transaction and returns the result. Allows to check whether the transaction has been rolled back if an error occurs during commit. The strategy that will be used for the execution. The state that will be passed to the operation. A delegate representing an executable operation that returns the result of type . A delegate that tests whether the operation succeeded even though an exception was thrown when the transaction was being committed. The type of the state. The return type of . The result from the operation. The operation has not succeeded after the configured number of retries. Executes the specified asynchronous operation in a transaction and returns the result. Allows to check whether the transaction has been rolled back if an error occurs during commit. The strategy that will be used for the execution. The state that will be passed to the operation. A function that returns a started task of type . A delegate that tests whether the operation succeeded even though an exception was thrown when the transaction was being committed. A cancellation token used to cancel the retry operation, but not operations that are already in flight or that already completed successfully. The type of the state. The result type of the returned by . A task that will run to completion if the original task completes successfully (either the first time or after retrying transient failures). If the task fails with a non-transient error or the retry limit is reached, the returned task will become faulted and the exception must be observed. The operation has not succeeded after the configured number of retries. Executes the specified operation in a transaction and returns the result. Allows to check whether the transaction has been rolled back if an error occurs during commit. The strategy that will be used for the execution. The state that will be passed to the operation. A delegate representing an executable operation that returns the result of type . A delegate that tests whether the operation succeeded even though an exception was thrown when the transaction was being committed. A delegate that begins a transaction using the given context. The type of the state. The return type of . The result from the operation. The operation has not succeeded after the configured number of retries. Executes the specified asynchronous operation in a transaction and returns the result. Allows to check whether the transaction has been rolled back if an error occurs during commit. The strategy that will be used for the execution. The state that will be passed to the operation. A function that returns a started task of type . A delegate that tests whether the operation succeeded even though an exception was thrown when the transaction was being committed. A delegate that begins a transaction using the given context. A cancellation token used to cancel the retry operation, but not operations that are already in flight or that already completed successfully. The type of the state. The result type of the returned by . A task that will run to completion if the original task completes successfully (either the first time or after retrying transient failures). If the task fails with a non-transient error or the retry limit is reached, the returned task will become faulted and the exception must be observed. The operation has not succeeded after the configured number of retries. 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. 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. Gets or sets a value indicating when a dependent/child entity will have its state set to once severed from a parent/principal entity through either a navigation or foreign key property being set to null. The default value is . Dependent/child entities are only deleted automatically when the relationship is configured with . This is set by default for required relationships. Gets or sets a value indicating when a dependent/child entity will have its state set to once its parent/principal entity has been marked as . The default value is. Dependent/child entities are only deleted automatically when the relationship is configured with . This is set by default for required relationships. 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. 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. 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. 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. 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. 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. Forces immediate cascading deletion of child/dependent entities when they are either severed from a required parent/principal entity, or the required parent/principal entity is itself deleted. See . The entry. The foreign keys to consider when cascading. 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. 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. 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. 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. 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. 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. 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. Providers tracking capabilities for seed data stored in the model using . This interface is typically used by database providers (and other extensions). It is generally not used in application code. Gets or sets a value indicating when a dependent/child entity will have its state set to once severed from a parent/principal entity through either a navigation or foreign key property being set to null. The default value is . Dependent/child entities are only deleted automatically when the relationship is configured with . This is set by default for required relationships. Gets or sets a value indicating when a dependent/child entity will have its state set to once its parent/principal entity has been marked as . The default value is. Dependent/child entities are only deleted automatically when the relationship is configured with . This is set by default for required relationships. Gets the principal entry for the given dependent entry and foreign key. The dependent entry. The foreign key that defines the relationship. The principal, or null if none was found. Returns the dependents associated with the given principal and foreign key. The principal entry. The foreign key that defines the relationship. The dependents. Finds the tracked entity for the given key values. The primary or alternate key to use. The key values. The entry for the found entity, or null if no entity with these key values is being tracked. All the entries currently being tracked. Causes the underlying tracker to detect changes made to the tracked entities. Forces immediate cascading deletion of child/dependent entities when they are either severed from a required parent/principal entity, or the required parent/principal entity is itself deleted. See . This method is usually used when and/or have been set to to manually force the deletes to have at a time controlled by the application. If is true then this method will call . Forces immediate cascading deletion of child/dependent entities when they are either severed from a required parent/principal entity, or the required parent/principal entity is itself deleted. See . The entry. The foreign keys to consider when cascading. Gets all the entries that require inserts/updates/deletes in the database. The entries that need to be saved. Creates a new entry with the given property values for the given entity type. A dictionary of property names to values. The entity type. The created entry. The model with which the data is associated. Factory for creating instances. This interface is typically used by database providers (and other extensions). It is generally not used in application code. Creates a tracker for the model currently in use. The new tracker. Creates a standalone tracker that works with its own and hence will not impact tracking on the state manager currently in use. The from this update adapter should be used explicitly once they have been setup. They will not be visible to other parts of the stack, including . The model for which a tracker is needed, or null to use the current model. The new tracker. The information passed to a database provider to save changes to an entity to the database. This interface is typically used by database providers (and other extensions). It is generally not used in application code. Sets the original value of the given property. The property to set. The value to set. Marks the given property as modified. The property to mark as modified. The type of entity to be saved to the database. The state of the entity to be saved. The other entry that has the same key values, if one exists. Gets a value indicating if the specified property is modified. If true, the current value assigned to the property should be saved to the database. The property to be checked. True if the property is modified, otherwise false. Gets a value indicating if the specified property has a temporary value. The property to be checked. True if the property has a temporary value, otherwise false. Gets a value indicating if the specified property should have a value generated by the database. The property to be checked. True if the property should have a value generated by the database, otherwise false. Gets the value assigned to the property. The property to get the value for. The value for the property. Gets the value assigned to the property when it was retrieved from the database. The property to get the value for. The value for the property. Gets the value assigned to the property. The property to get the value for. The type of the property. The value for the property. Gets the value assigned to the property when it was retrieved from the database. The property to get the value for. The type of the property. The value for the property. Assign a store-generated value to the property. The property to set the value for. The value to set. Gets an for the entity being saved. is an API optimized for application developers and is optimized for database providers, but there may be instances where a database provider wants to access information from . An for this entity. Extension methods for . Creates a formatted string representation of the given properties and their current values such as is useful when throwing exceptions about keys, indexes, etc. that use the properties. The entry from which values will be obtained. The properties to format. The string representation. Creates a formatted string representation of the given properties and their original values such as is useful when throwing exceptions about keys, indexes, etc. that use the properties. The entry from which values will be obtained. The properties to format. The string representation. Generates values using . The generated values are non-temporary, meaning they will be saved to the database. Gets a value to be assigned to a property. The change tracking entry of the entity for which the value is being generated. The value to be assigned to a property. Gets a value indicating whether the values generated are temporary or permanent. This implementation always returns false, meaning the generated values will be saved to the database. Acts as a by requesting a block of values from the underlying database and returning them one by one. Will ask the underlying database for another block when the current block is exhausted. A block is represented by a low value fetched from the database, and then a block size that indicates how many sequential values can be used, starting from the low value, before a new low value must be fetched from the database. The type of values that are generated. Initializes a new instance of the class. The state used to keep track of which value to return next. Gets a value to be assigned to a property. The change tracking entry of the entity for which the value is being generated. The value to be assigned to a property. Gets a value to be assigned to a property. The change tracking entry of the entity for which the value is being generated. The value to be assigned to a property. Gets the low value for the next block of values to be used. The low value for the next block of values to be used. Gets the low value for the next block of values to be used. The cancellation token. The low value for the next block of values to be used. The thread safe state used by . Initializes a new instance of the class. The number of sequential values that can be used, starting from the low value, before a new low value must be fetched from the database. Gets a value to be assigned to a property. The type of values being generated. A function to get the next low value if needed. The value to be assigned to a property. Gets a value to be assigned to a property. The type of values being generated. A function to get the next low value if needed. A to observe while waiting for the task to complete. The value to be assigned to a property. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. Keeps a cache of value generators for properties. This type is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Gets the existing value generator from the cache, or creates a new one if one is not present in the cache. The property to get the value generator for. The entity type that the value generator will be used for. When called on inherited properties on derived entity types, this entity type may be different from the declared entity type on Factory to create a new value generator if one is not present in the cache. The existing or newly created value generator. Selects value generators to be used to generate values for properties of entities. This type is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Selects the appropriate value generator for a given property. The property to get the value generator for. The entity type that the value generator will be used for. When called on inherited properties on derived entity types, this entity type may be different from the declared entity type on The value generator to be used. Generates sequential values using the same algorithm as NEWSEQUENTIALID() in Microsoft SQL Server. This is useful when entities are being saved to a database where sequential GUIDs will provide a performance benefit. The generated values are non-temporary, meaning they will be saved to the database. Gets a value to be assigned to a property. The change tracking entry of the entity for which the value is being generated. The value to be assigned to a property. Gets a value indicating whether the values generated are temporary or permanent. This implementation always returns false, meaning the generated values will be saved to the database. Generates values using . The generated values are temporary, meaning they will be replaced by database generated values when the entity is saved. Gets a value indicating whether the values generated are temporary or permanent. This implementation always returns true, meaning the generated values will be replaced by database generated values when the entity is saved Generates values for properties when an entity is added to a context. Gets a value to be assigned to a property. The change tracking entry of the entity for which the value is being generated. The value to be assigned to a property. Template method to be overridden by implementations to perform value generation. The change tracking entry of the entity for which the value is being generated. The generated value. Gets a value to be assigned to a property. The change tracking entry of the entity for which the value is being generated. The value to be assigned to a property. Template method to be overridden by implementations to perform value generation. The change tracking entry of the entity for which the value is being generated. The generated value. Gets a value indicating whether the values generated are temporary (i.e they should be replaced by database generated values when the entity is saved) or are permanent (i.e. the generated values should be saved to the database). An example of temporary value generation is generating negative numbers for an integer primary key that are then replaced by positive numbers generated by the database when the entity is saved. An example of permanent value generation are client-generated values for a primary key which are saved to the database. Keeps a cache of value generators for properties. This type is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means a single instance is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Initializes a new instance of the class. Parameter object containing dependencies for this service. Gets the existing value generator from the cache, or creates a new one if one is not present in the cache. The property to get the value generator for. The entity type that the value generator will be used for. When called on inherited properties on derived entity types, this entity type may be different from the declared entity type on Factory to create a new value generator if one is not present in the cache. The existing or newly created value generator. Service dependencies parameter class for This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is . This means a single instance of each service is used by many instances. The implementation must be thread-safe. This service cannot depend on services registered as . Creates the service dependencies parameter object for a . Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. 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. Base class for factories that create value generators. Creates a new value generator. The property to create the value generator for. The newly created value generator. Selects value generators to be used to generate values for properties of entities. This type is typically used by database providers (and other extensions). It is generally not used in application code. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. The cache being used to store value generator instances. Initializes a new instance of the class. Parameter object containing dependencies for this service. Parameter object containing dependencies for this service. Selects the appropriate value generator for a given property. The property to get the value generator for. The entity type that the value generator will be used for. When called on inherited properties on derived entity types, this entity type may be different from the declared entity type on The value generator to be used. Creates a new value generator for the given property. The property to get the value generator for. The entity type that the value generator will be used for. When called on inherited properties on derived entity types, this entity type may be different from the declared entity type on The newly created value generator. Service dependencies parameter class for This type is typically used by database providers (and other extensions). It is generally not used in application code. Do not construct instances of this class directly from either provider or application code as the constructor signature may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. The service lifetime is . This means that each instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe. Creates the service dependencies parameter object for a . Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. 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. The cache being used to store value generator instances. Clones this dependency parameter object with one service replaced. A replacement for the current dependency of this type. A new parameter object with the given service replaced. Generates values for properties when an entity is added to a context. Template method to be overridden by implementations to perform value generation. The change tracking entry of the entity for which the value is being generated. The generated value. Template method to be overridden by implementations to perform value generation. The change tracking entry of the entity for which the value is being generated. The generated value. Gets a value to be assigned to a property. The change tracking entry of the entity for which the value is being generated. The value to be assigned to a property. Gets a value to be assigned to a property. The change tracking entry of the entity for which the value is being generated. The value to be assigned to a property. The runtime behavior of warnings generated by Entity Framework A warning is logged. No action is taken. An exception is thrown. Extension methods for setting up Entity Framework related services in an . Registers the given context as a service in the . You use this method when using dependency injection in your application, such as with ASP.NET. For more information on setting up dependency injection, see http://go.microsoft.com/fwlink/?LinkId=526890. public void ConfigureServices(IServiceCollection services) { var connectionString = "connection string to database"; services.AddDbContext<MyContext>(options => options.UseSqlServer(connectionString)); } The type of context to be registered. The to add services to. An optional action to configure the for the context. This provides an alternative to performing configuration of the context by overriding the method in your derived context. If an action is supplied here, the method will still be run if it has been overridden on the derived context. configuration will be applied in addition to configuration performed here. In order for the options to be passed into your context, you need to expose a constructor on your context that takes and passes it to the base constructor of . The lifetime with which to register the DbContext service in the container. The lifetime with which to register the DbContextOptions service in the container. The same service collection so that multiple calls can be chained. Registers the given context as a service in the . You use this method when using dependency injection in your application, such as with ASP.NET. For more information on setting up dependency injection, see http://go.microsoft.com/fwlink/?LinkId=526890. public void ConfigureServices(IServiceCollection services) { var connectionString = "connection string to database"; services.AddDbContext<MyContext>(options => options.UseSqlServer(connectionString)); } The class or interface that will be used to resolve the context from the container. The concrete implementation type to create. The to add services to. An optional action to configure the for the context. This provides an alternative to performing configuration of the context by overriding the method in your derived context. If an action is supplied here, the method will still be run if it has been overridden on the derived context. configuration will be applied in addition to configuration performed here. In order for the options to be passed into your context, you need to expose a constructor on your context that takes and passes it to the base constructor of . The lifetime with which to register the DbContext service in the container. The lifetime with which to register the DbContextOptions service in the container. The same service collection so that multiple calls can be chained. Registers the given context as a service in the and enables DbContext pooling. Instance pooling can increase throughput in high-scale scenarios such as web servers by re-using DbContext instances, rather than creating new instances for each request. You use this method when using dependency injection in your application, such as with ASP.NET. For more information on setting up dependency injection, see http://go.microsoft.com/fwlink/?LinkId=526890. The type of context to be registered. The to add services to. A required action to configure the for the context. When using context pooling, options configuration must be performed externally; will not be called. Sets the maximum number of instances retained by the pool. The same service collection so that multiple calls can be chained. Registers the given context as a service in the and enables DbContext pooling. Instance pooling can increase throughput in high-scale scenarios such as web servers by re-using DbContext instances, rather than creating new instances for each request. You use this method when using dependency injection in your application, such as with ASP.NET. For more information on setting up dependency injection, see http://go.microsoft.com/fwlink/?LinkId=526890. The class or interface that will be used to resolve the context from the container. The concrete implementation type to create. The to add services to. A required action to configure the for the context. When using context pooling, options configuration must be performed externally; will not be called. Sets the maximum number of instances retained by the pool. The same service collection so that multiple calls can be chained. Registers the given context as a service in the and enables DbContext pooling. Instance pooling can increase throughput in high-scale scenarios such as web servers by re-using DbContext instances, rather than creating new instances for each request. You use this method when using dependency injection in your application, such as with ASP.NET. For more information on setting up dependency injection, see http://go.microsoft.com/fwlink/?LinkId=526890. This overload has an that provides the applications . This is useful if you want to setup Entity Framework to resolve its internal services from the primary application service provider. By default, we recommend using the other overload, which allows Entity Framework to create and maintain its own for internal Entity Framework services. The type of context to be registered. The to add services to. A required action to configure the for the context. When using context pooling, options configuration must be performed externally; will not be called. Sets the maximum number of instances retained by the pool. The same service collection so that multiple calls can be chained. Registers the given context as a service in the and enables DbContext pooling. Instance pooling can increase throughput in high-scale scenarios such as web servers by re-using DbContext instances, rather than creating new instances for each request. You use this method when using dependency injection in your application, such as with ASP.NET. For more information on setting up dependency injection, see http://go.microsoft.com/fwlink/?LinkId=526890. This overload has an that provides the applications . This is useful if you want to setup Entity Framework to resolve its internal services from the primary application service provider. By default, we recommend using the other overload, which allows Entity Framework to create and maintain its own for internal Entity Framework services. The class or interface that will be used to resolve the context from the container. The concrete implementation type to create. The to add services to. A required action to configure the for the context. When using context pooling, options configuration must be performed externally; will not be called. Sets the maximum number of instances retained by the pool. The same service collection so that multiple calls can be chained. Registers the given context as a service in the . You use this method when using dependency injection in your application, such as with ASP.NET. For more information on setting up dependency injection, see http://go.microsoft.com/fwlink/?LinkId=526890. public void ConfigureServices(IServiceCollection services) { var connectionString = "connection string to database"; services.AddDbContext<MyContext>(ServiceLifetime.Scoped); } The type of context to be registered. The to add services to. The lifetime with which to register the DbContext service in the container. The lifetime with which to register the DbContextOptions service in the container. The same service collection so that multiple calls can be chained. Registers the given context as a service in the . You use this method when using dependency injection in your application, such as with ASP.NET. For more information on setting up dependency injection, see http://go.microsoft.com/fwlink/?LinkId=526890. public void ConfigureServices(IServiceCollection services) { var connectionString = "connection string to database"; services.AddDbContext<MyContext>(ServiceLifetime.Scoped); } The class or interface that will be used to resolve the context from the container. The concrete implementation type to create. The to add services to. The lifetime with which to register the DbContext service in the container. The lifetime with which to register the DbContextOptions service in the container. The same service collection so that multiple calls can be chained. Registers the given context as a service in the . You use this method when using dependency injection in your application, such as with ASP.NET. For more information on setting up dependency injection, see http://go.microsoft.com/fwlink/?LinkId=526890. This overload has an that provides the applications . This is useful if you want to setup Entity Framework to resolve its internal services from the primary application service provider. By default, we recommend using the other overload, which allows Entity Framework to create and maintain its own for internal Entity Framework services. public void ConfigureServices(IServiceCollection services) { var connectionString = "connection string to database"; services .AddEntityFrameworkSqlServer() .AddDbContext<MyContext>((serviceProvider, options) => options.UseSqlServer(connectionString) .UseInternalServiceProvider(serviceProvider)); } The type of context to be registered. The to add services to. An optional action to configure the for the context. This provides an alternative to performing configuration of the context by overriding the method in your derived context. If an action is supplied here, the method will still be run if it has been overridden on the derived context. configuration will be applied in addition to configuration performed here. In order for the options to be passed into your context, you need to expose a constructor on your context that takes and passes it to the base constructor of . The lifetime with which to register the DbContext service in the container. The lifetime with which to register the DbContextOptions service in the container. The same service collection so that multiple calls can be chained. Registers the given context as a service in the . You use this method when using dependency injection in your application, such as with ASP.NET. For more information on setting up dependency injection, see http://go.microsoft.com/fwlink/?LinkId=526890. This overload has an that provides the applications . This is useful if you want to setup Entity Framework to resolve its internal services from the primary application service provider. By default, we recommend using the other overload, which allows Entity Framework to create and maintain its own for internal Entity Framework services. public void ConfigureServices(IServiceCollection services) { var connectionString = "connection string to database"; services .AddEntityFrameworkSqlServer() .AddDbContext<MyContext>((serviceProvider, options) => options.UseSqlServer(connectionString) .UseInternalServiceProvider(serviceProvider)); } The class or interface that will be used to resolve the context from the container. The concrete implementation type to create. The to add services to. An optional action to configure the for the context. This provides an alternative to performing configuration of the context by overriding the method in your derived context. If an action is supplied here, the method will still be run if it has been overridden on the derived context. configuration will be applied in addition to configuration performed here. In order for the options to be passed into your context, you need to expose a constructor on your context that takes and passes it to the base constructor of . The lifetime with which to register the DbContext service in the container. The lifetime with which to register the DbContextOptions service in the container. The same service collection so that multiple calls can be chained. Extension methods for the returned from for use with . Specifies an existing to be used for database operations. The for the context. The transaction to be used. Returns the currently enlisted transaction. The for the context. The currently enlisted transaction.