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.
我有一堂课,比如
public class Person { public int age {get;set;} public string ageText {get;set;} }
当 npoco 从数据库中选择年龄时,我想覆盖它,以便它也运行一个函数并设置 ageText。因此,如果它尝试将年龄设置为 25,它还将运行一个函数:
function setAgeAsText(age) { this.ageAsText = "Twenty five" }