I am learning EF 4 staff and really got stacked. I am using Code First approach eg.
public class Machine{
public int A{get;set;}
...
}
I am trying to implement business logic in additional property based on the A property (eg. B = A+5) and present it in WPF datagrid. This new property doesn’t need to be stored in database at all. How would I do that (e.g. with partial class )? Any examples?
This should work.