I know I can use the pure dapper to build my update string with only the properties I want to update (whitelist).
What I want is to keep the ORM style of dapper extensions:
con.Update<Person>(person);
I want that some properties of person are not updated (blacklist)
How can I exlude properties from being updated running the .Update extension method?
Do you maybe know of a better .Update extension in the dapper style? (Then I dont have to
write it ;-)