ServiceParameterBinding Constructors

Definition

Overloads

ServiceParameterBinding(Type, Type, IPropertyBase)

Creates a new ServiceParameterBinding instance for the given service type or metadata type.

ServiceParameterBinding(Type, Type, IPropertyBase[])

Creates a new ServiceParameterBinding instance for the given service type or metadata type.

ServiceParameterBinding(Type, Type, IPropertyBase)

Creates a new ServiceParameterBinding instance for the given service type or metadata type.

protected ServiceParameterBinding (Type parameterType, Type serviceType, Microsoft.EntityFrameworkCore.Metadata.IPropertyBase serviceProperty = default);
new Microsoft.EntityFrameworkCore.Metadata.ServiceParameterBinding : Type * Type * Microsoft.EntityFrameworkCore.Metadata.IPropertyBase -> Microsoft.EntityFrameworkCore.Metadata.ServiceParameterBinding
Protected Sub New (parameterType As Type, serviceType As Type, Optional serviceProperty As IPropertyBase = Nothing)

Parameters

parameterType
Type

The parameter CLR type.

serviceType
Type

The service or metadata CLR type.

serviceProperty
IPropertyBase

The associated IServiceProperty, or null.

Applies to

ServiceParameterBinding(Type, Type, IPropertyBase[])

Creates a new ServiceParameterBinding instance for the given service type or metadata type.

protected ServiceParameterBinding (Type parameterType, Type serviceType, params Microsoft.EntityFrameworkCore.Metadata.IPropertyBase[]? serviceProperties);
new Microsoft.EntityFrameworkCore.Metadata.ServiceParameterBinding : Type * Type * Microsoft.EntityFrameworkCore.Metadata.IPropertyBase[] -> Microsoft.EntityFrameworkCore.Metadata.ServiceParameterBinding
Protected Sub New (parameterType As Type, serviceType As Type, ParamArray serviceProperties As IPropertyBase())

Parameters

parameterType
Type

The parameter CLR type.

serviceType
Type

The service or metadata CLR type.

serviceProperties
IPropertyBase[]

The associated IServiceProperty instances, or null.

Applies to