Dapper Contrib
public class InvoiceContrib
{
[Key]
public int InvoiceID { get; set; }
public string Code { get; set; }
[Write(false)]
[Computed]
public string FakeProperty { get; set; }
}
public class InvoiceDetailContrib
{
[ExplicitKey]
public int InvoiceID { get; set; }