18 references to QuoteCompoundIdentifier
System.Data.Linq (18)
SqlClient\Query\SqlFormatter.cs (3)
422sb.Append(SqlIdentifier.QuoteCompoundIdentifier(s)); 427sb.Append(SqlIdentifier.QuoteCompoundIdentifier(s)); 429sb.Append(SqlIdentifier.QuoteCompoundIdentifier("@" + s));
SqlClient\Query\SqlIdentifier.cs (5)
65return String.Concat(QuoteCompoundIdentifier(left), SchemaSeparatorChar + right); 78return String.Concat(left + SchemaSeparatorChar, QuoteCompoundIdentifier(right)); 88return String.Concat(QuoteCompoundIdentifier(left) + SchemaSeparatorChar, QuoteCompoundIdentifier(right)); 120string quotedS = 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 (8)
61sb.AppendFormat("CREATE TABLE {0}", SqlIdentifier.QuoteCompoundIdentifier(table.TableName)); 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), 181SqlIdentifier.QuoteCompoundIdentifier(thisKey), 182SqlIdentifier.QuoteCompoundIdentifier(otherTable), 183SqlIdentifier.QuoteCompoundIdentifier(otherKey));