2 overrides of TableName
System.Data.Linq (2)
Mapping\AttributedMetaModel.cs (1)
333
public override string
TableName
{
Mapping\MappedMetaModel.cs (1)
366
public override string
TableName
{
6 references to TableName
System.Data.Linq (6)
SqlClient\Common\SqlNode.cs (1)
397
get { return this.table.
TableName
; }
SqlClient\SqlBuilder.cs (5)
39
List<string> parts = new List<string>(SqlIdentifier.GetCompoundIdentifierParts(table.
TableName
));
61
sb.AppendFormat("CREATE TABLE {0}", SqlIdentifier.QuoteCompoundIdentifier(table.
TableName
));
67
string name = String.Format(Globalization.CultureInfo.InvariantCulture, "PK_{0}", table.
TableName
);
154
string tableName = type.Table.
TableName
;
162
string otherTable = assoc.OtherType.Table.
TableName
;