DbFunctionAttribute Constructors

Definition

Overloads

DbFunctionAttribute()

Initializes a new instance of the DbFunctionAttribute class.

DbFunctionAttribute(String, String)

Initializes a new instance of the DbFunctionAttribute class.

DbFunctionAttribute()

Initializes a new instance of the DbFunctionAttribute class.

public DbFunctionAttribute ();
Public Sub New ()

Applies to

DbFunctionAttribute(String, String)

Initializes a new instance of the DbFunctionAttribute class.

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)

Parameters

functionNamename
String

The name of the function in the database.

schema
String

The schema of the function in the database.

Applies to