My scenario:...
I have a class called Person that I save to the DB using Dapper.
On Person, I have a Dictionary of Values that I serialize to a string and store that as varchar(MAX)....public class Person
{
public string Name {get; set;}
public in...