Details
Assignee
UnassignedUnassignedReporter
Yufan LouYufan LouComponents
Affects versions
Priority
TrivialWho's Looking?
Open Who's Looking?
Details
Details
Assignee
Unassigned
UnassignedReporter
Yufan Lou
Yufan LouComponents
Affects versions
Priority
Who's Looking?
Open Who's Looking?
Created August 8, 2017 at 9:20 AM
Updated August 8, 2017 at 12:06 PM
There is not currently a convenient syntax to ignore some property names ad-hoc. To do so currently requires overriding the isPersistentProperty method with the public API, which necessitates copying a large part of default implementation.
For inspiration, Entity Framework offers two ways to achieve this: 1) respect `System.ComponentModel.DataAnnotations.Schema.NotMappedAttribute`, and 2) `Entity<Model>().Ignore()`.