Recently I was working with Dapper.Net and it is awesome so far for dynamic object manipulations with sql, Great work by Dapper team.
But there is a need to have bulk insert and update and i used table valued parameter which is better in terms of performance and i decided to use dapper.tvp for that purpose. so i followed following steps
Added Dapper.Tvp assembly using nuget command Install-Package Dapper.Tvp
Then when i try to build the project it gives me the following error "Referenced Assembly Dapper Does Not have a Strong Name"
Please Advice me o this issue and appreciate your help
Indeed, dapper does not have a strong name. Many of my reasons for this are set out here. You can of course build dapper locally (or as part of your project) and sign it any way you like. Note also that dapper now includes table value parameter support, so it could be that you simply don't need dapper.tvp.