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.
bltoolkit 中是否有任何方法可以添加到未映射到数据库表的实体属性?
就像是:
[NoMap()] public string Something {get; set;}
? 谢谢
只需使用 MapIgnore 属性
[MapIgnore()] public string Something {get; set;}