DbFunctionAttribute 构造函数

定义

重载

DbFunctionAttribute()

初始化 DbFunctionAttribute 类的新实例。

DbFunctionAttribute(String, String)

初始化 DbFunctionAttribute 类的新实例。

DbFunctionAttribute()

初始化 DbFunctionAttribute 类的新实例。

public DbFunctionAttribute ();
Public Sub New ()

适用于

DbFunctionAttribute(String, String)

初始化 DbFunctionAttribute 类的新实例。

public DbFunctionAttribute (string functionName, string schema = default);
public DbFunctionAttribute (string name, string schema = default);
public DbFunctionAttribute (string name, string? schema = default);
new Microsoft.EntityFrameworkCore.DbFunctionAttribute : string * string -> Microsoft.EntityFrameworkCore.DbFunctionAttribute
new Microsoft.EntityFrameworkCore.DbFunctionAttribute : string * string -> Microsoft.EntityFrameworkCore.DbFunctionAttribute
Public Sub New (functionName As String, Optional schema As String = Nothing)
Public Sub New (name As String, Optional schema As String = Nothing)

参数

functionNamename
String

数据库中函数的名称。

schema
String

数据库中函数的架构。

适用于