ISqlGenerationHelper.DelimitIdentifier Method

Definition

Overloads

DelimitIdentifier(String)

Generates the delimited SQL representation of an identifier (column name, table name, etc.).

DelimitIdentifier(String, String)

Generates the delimited SQL representation of an identifier (column name, table name, etc.).

DelimitIdentifier(StringBuilder, String)

Writes the delimited SQL representation of an identifier (column name, table name, etc.).

DelimitIdentifier(StringBuilder, String, String)

Writes the delimited SQL representation of an identifier (column name, table name, etc.).

DelimitIdentifier(String)

Source:
ISqlGenerationHelper.cs
Source:
ISqlGenerationHelper.cs
Source:
ISqlGenerationHelper.cs

Generates the delimited SQL representation of an identifier (column name, table name, etc.).

C#
public string DelimitIdentifier (string identifier);

Parameters

identifier
String

The identifier to delimit.

Returns

The generated string.

Applies to

Entity Framework Core 9.0 and other versions
Product Versions
Entity Framework Core 1.0, 1.1, 2.0, 2.1, 2.2, 3.0, 3.1, 5.0, 6.0, 7.0, 8.0, 9.0

DelimitIdentifier(String, String)

Source:
ISqlGenerationHelper.cs
Source:
ISqlGenerationHelper.cs
Source:
ISqlGenerationHelper.cs

Generates the delimited SQL representation of an identifier (column name, table name, etc.).

C#
public string DelimitIdentifier (string name, string schema);
C#
public string DelimitIdentifier (string name, string? schema);

Parameters

name
String

The identifier to delimit.

schema
String

The schema of the identifier.

Returns

The generated string.

Applies to

Entity Framework Core 9.0 and other versions
Product Versions
Entity Framework Core 1.0, 1.1, 2.0, 2.1, 2.2, 3.0, 3.1, 5.0, 6.0, 7.0, 8.0, 9.0

DelimitIdentifier(StringBuilder, String)

Source:
ISqlGenerationHelper.cs
Source:
ISqlGenerationHelper.cs
Source:
ISqlGenerationHelper.cs

Writes the delimited SQL representation of an identifier (column name, table name, etc.).

C#
public void DelimitIdentifier (System.Text.StringBuilder builder, string identifier);

Parameters

builder
StringBuilder

The StringBuilder to write generated string to.

identifier
String

The identifier to delimit.

Applies to

Entity Framework Core 9.0 and other versions
Product Versions
Entity Framework Core 1.0, 1.1, 2.0, 2.1, 2.2, 3.0, 3.1, 5.0, 6.0, 7.0, 8.0, 9.0

DelimitIdentifier(StringBuilder, String, String)

Source:
ISqlGenerationHelper.cs
Source:
ISqlGenerationHelper.cs
Source:
ISqlGenerationHelper.cs

Writes the delimited SQL representation of an identifier (column name, table name, etc.).

C#
public void DelimitIdentifier (System.Text.StringBuilder builder, string name, string schema);
C#
public void DelimitIdentifier (System.Text.StringBuilder builder, string name, string? schema);

Parameters

builder
StringBuilder

The StringBuilder to write generated string to.

name
String

The identifier to delimit.

schema
String

The schema of the identifier.

Applies to

Entity Framework Core 9.0 and other versions
Product Versions
Entity Framework Core 1.0, 1.1, 2.0, 2.1, 2.2, 3.0, 3.1, 5.0, 6.0, 7.0, 8.0, 9.0