TortugaResearch / Tortuga.Chain

A fluent ORM for .NET
Other
335 stars 22 forks source link

SQL Server Bulk Insert with Dictionary<string, object> is failing silently #509

Closed Grauenwolf closed 4 months ago

Grauenwolf commented 4 months ago

There are no error messages, data just simply doesn't upload.

Grauenwolf commented 4 months ago

A dictionary doesn't have any properties, so it can't be mapped via an ObjectDataReader. We need to create a new DictionaryDataReader that does the same job.

Grauenwolf commented 4 months ago

Done.