19 references to SqlIdentifier
System.Data.Linq (19)
SqlClient\Query\SqlFormatter.cs (3)
422sb.Append(SqlIdentifier.QuoteCompoundIdentifier(s)); 427sb.Append(SqlIdentifier.QuoteCompoundIdentifier(s)); 429sb.Append(SqlIdentifier.QuoteCompoundIdentifier("@" + s));
SqlClient\Reader\ObjectReaderCompiler.cs (2)
2606lookup[SqlIdentifier.QuoteCompoundIdentifier(reader.GetName(i))] = i; 2610if (lookup.TryGetValue(SqlIdentifier.QuoteCompoundIdentifier(namedColumns[i].Name), out ordinal)) {
SqlClient\SqlBuilder.cs (14)
23sb.AppendFormat("CREATE DATABASE {0}", SqlIdentifier.QuoteIdentifier(catalog)); 33sb.AppendFormat("DROP DATABASE {0}", SqlIdentifier.QuoteIdentifier(catalog)); 39List<string> parts = new List<string>(SqlIdentifier.GetCompoundIdentifierParts(table.TableName)); 52sb.AppendFormat("CREATE SCHEMA {0}", SqlIdentifier.QuoteIdentifier(schema)); 61sb.AppendFormat("CREATE TABLE {0}", SqlIdentifier.QuoteCompoundIdentifier(table.TableName)); 70sb.AppendFormat(" CONSTRAINT {0} PRIMARY KEY ({1})", SqlIdentifier.QuoteIdentifier(name), decl.ToString()); 109sb.Append(string.Format(Globalization.CultureInfo.InvariantCulture, " {0} ", SqlIdentifier.QuoteCompoundIdentifier(mm.MappedName))); 130sb.Append(SqlIdentifier.QuoteCompoundIdentifier(mm.MappedName)); 140sb.Append(SqlIdentifier.QuoteCompoundIdentifier(mm.MappedName)); 179SqlIdentifier.QuoteCompoundIdentifier(tableName), 180SqlIdentifier.QuoteIdentifier(name), 181SqlIdentifier.QuoteCompoundIdentifier(thisKey), 182SqlIdentifier.QuoteCompoundIdentifier(otherTable), 183SqlIdentifier.QuoteCompoundIdentifier(otherKey));