Microsoft.EntityFrameworkCore 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. 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. 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. 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. Saves all changes made in this context to the database. Indicates whether is called after the changes have been sent successfully 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. Asynchronously 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. Asynchronously saves all changes made in this context to the database. Indicates whether is called after the changes have been sent successfully 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. 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. 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 in the state such that no operation will be performed when 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. These entities will also begin to be tracked by the context. If a reachable 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. 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. 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 in the state such that it will be updated in the database when is called. All properties of the entity will be marked as modified. To mark only some properties as modified, use to begin tracking the entity in the state and then use the returned to mark the desired properties as modified. A recursive search of the navigation properties will be performed to find reachable entities that are not already being tracked by the context. These entities will also begin to be tracked by the context. If a reachable 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. 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. 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. 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. 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 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 in the state such that no operation will be performed when 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. These entities will also begin to be tracked by the context. If a reachable 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. 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. 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 updated in the database when is called. All properties of the entity will be marked as modified. To mark only some properties as modified, use to begin tracking the entity in the state and then use the returned to mark the desired properties as modified. A recursive search of the navigation properties will be performed to find reachable entities that are not already being tracked by the context. These entities will also begin to be tracked by the context. If a reachable 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. 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. 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. 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 in the state such that no operation will be performed when 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. These entities will also begin to be tracked by the context. If a reachable 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. 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. The entities to attach. Begins tracking the given entities in the state such that they will be updated in the database when is called. All properties of each entity will be marked as modified. To mark only some properties as modified, use to begin tracking each entity in the state and then use the returned to mark the desired properties as modified. A recursive search of the navigation properties will be performed to find reachable entities that are not already being tracked by the context. These entities will also begin to be tracked by the context. If a reachable 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. 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. 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 in the state such that no operation will be performed when 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. These entities will also begin to be tracked by the context. If a reachable 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. 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. The entities to attach. Begins tracking the given entities in the state such that they will be updated in the database when is called. All properties of each entity will be marked as modified. To mark only some properties as modified, use to begin tracking each entity in the state and then use the returned to mark the desired properties as modified. A recursive search of the navigation properties will be performed to find reachable entities that are not already being tracked by the context. These entities will also begin to be tracked by the context. If a reachable 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. 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. 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. 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. 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. 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. 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 options. The type of extension to be added. The extension to be added. The same options instance so that multiple calls can be chained. The type of context that these options are for. Will return if the options are not built for a specific derived context. 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. 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. The logger factory to be used. The same builder instance so that multiple calls can be chained. Sets the to be used for query caching by this context. EF will create and manage a memory cache if none is specified. 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 the method. Most databases also provide an extension method on to register the services required. 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. 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. 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. optionsBuilder.ConfigureWarnings(warnings => warnings.Default(WarningBehavior.Ignore) .Log(CoreEventId.IncludeIgnoredWarning, CoreEventId.ModelValidationWarning) .Throw(RelationalEventId.QueryClientEvaluationWarning)) 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 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. 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 used for logging information from the context. The to be used. The same builder instance so that multiple calls can be chained. Sets the used to cache information such as query translations. If none is specified, then Entity Framework will maintain its own internal . The to be used. The same builder instance so that multiple calls can be chained. Sets the that the context will resolve its internal services from. If none is specified, then Entity Framework will maintain its own internal . By default, we recommend allowing Entity Framework to create and maintain its own for internal services. The 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. 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. optionsBuilder.ConfigureWarnings(warnings => warnings.Default(WarningBehavior.Ignore) .Log(CoreEventId.IncludeIgnoredWarning, CoreEventId.ModelValidationWarning) .Throw(RelationalEventId.QueryClientEvaluationWarning)) 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 options. The type of extension to be added. The extension to be added. The same options instance so that multiple calls can be chained. The type of context that these options are for (). 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. 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. For WPF bind to this property directly. For Windows Forms bind to the result of calling ToBindingList on this property. 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. 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 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 in the state such that no operation will be performed when 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. These entities will also begin to be tracked by the context. If a reachable 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. 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. 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. 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 in the state such that it will be updated in the database when is called. All properties of the entity will be marked as modified. To mark only some properties as modified, use to begin tracking the entity in the state and then use the returned to mark the desired properties as modified. A recursive search of the navigation properties will be performed to find reachable entities that are not already being tracked by the context. These entities will also begin to be tracked by the context. If a reachable 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. 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. 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 in the state such that no operation will be performed when 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. These entities will also begin to be tracked by the context. If a reachable 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. 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. The entities to attach. 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 in the state such that they will be updated in the database when is called. All properties of each entity will be marked as modified. To mark only some properties as modified, use to begin tracking each entity in the state and then use the returned to mark the desired properties as modified. A recursive search of the navigation properties will be performed to find reachable entities that are not already being tracked by the context. These entities will also begin to be tracked by the context. If a reachable 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. 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. 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 in the state such that no operation will be performed when 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. These entities will also begin to be tracked by the context. If a reachable 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. 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. The entities to attach. 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 in the state such that they will be updated in the database when is called. All properties of each entity will be marked as modified. To mark only some properties as modified, use to begin tracking each entity in the state and then use the returned to mark the desired properties as modified. A recursive search of the navigation properties will be performed to find reachable entities that are not already being tracked by the context. These entities will also begin to be tracked by the context. If a reachable 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. 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. 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 the 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 materialize the results into a collection, by calling a method such as or , and bind to the collection. 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. 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. The error message that explains the reason for the exception. The entries that were involved in the concurrency violation. An exception that is thrown when an error is encountered while saving to the database. 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 entries that were involved in the error. The exception that is the cause of the current exception. 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. 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. 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. 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 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 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. This method exists only for binary compatibility and is obsolete. Use instead. 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 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. 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 . 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. 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 not be tracked by the context. 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. 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. 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. The model being configured. Adds or updates an annotation on the model. If an annotation with the key specified in already exists it's 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. 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. 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 witll 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. 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. The runtime behavior of warnings generated by Entity Framework A warning is logged. No action is taken. An exception is thrown. 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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 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 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 internal state manager being used to store information about tracked entities. This property is intended for use by extension methods. It is not intended to be used in application code. 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. 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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. 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. Gets the entity being tracked by this entry. Gets or sets that state that this entity is being tracked in. 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. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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. False if one or more of the key properties is assigned null or the CLR default, otherwise true. 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. Provides access to change tracking information and operations for a node in a graph of entities that is being traversed. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. Gets the navigation property that is being traversed to reach this node in the graph. Gets or sets state that will be available to all nodes that are visited after this node. 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 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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. 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 . The type of the entity in the local view. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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. 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. The binding list. 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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 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 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. Subseqent 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. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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. 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. Returns an implementation that stays in sync with this collection. The binding list. Extends and adds an explicit implementation of . The method is implemented to return an implementation that stays in sync with the ObservableHashSet. This class can be used to implement navigation properties on entities for use in Windows Forms data binding. For WPF data binding use an ObservableHashSet rather than an instance of this class. 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 ObservableHashSet. 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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 optimitisic concurrency exceptions signalled by the throwing of a . This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. Creates an insatcne 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 coiped. 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. 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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 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. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. The state manager is tracking for a single query for one entity type and no self-refs. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. The state manager is tracking for a single query, but with multiple entity types and/or self refs. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. The state manager is tracking for multiple queries and/or with other tracked entities. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. Extension methods for . 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. 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. 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. 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. 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 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 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. 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. 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. A delegate representing an executable operation that doesn't return any results. The state that will be passed to the operation. 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. A function that returns a started task. The state that will be passed to the operation. 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. 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 state that will be passed to the operation. 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. A function that returns a started task of type . The state that will be passed to the operation. 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 . The state that will be passed to the operation. 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. 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 state that will be passed to the operation. 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 in a transaction and returns the result after commiting it. 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 state that will be passed to the operation. The context that will be used to start the transaction. The type of the state. The return type of . The result from the operation. Thrown if 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. 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 state that will be passed to the operation. The context that will be used to start the transaction. 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. Thrown if the operation has not succeeded after the configured number of retries. 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 of the entity class to find the type for. The entity type, or null if none if found. 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. Null indicates that the default property access mode is being used. 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. Extension methods for . Gets the existing annotation with a given key, or adds a new annotation if one does not exist. The object to find or add the annotation to. The key of the annotation to be found or added. The value to be stored in the annotation if a new one is created. The found or added annotation. Adds annotations to an object. The object to add the annotations to. The annotations to be added. Extension methods for . 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. 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. Sets the primary key for this entity. The entity type to set the key on. The primary key property. The newly created key. Gets the existing primary key of an entity, or sets it if one is not defined. The entity type to get or set the key on. The property to set as the primary key if one is not already defined. The existing or newly created key. Gets the existing primary key of an entity, or sets it if one is not defined. The entity type to get or set the key on. The properties to set as the primary key if one is not already defined. The existing or 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. Gets the existing alternate key defined on a property, or creates a new one if one is not already defined. The entity type to get or create the alternate key on. The property that is used as the alternate key. The existing or newly created alternate key. Gets the existing alternate key defined on a set of properties, or creates a new one if one is not already defined. The entity type to get or create the alternate key on. The properties that are used as the alternate key. The existing or newly created alternate key. 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. Adds a new relationship to this entity. 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. Gets an existing relationship, or creates a new one if one is not already defined. The entity type to get or 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 existing or newly created foreign key. Gets an existing relationship, or creates a new one if one is not already defined. The entity type to get or add the foreign key to. 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 existing or newly created foreign key. 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 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. Adds a property to this entity. The entity type to add the property to. The corresponding property in the entity class. The newly created property. Gets the property with the given name, or creates a new one if one is not already defined. The entity type to get or add the property to. The name of the property. The type of value the property will hold. The existing or newly created property. The returned property might not have the specified type and shadowness. Gets the property with the given name, or creates a new one if one is not already defined. The entity type to get or add the property to. The corresponding property in the entity class. The existing or newly created property. The returned property might not have the specified type and shadowness. 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. The entity type to add the index to. The property to be indexed. The newly created index. Gets the index defined on the given property or creates a new one if one is not already defined. The entity type to get or add the index to. The property to be indexed. The existing or newly created index. Gets the index defined on the given property or creates a new one if one is not already defined. The entity type to get or add the index to. The properties to be indexed. The existing or newly created index. Sets the to use for properties of this entity type. Note that individual properties can override this access mode. The value set here will be used for any property for which no override has been specified. The entity type for which to set the access mode. The , or null to clear the mode set. 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 of the entity class to find the type for. The entity type, or null if none if found. Gets the entity type with the given name or adds a new entity type if none is found. The model to find or add the entity type to. The name of the entity type. The existing or newly created entity type. Gets the entity type with the given .NET type or adds a new entity type if none is found. The model to find or add the entity type to. The .NET type of the entity type. The existing or newly created entity type. 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. 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. 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. Extension methods for . 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 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 . 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 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 or not 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 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 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. Extension methods for . 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. 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 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 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 . 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 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 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 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. Extension methods for . Gets the being used for properties of this type. Null indicates that the default property access mode is being used. Note that individual properties can override this access mode. The value returned here will be used for any property 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. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. The string argument '{argumentName}' cannot be empty. Unable to save changes because a circular dependency was detected in the data to be saved: '{cycle}'. The value provided for argument '{argumentName}' must be a valid value of enum type '{enumType}'. The properties expression '{expression}' is not valid. The expression should represent a 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 property access: 't => t.MyProperty'. The instance of entity type '{entityType}' cannot be tracked because another instance of this type with the same key is already being tracked. When adding new entities, for most key types a unique temporary key value will be created if no key is set (i.e. if the key property is assigned the default value for its type). If you are explicitly setting key values for new entities, ensure they do not collide with existing entities or temporary values generated for other new entities. When attaching existing entities, ensure that only one entity instance with a given key value is attached to the context. 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. The collection argument '{argumentName}' must contain at least one element. The entity type '{entityType}' requires a primary key to be defined. 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 IEntityQueryProvider 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}'. Cannot change ObservableHashSet during a CollectionChanged event. 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 configure a backing field or use a different '{pam}'. 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. Field '{field}' of entity type '{entity}' is readonly and so cannot be set. 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. The database providers {storeNames}are configured. A context can only be configured to use a single database provider. 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}. The database providers {storeNames}are available. A context can only be configured to use a single database provider. Configure a database provider by overriding OnConfiguring in your DbContext class or in the AddDbContext method when setting up 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 type '{givenType}' cannot be used a 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. An exception occurred in the database while iterating the results of a query.{newline}{error} An exception occurred in the database while saving changes.{newline}{error} The EF.Property<T> method may only be used within LINQ queries. The property '{property}' cannot be added to the entity type '{entityType}' because a property with the same name already exists on entity type '{duplicateEntityType}'. 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 navigation property '{navigation}' cannot be added to the entity type '{entityType}' because a navigation property with the same name 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. 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 foreign key for this relationship cannot be set to null. If the dependent entity should be deleted, then setup the relationship to use cascade deletes. The property '{property}' on entity type '{entityType}' is marked as null, but this cannot be saved because the property is marked as required. 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 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 Include operator is not implemented by the current database provider. The expression '{expression}' passed to the Include operator could not be bound. 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. Compiling query model: {newline}'{queryModel}' Optimized query model: {newline}'{queryModel}' Including navigation: '{navigation}' 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. 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. 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 entity type '{type}' provided for the argument '{argumentName}' must be a reference 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 key {key} on entity type '{entityType}' contains properties in shadow state - {shadowProperties}. 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 descendent 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 both types include the properties: {properties}. 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. The foreign key {foreignKey} on entity type '{entityType}' cannot be marked as optional because it does not contain any property of a nullable type. Any foreign key can be marked as required, but only foreign keys with at least one property of a nullable type and which is not part of primary key can be marked as 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. 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 descendent 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. 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 InverseProperty and ForeignKey. 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 '{property}' cannot be added to the entity type '{entityType}' because a navigation property with the same name already exists on entity type '{duplicateEntityType}'. The navigation property '{navigation}' cannot be added to the entity type '{entityType}' because a property with the same name already exists on entity type '{duplicateEntityType}'. 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 from the model. 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. The property '{entityType}.{property}' is of type '{propertyType}' which is not supported by current database provider. Either change the property CLR type or manually configure the database type for it. 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 from the model. 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 create or track an entity of type '{entityType}' because it has a null primary or alternate key value. Sensitive data logging is enabled. Log entries and exception messages may include sensitive application data, this mode should only be enabled during development. 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 is contained in a key defined on a base entity type. The property '{property}' cannot be part of a key on '{entityType}' because it 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. Any instance members are not guaranteed to be thread safe. 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 that was detected between '{dependentToPrincipalNavigationSpecification}' and '{principalToDependentNavigationSpecification}'. To identify the child/dependent side of the relationship, configure the foreign key property. See http://go.microsoft.com/fwlink/?LinkId=724062 for more details. The property expression '{propertyAccessExpression}' is not valid. The expression should represent a property access: 't => t.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}' has a temporary value. Either set a permanent value explicitly or ensure that the database is configured to generate values for this property. The database generated a null value for non-nullable property '{property}' of entity type '{entityType}'. Ensure value generation configuration in the database matches the configuration in the model. Sequence contains more than one element Sequence contains no elements 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. The Include operation for navigation: '{navigation}' was ignored because the target navigation is not reachable in the final query results. 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. Warning as error exception for warning '{eventId}': {message} To suppress this Exception use the DbContextOptionsBuilder.ConfigureWarnings API. ConfigureWarnings can be used when overriding the DbContext.OnConfiguring method or using AddDbContext on the application service provider. {message} To configure this warning use the DbContextOptionsBuilder.ConfigureWarnings API (event id '{eventId}'). ConfigureWarnings can be used when overriding the DbContext.OnConfiguring method or using AddDbContext on the application service provider. 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 occured while reading a database value for property '{entityType}.{property}'. See the inner exception for more information. An exception occured while reading a database value for property '{entityType}.{property}'. The expected type was '{expectedType}' but the actual value was of type '{actualType}'. An exception occured while reading a database value for property '{entityType}.{property}'. The expected type was '{expectedType}' but the actual value was null. An exception occured while reading a database value. See the inner exception for more information. An exception occured while reading a database value. The expected type was '{expectedType}' but the actual value was of type '{actualType}'. An exception occured 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. Cannot call Property for the property '{property}' on entity type '{entityType}' because it is configured as a navigation property. Property can only be used to configure scalar properties. 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. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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 annotation to be set. 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. Adds an annotation to this object or returns the existing annotation if one with the specified name already exists. The key of the annotation to be added. The value to be stored in the annotation. The existing annotation if an annotation with the specified name already exists. Otherwise, the newly added annotation. 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. 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. 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. Values that are used as the eventId when logging messages from the core Entity Framework components. An error occurred while accessing the database. A LINQ query is being compiled. An object model representing a LINQ query was optimized. A navigation property that was included in a LINQ query is being processed. An execution expression was calculated by compiling a LINQ query. A query specified an Include operation that was ignored because the included navigation was not reachable in the final query result. A warning that sensitive data logging is enabled. A warning during model validation. 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 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. 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. 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. 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. Provides information about the environment an application is running in. Gets or sets the directory containing the application. Gets or sets the directory containing the application content files. Gets or sets the name of the environment. 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 contain a method with the following signature public IServiceCollection ConfigureDesignTimeServices(IServiceCollection serviceCollection). The name of the assembly that contains the design time services. The NuGet package name that contains the design time services. Gets the name of the type that can be used to add the database providers design time services to a . This type should contain a method with the following signature public IServiceCollection ConfigureDesignTimeServices(IServiceCollection serviceCollection). Gets the name of the assembly that contains the design time services. Gets the NuGet package name that contains the design time services. Extension methods for setting up Entity Framework related services in an . Adds the services required by the core of Entity Framework to an . 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. You only need to use this functionality when you want Entity Framework to resolve the services it uses from an external . If you are not using an external Entity Framework will take care of creating the services it requires. The database you are using will also define extension methods that can be called on the returned to register the services required by the database. For example, when using Microsoft.EntityFrameworkCore.SqlServer you would call collection.AddEntityFrameworkSqlServer(). For derived contexts to be registered in the and resolve their services from the you must chain a call to the method on the returned . public void ConfigureServices(IServiceCollection services) { var connectionString = "connection string to database"; services.AddDbContext<MyContext>(options => options.UseSqlServer(connectionString)); } The to add services to. A builder that allows further Entity Framework specific setup of the . Provides Entity Framework specific APIs for configuring services in an . These APIs are usually accessed by calling and then chaining API calls on the returned . Initializes a new instance of the class. The being configured. Gets the being configured. 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 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. 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 key 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 key 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. 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 same assembly as the derived context. The type of the context. Creates a new instance of a derived context. Information about the environment an application is running in. An instance of . 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. 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. 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. 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. 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. 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. 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. Gets the model to be used. The context the model is being produced for. The convention set to use when creating the model. The validator to verify the model can be successfully used with the context. The model to be used. An for which logging of sensitive data can be enabled or disabled. Gets a value indicating whether sensitive data should be logged. An for which logging of sensitive data can be enabled or disabled. The type who's name is used for the logger category name. 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. Gets the model cache key for a given context. The context to get the model cache key for. The created key. Builds the model for a given context. This default 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. 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. A base 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. Gets the that will locate the properties on the derived context. Gets the that will build the conventions to be used to build the model. 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. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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 validator to verify the model can be successfully used with the context. 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 validator to verify the model can be successfully used with the context. The model to be used. Creates the convention set to be used for the model. Uses the if is null. The convention set builder to be used. The convention set to be used. Adds the entity types found in properties on the context to the model. The being used to build the model. The context to find properties on. A wrapping logger for which logging of sensitive data can be enabled or disabled. This type is typically used by database providers (and other extensions). It is generally not used in application code. The type who's name is used for the logger category name. Initializes a new instance of the class. The underlying logger to which logging information should be written. The options for the context that this logger is being used with. Gets a value indicating whether sensitive information should be written to the underlying logger. Configures the runtime behavior of warnings generated by Entity Framework. You can set a default behavior and behaviors for each warning type. 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. This class is used within the API and it is not designed to be directly constructed in your application code. The internal object used to store configuration. Gets the internal object used to store configuration. 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 core warnings are generated. Database providers (and other extensions) may provide extension method overloads of this method to configure this behavior for warnings they generate. The (s) for the warnings. The same builder instance so that multiple calls can be chained. Causes a warning to be logged when the specified core warnings are generated. Database providers (and other extensions) may provide extension method overloads of this method to configure this behavior for warnings they generate. The (s) for the warnings. The same builder instance so that multiple calls can be chained. Causes nothing to happen when the specified core warnings are generated. Database providers (and other extensions) may provide extension method overloads of this method to configure this behavior for warnings they generate. The (s) for the warnings. The same builder instance so that multiple calls can be chained. 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 only recorded for all properties, regardless of whether they are required to save changes to the entity. Indicates how a delete operation is applied to dependent entities in a relationship when the principal is deleted or the relationship is severed. The delete operation is not applied to dependent entities. The dependent entities remain unchanged. The foreign key properties in dependent entities are set to null. This cascading behavior is only applied to entities that are being tracked by the context. A corresponding cascade behavior should be setup in the database to ensure data that is not being tracked by the context has the same action applied. If you use EF to create the database, this cascade behavior will be setup for you. Dependent entities are also deleted. This cascading behavior is only applied to entities that are being tracked by the context. A corresponding cascade behavior should be setup in the database to ensure data that is not being tracked by the context has the same action applied. If you use EF to create the database, this cascade behavior will be setup for you. Represents an entity type in an . Gets the base type of the entity. Returns null if this is not a derived type in an inheritance hierarchy. Gets primary key for this entity. Returns null if no primary key is defined. To be a valid model, each entity type must have a primary key defined. Therefore, the primary key may be null while the model is being created, but will be present by the time the model is used with a . 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. 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. The foreign keys defined on this entity. 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. The indexes defined on this entity. 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. This API only returns scalar properties and does not return navigation properties. Use to get navigation properties. The properties defined on this entity. 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. 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 if this relationship is required. If true, the dependent entity must always be assigned to a valid 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). 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 context, or using . 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. The name 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 key of the annotation. The value of the existing annotation if an annotation with the specified name already exists. Otherwise, null. 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. 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. 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 ready-only view of the same metadata. Gets the model this entity belongs to. Gets or sets the base type of the entity. Returns null if this is not a derived type in an inheritance hierarchy. Sets the primary key for this entity. The properties that make up the primary key. The newly created key. Gets primary key for this entity. Returns null if no primary key is defined. To be a valid model, each entity type must have a primary key defined. Therefore, the primary key may be null while the model is being created, but will be present by the time the model is used with a . 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. The primary and alternate keys. Removes a primary or alternate key from this entity. The properties that make up the key. The key that was removed. Adds a new relationship to this entity. 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. The foreign keys defined on this entity. Removes a relationship from this entity. 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. Adds an index to this entity. 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. The indexes defined on this entity. Removes an index from this entity. The properties that make up the index. The index that was removed. Adds a property to this entity. The name of the property to add. The type of value the property will hold. 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. This API only returns scalar properties and does not return navigation properties. Use to get navigation properties. The properties defined on this entity. Removes a property from this entity. 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 ready-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 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 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. Gets or sets a value indicating whether the values assigned to the foreign key properties are unique. Gets or sets a value indicating if this relationship is required. If true, the dependent entity must always be assigned to a valid 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. 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 ready-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 ready-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 context, or using . This interface is used during model creation and allows the metadata to be modified. Once the model is built, represents a ready-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 this 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. The name of the entity type to find. The entity type, or null if none are found. Removes an entity type from the model. The name of the entity type to be removed. The entity type that was removed. Gets all entity types defined in the model. All entity types defined in the model. 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 ready-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 ready-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 for more information. Gets or sets a value indicating whether or not this property can be modified before the entity is saved to the database. If true, an exception will be thrown if a value is assigned to this property when it is in the state. Gets or sets a value indicating whether or not this property can be modified after the entity is saved to the database. If true, an exception will be thrown if a new value is assigned to this property after the entity exists in the database. Gets or sets a value indicating whether this property requires a to generate values when new entities are added to the context. 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. Gets or sets a value indicating whether or not the database will always generate a value for this property. If set to true, a value will always be read back from the database whenever the entity is saved regardless of the state of the property. If set to false, whenever a value is assigned to the property (or marked as modified) EF will attempt to save that value to the database rather than letting the database generate one. 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 ready-only view of the same metadata. Gets the type that this property belongs to. 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 ready-only view of the same metadata. Gets the model that this type belongs to. 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. 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 whether or not this property can be modified before the entity is saved to the database. If true, an exception will be thrown if a value is assigned to this property when it is in the state. Gets a value indicating whether or not this property can be modified after the entity is saved to the database. If true, an exception will be thrown if a new value is assigned to this property after the entity exists in the database. Gets a value indicating whether or not the database will always generate a value for this property. If set to true, a value will always be read back from the database whenever the entity is saved regardless of the state of the property. If set to false, whenever a value is assigned to the property (or marked as modified) EF will attempt to save that value to the database rather than letting the database generate one. 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 for more information. Gets a value indicating whether this property requires a to generate values when new entities are added to the context. 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. Gets the type of value that this property holds. 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. Base type for navigation and scalar properties. Gets the entity type that this property belongs to. 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 that this object represents. This may be null for shadow properties or if the backing field for the property is not known. 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. 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. 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. If no access mode is set, then the backing field for a property will be used if possible when constructing new instances of the entity. The property getter or setter will be used, if possible, for all other accesses of the property. Note that when it is not possible to use the field because it could not be found by convention and was not specified using , then the property will be used instead. Likewise, when it is not possible to use the property getter or setter, for example when the property is read-only, then the field will be used instead. 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. This access mode is similar to the default mode used if none has been set except that it will throw an exception if it is not possible to write to the field for entity construction. The default access mode will fall back to using the property instead. 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. 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. A value is never generated by the database. A value is generated by the database when an entity is added. The most common scenario for this is generated primary key values. A value is generated every time an entity is saved. This is typically used for scenarios such as row versions, timestamps, etc. 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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. 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. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. Configures this as a one-to-many relationship. 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. 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. 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. Gets the internal builder being used to configure the entity type. The entity type being configured. The model that the entity type belongs to. Adds or updates an annotation on the entity type. If an annotation with the key specified in already exists it's 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 in an inheritance hierarchy. The name of the base type. The same builder instance so that multiple configuration calls can be chained. Sets the base type of this entity in an inheritance hierarchy. The 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 a new unique constraint for this entity type if one does not already exist over the specified properties. The names of the properties that make up the unique constraint. An object that can be used to configure the unique constraint. 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. 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. Excludes the given property from the entity type. This method is typically used to remove properties from the entity type that were added by convention. The name of then 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 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 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 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 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 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 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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 witll change that behavior for all properties of this entity type as described in the enum. Calling this method overrrides 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. 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. Creates a new builder based on the provided internal builder. This overridden implementation creates instances so that logic inherited from the base class will use those instead of . The internal builder to create the new builder from. The newly created builder. Adds or updates an annotation on the entity type. If an annotation with the key specified in already exists it's 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 in an inheritance hierarchy. The name of the base type. The same builder instance so that multiple configuration calls can be chained. Sets the base type of this entity in an inheritance hierarchy. The base type. The same builder instance so that multiple configuration calls can be chained. Sets the base type of this entity in an inheritance hierarchy. The 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 a new unique constraint for this entity type if one does not already exist over the specified properties. A lambda expression representing the unique constraint property(s) (blog => blog.Url). If the unique constraint 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 unique constraint. 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 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 from the entity type that were added by convention. The name of then 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. 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 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 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. 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 witll change that behavior for all properties of this entity type as described in the enum. Calling this method overrrides 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. 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. The internal builder being used to configure the index. The index being configured. The model that the index belongs to. Adds or updates an annotation on the index. If an annotation with the key specified in already exists it's 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. 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. The internal builder being used to configure the key. The key being configured. The model that the key belongs to. Adds or updates an annotation on the key. If an annotation with the key specified in already exists it's 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. 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. The internal builder being used to configure the property. The property being configured. The model that the property belongs to. Adds or updates an annotation on the property. If an annotation with the key specified in already exists it's 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 or not. Can only be set on properties. A value indicating whether the property can contain unicode characters or not. 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. 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 only when saving a new or existing entity, unless a non-null, non-temporary value has been set for a new entity, or the existing property value has been modified for an existing entity, in which case the set value will be saved instead. 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 witll change that behavior for this property as described in the enum. Calling this method overrrides 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 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. Adds or updates an annotation on the property. If an annotation with the key specified in already exists it's 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 or not. Can only be set on properties. A value indicating whether the property can contain unicode characters or not. 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. 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 only when saving a new or existing entity, unless a non-null, non-temporary value has been set for a new entity, or the existing property value has been modified for an existing entity, in which case the set value will be saved instead. 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 witll change that behavior for this property as described in the enum. Calling this method overrrides 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 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. The foreign key that represents this relationship. The model that this relationship belongs to. Gets the internal builder being used to configure this relationship. Adds or updates an annotation on the relationship. If an annotation with the key specified in already exists it's 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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 how a delete operation is 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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 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. A lambda expression representing the reference key property(s) (blog => blog.BlogId). If the principal key is made up of multiple properties then specify an anonymous type including the properties (post => new { post.BlogId, post.PostTitle }). 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 it's 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. 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 how a delete operation is 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. Gets the internal builder being used to configure the relationship. Configures this as a one-to-many relationship. The name of the collection 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. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. Configures this as a one-to-one 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. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. Configures this as a one-to-many relationship. 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-one relationship. 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. Configures this as a one-to-many relationship. The name of the collection 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-one 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. Provides a simple API for configuring a one-to-one relationship. If multiple reference key properties are specified, the order of reference key properties should match the order that the primary key or unique index properties were configured on the principal entity type. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. Gets the internal builder being used to configure this relationship. Gets the internal builder being used to configure this relationship. The foreign key that represents this relationship. The model that this relationship belongs to. Adds or updates an annotation on the relationship. If an annotation with the key specified in already exists it's 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 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 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. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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. 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. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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 how a delete operation is 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. If multiple reference key properties are specified, the order of reference key properties should match the order that the primary key or unique index properties were configured on the principal entity type. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. Adds or updates an annotation on the relationship. If an annotation with the key specified in already exists it's 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 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 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 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 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 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. 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 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 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 how a delete operation is 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 implementation for a set of conventions used to build a model. This base implementation is an empty set of conventions. 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 a property is ignored. Conventions to run when the base entity type is set or removed. 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 a key is added. Conventions to run when a key is removed. Conventions to run when a primary key is configured. Conventions to run when an index is added. Conventions to run when an index is added. Conventions to run when the uniqueness of an index is changed. Conventions to run when the principal end of a relationship is configured. Conventions to run when model building is completed. Conventions to run to setup the initial model. Conventions to run when a navigation property is added. Conventions to run when a navigation property is removed. Conventions to run when the uniqueness of a foreign key is changed. 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. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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 API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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. Initializes a new instance of the class. The model that queries will be written against. The context that queries will be executed for. 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. Information required to create an instance of an entity based on a row of data returned from a query. 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 struct. The row of data that represents this entity. The method to materialize the data into an entity instance. Gets the row of data that represents this entity. Populates Type Index Map field of the struct. Materializes the data into an entity instance. The entity instance. Creates a new ValueBuffer containing only the values needed for entities of a given type. The type of this entity. Updated value buffer. The core visitor that processes a query to be executed. This type is typically used by database providers (and other extensions). It is generally not used in application code. Expression to reference the parameter for a query. Determines if a is referencing the method. The method info to check. True if is referencing ; otherwise fale; Creates an expression to access the given property on an given entity. The entity. The property to be accessed. The newly created expression. Initializes a new instance of the class. The to be used when processing the query. The to be used when processing the query. The to be used when processing the query. The to be used when processing the query. The to be used when processing the query. The to be used when processing the query. The to be used when processing the query. The to be used when processing the query. The to be used when processing the query. The to be used when processing the query. The to be used when processing the query. The to be used when processing the query. The to be used when processing the query. The to be used when processing the query. The to be used when processing the query. Gets the expression that represents this query. Gets the expression for the current parameter. Gets the being used for this query. Gets the being used for this query. Creates an action to execute this query. The type of results that the query returns. The query. An action that returns the results of the query. Creates an action to asynchronously execute this query. The type of results that the query returns. The query. An action that asynchronously returns the results of the query. Executes the query and logs any exceptions that occur. Populates based on annotations found in the query. The query. Applies optimizations to the query. The query. Converts the results of the query from a single result to a series of results. The query. The type of results returned by the query. Includes related data requested in the LINQ query. The query. Includes related data requested in the LINQ query. The query. Related data to be included. Includes a specific navigation property requested in the LINQ query. The navigation property to be included. The type of results returned by the query. Expression for the navigation property to be included. A value indicating whether results of this query are to be tracked. Applies tracking behavior to the query. The type of results returned by the query. The query. Creates an action to execute this query. The type of results that the query returns. An action that returns the results of the query. > Visits the root node. The query. Visits the node. The node being visited. The query. Compiles the node. The node being compiled. The query. The compiled result. Visits nodes. The node being visited. The query. Index of the node being visited. Compiles nodes. The node being compiled. The query. The compiled result. Visits nodes. The node being visited. The query. Index of the node being visited. Compiles nodes. The node being compiled. The query. The compiled result. Visits nodes The node being visited. The query. Index of the node being visited. Compiles nodes. The node being compiled. The query. The compiled result. Visits nodes. The node being visited. The query. Index of the node being visited. Visits nodes. The node being visited. The query. The for the ordering. Index of the node being visited. Visits nodes. The node being visited. The query. Visits nodes. The node being visited. The query. Index of the node being visited. Translates a re-linq query model expression into a compiled query expression. The re-linq query model expression. The query source. True when the expression is a projector. A compiled query expression fragment. Adds or updates the expression mapped to a query source. The query source. The expression mapped to the query source. Binds a method call to a value buffer access. The method call expression. The target expression. A value buffer access expression. Binds a member access to a value buffer access. The member access expression. The target expression. A value buffer access expression. Binds a value buffer read. Type of the member. The target expression. A value buffer index. A value buffer read expression. Binds a navigation path property expression. Type of the result. The property expression. The property binder. A TResult. Binds a member expression. The member access expression. The member binder. Binds a member expression. Type of the result. The member access expression. The query source. The member binder. A TResult. Binds a method call expression. Type of the result. The method call expression. The query source. The method call binder. A TResult. Binds a method call expression. Type of the result. The method call expression. The method call binder. A TResult. Binds a method call expression. The method call expression. The method call binder. Creates instances of . This type is typically used by database providers (and other extensions). It is generally not used in application code. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. Gets the to be used when processing a query. Gets the to be used when processing a query. Gets the to be used when processing a query. Gets the to be used when processing a query. Gets the to be used when processing a query. Gets the to be used when processing a query. Gets the to be used when processing a query. Gets the to be used when processing a query. Gets the to be used when processing a query. Gets the to be used when processing a query. Gets the to be used when processing a query. Gets the to be used when processing a query. Gets the to be used when processing a query. Gets the to be used when processing a query. Creates a new . Compilation context for the query. The visitor for the outer query. The new created visitor. A cache key generator for the compiled query cache. 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. A factory for creating EntityQueryModelVisitors. Creates a new EntityQueryModelVisitor. Context for the query compilation. The parent entity query model visitor. An EntityQueryModelVisitor instance. Supports queryable Include/ThenInclude chaining operators. The entity type. The property type. Represents a single query include operation. Initializes a new instance of the Microsoft.EntityFrameworkCore.Query.IncludeSpecification class. The query source. The set of navigation properties to be included. Gets the query source. The query source. Gets the set of navigation properties to be included. The set of navigation properties to be included. Gets or sets a value indicating whether this object is an enumerable target. True if this object is an enumerable target, false if not. Convert this object into a string representation. A string that represents this object. Factory for instances. Creates a new QueryCompilationContext. true if the query will be executed asynchronously. A instance. Factory for instances. Creates a new QueryContext. A QueryContext instance. A handler for instances. Handles a result operator. The entity query model visitor. The result operator. The query model. A compiled query expression fragment representing the result operator. Signals that custom LINQ operator parameter should not be parameterized during query compilation. A query compilation context. The primary data structure representing the state/components used during query compilation. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. Gets the model. The model. Gets the logger. The logger. Gets the linq operator provider. The linq operator provider. Gets the type of the context./ The type of the context. Gets a value indicating the default configured tracking behavior. true if the default is to track query results, false if not. Gets the query source mapping. The query source mapping. Adds or updates the expression mapped to a query source. The query source. The expression mapped to the query source. Gets the query annotations./ The query annotations. Gets a value indicating whether this is a tracking query. true if this object is a tracking query, false if not. The query has at least one Include operation. Gets a value indicating whether this query requires a query buffer. true if this query requires a query buffer, false if not. Determine if the query requires a query buffer. The query model. Creates query model visitor. The new query model visitor. Creates query model visitor. The parent entity query model visitor. The new query model visitor. Adds a trackable include. The query source. The included navigation path. Gets all trackable includes for a given query source. The query source. The trackable includes. Determines all query sources that require materialization. The query model visitor. The query model. Determine whether or not a query source requires materialization. The query source. true if it requires materialization, false if not. The principal data structure used by a compiled query during execution. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. The query buffer. The state manager. The state manager. The query provider. The query provider. Gets the concurrency detector. The concurrency detector. Gets or sets the cancellation token. The cancellation token. The parameter values. Adds a parameter. The name. The value. Removes a parameter by name. The name. The parameter value. Notify the state manager that a tracking query is starting. Start tracking an entity. The entity. Information describing how to track the entity. A factory for instances. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. Creates a query buffer. The new query buffer. Gets the change detector. The change detector. Gets the state manager. The state manager. Gets the concurrency detector. The concurrency detector. Creates a new QueryContext. A QueryContext. The default client-eval result operator handler. Handles the result operator. The entity query model visitor. The result operator. The query model. An compiled query expression fragment representing the result operator. Call a client operator that may have a cancellation token. The method to call. A variable-length parameters list containing arguments. A method call expression. 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 actual caller for the access operation. Expression representing access operation. Expression representing potentially nullable caller that needs to be tested for it's nullability. Expression representing actual caller for the access operation. 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 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. 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 . Returns a textual representation of the . A textual representation of the . Visitor for processing entity types roots. Initializes a new instance of the class. The visitor for the query. Visits nodes. The node being visited. An expression to use in place of the node. Visits entity type roots. The entity type of the root. An expression to use in place of the node. A base expression visitor that ignores Block expressions. Visits the given node. The expression to visit. An Expression. Visits the children of the extension expression. The modified expression, if it or any subexpression was modified; otherwise, returns the original expression. The expression to visit. A factory for creating entity queryable expression visitors. Creates a new entity queryable ExpressionVisitor. The query model visitor. The query source. An ExpressionVisitor. A factory for creating projection expression visitors. Creates a new ExpressionVisitor. The entity query model visitor. The query source. An ExpressionVisitor. A projection expression visitor. Initializes a new instance of the Microsoft.EntityFrameworkCore.Query.ExpressionVisitors.ProjectionExpressionVisitor class. The entity query model visitor. Visit a subquery. The subquery expression. A compiled query expression fragment representing the input subquery expression. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. Represents an annotation on a query. Gets the query source. The query source. Gets the query model. The query model. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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. Initializes a new instance of the class. Factory for compilation contexts to process LINQ queries. 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. Translates a query model into a function that can be executed to get query results from the database. The type of results returned by the query. An object model representing the query to be executed. A function that will execute the query. Translates a query model into a function that can be executed to asynchronously get query results from the database. The type of results returned by the query. An object model representing the query to be executed. A function that will asynchronously execute the query. Provided as the state to when logging an exception that occurred while accessing the database. Initializes a new instance of the class. The type of the derived context that the error occurred for. Gets the type of the derived context that the error occurred for. 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 base set of services required by EF for the database provider to function. 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). Gets the base set of services required by EF for the database provider to function. The service provider to resolve services from. The services for this database provider. 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. The base set of services required by EF for a database provider to function. 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 service provider to resolve services from. The unique name used to identify the database provider. This should be the same as the NuGet package name for the providers runtime. Gets the service provider to resolve services from. Resolves a required service from . The service to be resolved. The resolved service. The convention set builder for the database provider. By default this returns null, meaning the default will be used. Gets the for the database provider. By default, EF will register a default implementation () which provides basic functionality but can be overridden if needed. Gets the for the database provider. By default, EF will register a default implementation () which provides basic functionality but can be overridden if needed. Gets the for the database provider. By default, EF will register a default implementation () which provides basic functionality but can be overridden if needed. Gets the for the database provider. By default, EF will register a default implementation () which provides basic functionality but can be overridden if needed. Gets the for the database provider. By default, EF will register a default implementation () which provides basic functionality but can be overridden if needed. Gets the for the database provider. By default, EF will register a default implementation () which provides basic functionality but can be overridden if needed. Gets the for the database provider. By default, EF will register a default implementation () which provides basic functionality but can be overridden if needed. Gets the for the database provider. Gets the for the database provider. Gets the for the database provider. Gets the for the database provider. Gets the for the database provider. Gets the for the database provider. Gets the for the database provider. Gets the for the database provider. Gets the for the database provider. 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 required dependencies. The maximum number of retry attempts. The maximum delay in milliseconds between retries. The list of exceptions that caused the operation to be retried so far. A pseudo-random number generater that can be used to vary the delay between retries. The maximum number of retry attempts. The maximum delay in milliseconds between retries. The context on which the operations will be invoked. The logger for this . 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. 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. Thrown if the operation has not succeeded after the configured number of retries. Executes the specified asynchronous operation and returns the result. 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 state that will be passed to the operation. 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. Thrown if the operation has not succeeded after the configured number of retries. Executes the specified operation in a transaction and returns the result after commiting it. 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 state that will be passed to the operation. The type of the state. The return type of . The result from the operation. Thrown if the operation has not succeeded after the configured number of retries. Executes the specified asynchronous operation and returns the result. 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 state that will be passed to the operation. 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. Thrown if 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 . A class that provides dependencies for Creates a new instance of . The context on which the operations will be invoked. The logger to be used. The context on which the operations will be invoked. The logger for the . 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. 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. Translates a query model into a function that can be executed to get query results from the database. The type of results returned by the query. An object model representing the query to be executed. A function that will execute the query. Translates a query model into a function that can be executed to asynchronously get query results from the database. The type of results returned by the query. An object model representing the query to be executed. A function that will asynchronously execute the query. 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. 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. Gets the base set of services required by EF for the database provider to function. The service provider to resolve services from. The services for this database provider. 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. The base set of services required by EF for a database provider to function. This type is typically used by database providers (and other extensions). It is generally not used in application code. The unique name used to identify the database provider. This should be the same as the NuGet package name for the providers runtime. Gets the for the database provider. Gets the for the database provider. Gets the for the database provider. Gets the for the database provider. Gets the for the database provider. Gets the for the database provider. Gets the for the database provider. Gets the for the database provider. Gets the for the database provider. Gets the for the database provider. Gets the for the database provider. Gets the for the database provider. Gets the for the database provider. Gets the for the database provider. Gets the for the database provider. Gets the for the database provider. Gets the for the database provider. 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. Commits all changes made to the database in the current transaction. Discards all changes made to the database in the current transaction. 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. 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. 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. Thrown if the operation has not succeeded after the configured number of retries. Executes the specified asynchronous operation and returns the result. 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 state that will be passed to the operation. 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. Thrown if the operation has not succeeded after the configured number of retries. Factory for instances. Creates a new . An instance of . The exception that is thrown when the action failed more times than the configured limit. 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. 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. Initializes a new instance of the class. The list of values for this buffer. The starting slot in 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. Creates a new buffer with data starting at the given index in the current buffer. The slot in the current buffer that will be the starting slot in the new buffer. The newly created 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. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. Creates a new . An instance of . This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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. The type of entity to be saved to the database. The state of the entity to be saved. 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. Gets the value assigned 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. 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. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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. 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. 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. 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. 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. 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 cache being used to store value generator instances. Initializes a new instance of the class. The cache to be used to store value generator instances. 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. 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. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. 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 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 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 same service collection so that multiple calls can be chained.