Skip to content

UtilityExtensions.GetDelimitedIdentifier

Mike King edited this page Sep 8, 2026 · 1 revision

UtilityExtensions.GetDelimitedIdentifier Method

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.).

UtilityExtensions.GetDelimitedIdentifier(this DatabaseFacade, string) Method

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);

Parameters

database Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade

The database facade.

name System.String

The identifier to delimit.

Returns

System.String
The generated string.

UtilityExtensions.GetDelimitedIdentifier(this DatabaseFacade, string, string) Method

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);

Parameters

database Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade

The database facade.

name System.String

The identifier to delimit.

schema System.String

The schema of the identifier.

Returns

System.String
The generated string.

UtilityExtensions.GetDelimitedIdentifier(this DatabaseFacade, StringBuilder, string) Method

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);

Parameters

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.

UtilityExtensions.GetDelimitedIdentifier(this DatabaseFacade, StringBuilder, string, string) Method

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);

Parameters

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.

Clone this wiki locally