次のように、集計された値オブジェクトを持つエンティティがあります。
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; }
}
私の永続化モデルは、次のフィールドを持つ単一のテーブルです: Id, Name, Street, Town, Region
, ecc. この状況で Dapper を使用してエンティティを作成/読み取り/更新/削除することは可能ですか?