Hi,
I have a calculated property in my object that I don't want to save to the DB, is there a way I can specify that?
Like this one as an exemple :
public virtual string FullInfos
{
get
{
var html = Contact1Info;
html += Contact2Info;
return html;
}
}
Where Contact1Info and Contact2Info are automatic property already saved...
Thanks!