6 writes to Name
System.Data.Linq (6)
SqlClient\Common\SqlNode.cs (1)
1482this.Name = name;
SqlClient\Query\SqlDeflator.cs (1)
451cref.Column.Name = c.Name;
SqlClient\Query\SqlNamer.cs (4)
50ss.Select.Row.Columns[0].Name = ""; 88c.Name = null; 104c.Name = name; 169cref.Column.Name = this.lastName;
26 references to Name
System.Data.Linq (26)
SqlClient\Common\SqlNode.cs (3)
414if (c.Name == columnName) 1591if (name == c.Name) 2196if (c.Name == name)
SqlClient\Query\SqlDeflator.cs (2)
450if (!string.IsNullOrEmpty(c.Name)) { 451cref.Column.Name = c.Name;
SqlClient\Query\SqlDuplicator.cs (1)
144SqlColumn n = new SqlColumn(col.ClrType, col.SqlType, col.Name, col.MetaMember, null, col.SourceExpression);
SqlClient\Query\SqlFormatter.cs (9)
328sb.Append(c.Name); 407string name = c.Name; 680string name = c.Name; 990this.WriteName(si.OutputKey.Name); 1010this.WriteName(si.Row.Columns[i].Name); 1044sb.Append(si.OutputKey.Name); 1049this.WriteName(si.OutputKey.Name); 1220return ((SqlColumn)exp).Name; 1222return ((SqlColumnRef)exp).Column.Name;
SqlClient\Query\SqlNamer.cs (8)
83string name = c.Name; 114if (sc != c && string.Compare(sc.Name, name, StringComparison.OrdinalIgnoreCase) == 0) 137return String.IsNullOrEmpty(name) || string.Compare(name, colRef.Column.Name, StringComparison.OrdinalIgnoreCase) == 0; 168if (cref.Column.Name == null && this.lastName != null) { 237if (cref.Column.Name != null) return cref.Column.Name; 256if (!String.IsNullOrEmpty(col.Name)) { 257this.Names.Add(col.Name);
SqlClient\Query\SqlResolver.cs (2)
23return c.Name; 285this.ForceLocal(select.Row, this.found.Name);
SqlClient\Reader\ObjectReaderCompiler.cs (1)
238SqlColumn newcol = new SqlColumn(col.ClrType, col.SqlType, col.Name, col.MetaMember, null, col.SourceExpression);