You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If table column name and entity model field have different case the BulkInsert failed
The bulkinsert is CaseSensitive for names of table column and entity model field
For expample if my table has the column "Name" and my model has the field "NAME" the insert failed with InvalidOperationException because the column mapping is invalid.
The text was updated successfully, but these errors were encountered:
My DB is case insensitive for column name in all queries. For me it would be convenient to have an option to be able to set this behavior regardless of whether it is formally correct.
For everything else congratulations because it works great.
If table column name and entity model field have different case the BulkInsert failed
The bulkinsert is CaseSensitive for names of table column and entity model field
For expample if my table has the column "Name" and my model has the field "NAME" the insert failed with InvalidOperationException because the column mapping is invalid.
The text was updated successfully, but these errors were encountered: