I am using Dapper Extensions but I have multiple schema names in My DB.
I found the an answer in below link but it assumes that I have only one schema name and this is not my case. Dapper Extensions Change Schema
What is the right way to change the schema name at the runtime?
Probably you won't use it anymore, but maybe there are more guys up there trying to figure it out.
I've been checking out how dapper works when running
GetAll<>
andInsert<>
.What it does:
So I've checked what
GetTableName
was doing:Solution:
So I thought I can implement my own table name mapper with code like this:
And
With that name mapper you just need to mark your table with that.
you can implement your name mapper to use [TableName] attribute also. Because my simple implementation hides this feature.
Enjoy :)