13 references to DataColumn
System.Data.Common (13)
System\Data\DataColumn.cs (4)
83
public DataColumn() :
this
(null, typeof(string), null, MappingType.Element)
93
public DataColumn(string? columnName) :
this
(columnName, typeof(string), null, MappingType.Element)
103
public DataColumn(string? columnName, [DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicProperties | DynamicallyAccessedMemberTypes.PublicFields)] Type dataType) :
this
(columnName, dataType, null, MappingType.Element)
113
public DataColumn(string? columnName, [DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicProperties | DynamicallyAccessedMemberTypes.PublicFields)] Type dataType, string? expr) :
this
(columnName, dataType, expr, MappingType.Element)
System\Data\DataTable.cs (2)
4848
DataColumn key = new
DataColumn
(keyName, typeof(int), null, MappingType.Hidden);
4886
DataColumn foreignKey = new
DataColumn
(keyName, parentKey.DataType, null, MappingType.Hidden);
System\Data\XDRSchema.cs (1)
453
column = new
DataColumn
(XmlConvert.DecodeName(instanceName), type, null,
System\Data\XMLSchema.cs (6)
2020
column = new
DataColumn
(columnName, type, null, MappingType.SimpleContent);
2134
column = new
DataColumn
(columnName, type, null, MappingType.SimpleContent);
2277
column = new
DataColumn
(columnName, type, null, MappingType.Attribute); // this is to fix issue with Exception we used to throw for old inference engine if column
2284
column = new
DataColumn
(columnName, type, null, MappingType.Attribute);
2463
column = new
DataColumn
(columnName, type, null, MappingType.Element); // this is to fix issue with Exception we used to throw for old inference engine if column
2470
column = new
DataColumn
(columnName, type, null, MappingType.Element);