I'm using dapper with dynamic return model objects and I'd like to configure it to 'skip' fields which are null....For instance instead of :...[0]: {DapperRow, Type = 'PHYS', Street1 = NULL, Street2 = NULL, State = CO}
...I'd like Dapper to return...[0]: ...
I have a SQL stored procedure returning a very large complex JSON string as its result through the use of ...FOR JSON PATH... and a set of ...JSON_QUERY..., and am attempting to convert this String to an object using ...JsonConvert.DeserializeObject<MyObj...