System.Data.Entity.SqlServer.SqlServerMigrationSqlGenerator.Quote C# (CSharp) Method

Quote() protected method

Quotes an identifier for SQL Server.
protected Quote ( string identifier ) : string
identifier string The identifier to be quoted.
return string
        protected virtual string Quote(string identifier)
        {
            Check.NotEmpty(identifier, "identifier");

            return SqlGenerator.QuoteIdentifier(identifier);
        }