How can I ignore a property on my model using dapper/dapper extensions/dapper rainbow or any
of those dapper libraries?
How can I ignore a property on my model using dapper/dapper extensions/dapper rainbow or any
of those dapper libraries?
For those not wanting to include DapperExtensions, DatabaseGenerated
from the standard System.ComponentModel.DataAnnotations.Schema
can be used also.
[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
You can design a base class without the computed property and use that for your inserts.
class BasePerson
{
public String Name {get;set;}
}
class Person: BasePerson
{
public String ComputedProperty {get;set;}
}
Insert<BasePerson>(person);
Dapper.Contrib has built-in support for marking a column as computed: add ComputedAttribute to allow support for computed columns on Insert. Here's how it works:
class MyModel
{
public string Property1 { get; set; }
[Computed]
public int ComputedProperty { get; set; }
}
Properties marked with the Computed
attribute will be ignored on inserts.
In my case I used Dapper.Contrib
.
Using [Write(false)]
attribute on any property should solve the problem.
Some also suggest using [Computed]
attribute.
public class Person
{
[Key]
public int Id { get; set; }
public string Name { get; set; }
public int Age { get; set; }
[Write(false)]
public IEnumerable<Email> Emails { get; }
}
Dapper creator Sam Saffron has addressed this requirement in response to another SO user's questions here. Check it out.
Also, if you want to use the Dapper Extensions library that Sam has mentioned in his answer, you can get it from Github or via Nuget.
Here's an example of ignoring properties from the Library's Test Project.