ORM
- 2018-01-22
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 …
read more