1 write to column
System.Data (1)
fx\src\data\System\Data\Filter\NameNode.cs (1)
45
this.
column
= table.Columns[name];
24 references to column
System.Data (24)
fx\src\data\System\Data\Filter\NameNode.cs (20)
35
return
column
.IsSqlType;
56
if (
column
== null)
59
name =
column
.ColumnName;
63
Debug.Assert(
column
!= null, "Failed to bind column " + name);
69
if (
column
== dataColumn) {
74
list.Add(
column
);
90
return
column
.DataExpression.Evaluate();
96
return
column
[row.GetRecordFromVersion(version)];
108
if (
column
!= null &&
column
.Computed) {
109
return this.
column
.DataExpression.IsTableAggregate();
115
if (
column
!= null &&
column
.Computed) {
116
return this.
column
.DataExpression.HasLocalAggregate();
122
if (
column
!= null &&
column
.Computed) {
123
return this.
column
.DataExpression.HasRemoteAggregate();
129
if (this.
column
== column)
132
if (this.
column
.Computed) {
133
return this.
column
.DataExpression.DependsOn(column);
fx\src\data\System\Data\Select.cs (4)
123
ColumnInfo canColumn = (ColumnInfo)candidateColumns[((NameNode)(expr.left)).
column
.Ordinal];
143
ColumnInfo canColumn = (ColumnInfo)candidateColumns[((NameNode)(expr.left)).
column
.Ordinal];
580
((isLConst && !isRConst && (leftType == StorageType.String) && (rightType == StorageType.Guid) && (null != (namedNode = expr.right as NameNode)) && (namedNode.
column
.DataType == typeof(Guid))) ||
581
(isRConst && !isLConst && (rightType == StorageType.String) && (leftType == StorageType.Guid) && (null != (namedNode = expr.left as NameNode)) && (namedNode.
column
.DataType == typeof(Guid))))