AttributeCodeFragment 构造函数

定义

重载

AttributeCodeFragment(Type, Object[])

初始化 AttributeCodeFragment 类的新实例。

AttributeCodeFragment(Type, IEnumerable<Object>, IDictionary<String,Object>)

初始化 AttributeCodeFragment 类的新实例。

AttributeCodeFragment(Type, Object[])

初始化 AttributeCodeFragment 类的新实例。

public AttributeCodeFragment (Type type, params object[] arguments);
public AttributeCodeFragment (Type type, params object?[] arguments);
new Microsoft.EntityFrameworkCore.Design.AttributeCodeFragment : Type * obj[] -> Microsoft.EntityFrameworkCore.Design.AttributeCodeFragment
Public Sub New (type As Type, ParamArray arguments As Object())

参数

type
Type

特性的 CLR 类型。

arguments
Object[]

特性的参数。

适用于

AttributeCodeFragment(Type, IEnumerable<Object>, IDictionary<String,Object>)

初始化 AttributeCodeFragment 类的新实例。

public AttributeCodeFragment (Type type, System.Collections.Generic.IEnumerable<object?> arguments, System.Collections.Generic.IDictionary<string,object?> namedArguments);
new Microsoft.EntityFrameworkCore.Design.AttributeCodeFragment : Type * seq<obj> * System.Collections.Generic.IDictionary<string, obj> -> Microsoft.EntityFrameworkCore.Design.AttributeCodeFragment
Public Sub New (type As Type, arguments As IEnumerable(Of Object), namedArguments As IDictionary(Of String, Object))

参数

type
Type

特性的 CLR 类型。

arguments
IEnumerable<Object>

特性的位置参数。

namedArguments
IDictionary<String,Object>

特性的命名参数。

适用于