18 references to QuoteCompoundIdentifier
System.Data.Linq (18)
SqlClient\Query\SqlFormatter.cs (3)
422
sb.Append(SqlIdentifier.
QuoteCompoundIdentifier
(s));
427
sb.Append(SqlIdentifier.
QuoteCompoundIdentifier
(s));
429
sb.Append(SqlIdentifier.
QuoteCompoundIdentifier
("@" + s));
SqlClient\Query\SqlIdentifier.cs (5)
65
return String.Concat(
QuoteCompoundIdentifier
(left), SchemaSeparatorChar + right);
78
return String.Concat(left + SchemaSeparatorChar,
QuoteCompoundIdentifier
(right));
88
return String.Concat(
QuoteCompoundIdentifier
(left) + SchemaSeparatorChar,
QuoteCompoundIdentifier
(right));
120
string quotedS =
QuoteCompoundIdentifier
(s);
SqlClient\Reader\ObjectReaderCompiler.cs (2)
2606
lookup[SqlIdentifier.
QuoteCompoundIdentifier
(reader.GetName(i))] = i;
2610
if (lookup.TryGetValue(SqlIdentifier.
QuoteCompoundIdentifier
(namedColumns[i].Name), out ordinal)) {
SqlClient\SqlBuilder.cs (8)
61
sb.AppendFormat("CREATE TABLE {0}", SqlIdentifier.
QuoteCompoundIdentifier
(table.TableName));
109
sb.Append(string.Format(Globalization.CultureInfo.InvariantCulture, " {0} ", SqlIdentifier.
QuoteCompoundIdentifier
(mm.MappedName)));
130
sb.Append(SqlIdentifier.
QuoteCompoundIdentifier
(mm.MappedName));
140
sb.Append(SqlIdentifier.
QuoteCompoundIdentifier
(mm.MappedName));
179
SqlIdentifier.
QuoteCompoundIdentifier
(tableName),
181
SqlIdentifier.
QuoteCompoundIdentifier
(thisKey),
182
SqlIdentifier.
QuoteCompoundIdentifier
(otherTable),
183
SqlIdentifier.
QuoteCompoundIdentifier
(otherKey));