Tag “JSON”

image from Dapper - JSON type custom mapper

Dapper - JSON type custom mapper

Let’s assume that we have such read model: public class ProductReadModel { public int Id { get; private set; } public string Name { get; private set; } public int CategoryId { get; private set; } public Category Category { get; private set; } …

read more ➞