Caltor

Results 2 comments of Caltor

@Adondriel In my experience it doesn't matter what the key type is because even an Explicit Key of type ```int``` will still always return 0 on ```Insert```.

Here is a failing test for you. ``` using System; using System.Data.SqlClient; using Dapper; using Dapper.Contrib.Extensions; using System.Diagnostics; namespace TestConsoleApplication { class WithSystemKey { [Key] // not really needed as...