Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
dapper/dapper extensions/dapper rainbow などを使用して、モデルのプロパティを無視するにはどうすればよいですか?
それらのダッパーライブラリの?
計算されたプロパティなしで基本クラスを設計し、それを挿入に使用できます。
class BasePerson { public String Name {get;set;} } class Person: BasePerson { public String ComputedProperty {get;set;} } Insert<BasePerson>(person);