Skip to content

Commit 990b376

Browse files
authored
Merge pull request #149 from HasnainAabdani/main
Added DataType in SQL Column Mapping
2 parents cca2514 + 481e217 commit 990b376

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

Extensions/SqlServer/Cosmos.DataTransfer.SqlServerExtension/ColumnMapping.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ public class ColumnMapping
88
public string? ColumnName { get; set; }
99
public string? SourceFieldName { get; set; }
1010
public bool AllowNull { get; set; } = true;
11-
public object? DefaultValue { get; set; }
11+
public object? DefaultValue { get; set; }
12+
public string? DataType { get; set; } = "System.String";
1213

1314
public string? GetFieldName()
1415
{

Extensions/SqlServer/Cosmos.DataTransfer.SqlServerExtension/SqlServerDataSinkExtension.cs

+4-2
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,13 @@ public async Task WriteAsync(IAsyncEnumerable<IDataItem> dataItems, IConfigurati
3131
var dataColumns = new Dictionary<ColumnMapping, DataColumn>();
3232
foreach (ColumnMapping columnMapping in settings.ColumnMappings)
3333
{
34-
DataColumn dbColumn = new DataColumn(columnMapping.ColumnName);
34+
Type type = Type.GetType(columnMapping.DataType ?? "System.String")!;
35+
DataColumn dbColumn = new DataColumn(columnMapping.ColumnName, type);
3536
dataColumns.Add(columnMapping, dbColumn);
3637
bulkCopy.ColumnMappings.Add(new SqlBulkCopyColumnMapping(dbColumn.ColumnName, dbColumn.ColumnName));
3738
}
3839

40+
3941
var dataTable = new DataTable();
4042
dataTable.Columns.AddRange(dataColumns.Values.ToArray());
4143

@@ -60,7 +62,7 @@ public async Task WriteAsync(IAsyncEnumerable<IDataItem> dataItems, IConfigurati
6062
{
6163
value = item.GetValue(sourceField);
6264
}
63-
65+
6466
if (value != null || mapping.AllowNull)
6567
{
6668
if (value is IDataItem child)

Extensions/SqlServer/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ Sink settings require a `TableName` to define where to insert data and an array
2323
- `SourceFieldName`: This should be set in cases where the source data uses a different name than the SQL column. Column name to source field mapping defaults to using the `ColumnName` for both sides and is case-insensitive so it is not necessary to specify this parameter for mappings like `"id"` -> `"Id"`.
2424
- `AllowNull`: Depending on the table schema you may need to force values to be set for columns when no value is present in the source. If this is set to `false` this column will use the `DefaultValue` for any records missing a source value. Defaults to `true`.
2525
- `DefaultValue`: Value to be used in place of missing or null source fields. This parameter is ignored unless `AllowNull` is set to `false` for this column.
26+
- `DataType`: This setting specify the DataType of the column, default will be String: please refer documentation. https://learn.microsoft.com/sql/relational-databases/clr-integration-database-objects-types-net-framework/mapping-clr-parameter-data?view=sql-server-ver16&redirectedfrom=MSDN&tabs=csharp
2627

28+
-
2729
Sink settings also include an optional `BatchSize` parameter to specify the count of records to accumulate before bulk inserting, default value is 1000.
2830

2931
### Sink
@@ -50,6 +52,7 @@ Sink settings also include an optional `BatchSize` parameter to specify the coun
5052
"ColumnName": "IsSet",
5153
"AllowNull": false,
5254
"DefaultValue": false
55+
"DataType": "System.Boolean"
5356
}
5457
],
5558
"BatchSize": 1000

0 commit comments

Comments
 (0)