Partager via


FactoryMethodBinding Constructeurs

Définition

Surcharges

FactoryMethodBinding(MethodInfo, IReadOnlyList<ParameterBinding>, Type)

Crée une FactoryMethodBinding instance pour une méthode de fabrique statique.

FactoryMethodBinding(Object, MethodInfo, IReadOnlyList<ParameterBinding>, Type)

Crée une FactoryMethodBinding instance pour une méthode de fabrique non statique.

FactoryMethodBinding(MethodInfo, IReadOnlyList<ParameterBinding>, Type)

Crée une FactoryMethodBinding instance pour une méthode de fabrique statique.

public FactoryMethodBinding (System.Reflection.MethodInfo factoryMethod, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.ParameterBinding> parameterBindings, Type runtimeType);
new Microsoft.EntityFrameworkCore.Metadata.FactoryMethodBinding : System.Reflection.MethodInfo * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.ParameterBinding> * Type -> Microsoft.EntityFrameworkCore.Metadata.FactoryMethodBinding
Public Sub New (factoryMethod As MethodInfo, parameterBindings As IReadOnlyList(Of ParameterBinding), runtimeType As Type)

Paramètres

factoryMethod
MethodInfo

Méthode de fabrique à laquelle lier.

parameterBindings
IReadOnlyList<ParameterBinding>

Paramètres à utiliser.

runtimeType
Type

Le type CLR du instance créé par la méthode factory.

S’applique à

FactoryMethodBinding(Object, MethodInfo, IReadOnlyList<ParameterBinding>, Type)

Crée une FactoryMethodBinding instance pour une méthode de fabrique non statique.

public FactoryMethodBinding (object factoryInstance, System.Reflection.MethodInfo factoryMethod, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.ParameterBinding> parameterBindings, Type runtimeType);
new Microsoft.EntityFrameworkCore.Metadata.FactoryMethodBinding : obj * System.Reflection.MethodInfo * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.ParameterBinding> * Type -> Microsoft.EntityFrameworkCore.Metadata.FactoryMethodBinding
Public Sub New (factoryInstance As Object, factoryMethod As MethodInfo, parameterBindings As IReadOnlyList(Of ParameterBinding), runtimeType As Type)

Paramètres

factoryInstance
Object

Objet sur lequel la méthode de fabrique doit être appelée.

factoryMethod
MethodInfo

Méthode de fabrique à laquelle lier.

parameterBindings
IReadOnlyList<ParameterBinding>

Paramètres à utiliser.

runtimeType
Type

Le type CLR du instance créé par la méthode factory.

S’applique à