-
Notifications
You must be signed in to change notification settings - Fork 0
UtilityExtensions.GetDelimitedIdentifier
| Overloads | |
|---|---|
| GetDelimitedIdentifier(this DatabaseFacade, string) | Generates the delimited SQL representation of an identifier (column name, table name, etc.). |
| GetDelimitedIdentifier(this DatabaseFacade, string, string) | Generates the delimited SQL representation of an identifier (column name, table name, etc.). |
| GetDelimitedIdentifier(this DatabaseFacade, StringBuilder, string) | Appends the delimited SQL representation of an identifier (column name, table name, etc.). |
| GetDelimitedIdentifier(this DatabaseFacade, StringBuilder, string, string) | Appends the delimited SQL representation of an identifier (column name, table name, etc.). |
Generates the delimited SQL representation of an identifier (column name, table name, etc.).
public static string GetDelimitedIdentifier(this Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade database, string name);database Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade
The database facade.
name System.String
The identifier to delimit.
System.String
The generated string.
Generates the delimited SQL representation of an identifier (column name, table name, etc.).
public static string GetDelimitedIdentifier(this Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade database, string name, string? schema);database Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade
The database facade.
name System.String
The identifier to delimit.
schema System.String
The schema of the identifier.
System.String
The generated string.
Appends the delimited SQL representation of an identifier (column name, table name, etc.).
public static void GetDelimitedIdentifier(this Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade database, System.Text.StringBuilder builder, string name);database Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade
The database facade.
builder System.Text.StringBuilder
The System.Text.StringBuilder to append the generated string to.
name System.String
The identifier to delimit.
Appends the delimited SQL representation of an identifier (column name, table name, etc.).
public static void GetDelimitedIdentifier(this Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade database, System.Text.StringBuilder builder, string name, string? schema);database Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade
The database facade.
builder System.Text.StringBuilder
The System.Text.StringBuilder to append the generated string to.
name System.String
The identifier to delimit.
schema System.String
The schema of the identifier.