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