Dapper Contrib

    1. public class InvoiceContrib
    2. {
    3. [Key]
    4. public int InvoiceID { get; set; }
    5. public string Code { get; set; }
    6. [Write(false)]
    7. [Computed]
    8. public string FakeProperty { get; set; }
    9. }
    10. public class InvoiceDetailContrib
    11. {
    12. [ExplicitKey]
    13. public int InvoiceID { get; set; }