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