Share via


AdHocMapperDependencies Class

Definition

Service dependencies parameter class for AdHocMapper

This type is typically used by database providers (and other extensions). It is generally not used in application code.

public sealed class AdHocMapperDependencies : IEquatable<Microsoft.EntityFrameworkCore.Metadata.AdHocMapperDependencies>
type AdHocMapperDependencies = class
    interface IEquatable<AdHocMapperDependencies>
Public NotInheritable Class AdHocMapperDependencies
Implements IEquatable(Of AdHocMapperDependencies)
Inheritance
AdHocMapperDependencies
Implements

Remarks

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

The service lifetime is Scoped. This means that each DbContext instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe.

Constructors

AdHocMapperDependencies(IModel, ModelCreationDependencies)

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

Properties

Model

The model source.

ModelCreationDependencies

The convention set to use when creating the model.

Methods

<Clone>$()
Equals(AdHocMapperDependencies)
Equals(Object)
GetHashCode()
ToString()

Operators

Equality(AdHocMapperDependencies, AdHocMapperDependencies)
Inequality(AdHocMapperDependencies, AdHocMapperDependencies)

Applies to