문제

I have an entity with an aggregated value object, like this:

public class Address {
    public string Town { get; set; }
    public string Street { get; set; }
    public string Region { get; set; }
    ...
}

public class Contact {
    public Int32 Id { get; set; }
    public string Name { get; set; }
    public Address Address { get; set; }
}

My persistence model is a single table with the following fields: Id, Name, Street, Town, Region, ecc. Is it possible to Create/Read/Update/Delete entities in this situation with Dapper?

도움이 되었습니까?

해결책

You can use the multi mapping feature. Here there are some examples:

Correct use of Multimapping in Dapper

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top