Dapper.Bulk icon indicating copy to clipboard operation
Dapper.Bulk copied to clipboard

Dapper.Bulk SqlServer

Results 14 Dapper.Bulk issues
Sort by recently updated
recently updated
newest added

I need to specify the table name of the insert. Table Attributes are not really viable for the project.

The current version uses System.Data.Client, rather than Microsoft.Data.SqlClient, this means that the newer AD functionality can't be used alongside this library: https://docs.microsoft.com/en-us/azure/azure-sql/database/authentication-aad-overview]] I've pulled the code and replaced System.Data.Client with...

I've glanced at the code of this library, and seen that it uses reflection to find the objects' fields. Suppose I would implement a bulk inserter that's hardcoded for a...

Fix bug where using a custom column name on the key column uses the wrong column name, update column name unit test to check.

`Dapper.Bulk` expects schema name to be in `TableAttribute.Name` property such as `[Table(".")]` But completely ignores `TableAttribute.Schema` property And I also use `Dapper.SimpleCRUD` which uses `TableAttribute.Schema` property and doesn't work if...

The current escaping setup is designed to work with table name formats such as "scheme.table_name" and it will try to automatically escape table names on "." separator. When working with...

We got error while try to bulk insert. Cannot insert the value NULL into column 'Id' without autoincrement id when trying to give a value to id(explicitkey) it gives a...

Get the default command timeout for the command execution from the connection which is used to do the SqlBulk action.

Support Schema attribute. Corrected for Issue #23