How do I tell a LINQ data context to ignore either specific properties, or all readonly properties, when binding a result set to an object?
I am working with some T-SQL
public bool IsPaidInFull { get { return NetTotal <= 0m; } private set { ;} }