Guys,
Does anyone have any thoughts on whether data binding should be used in all cases and when other solutions such as simply providing code to perform updates / inserts of data captured on forms should be used.
I have a moderately complex example e.g. an Entity Employee contains some simple attributes e.g. Name / Address. This can be captured in a form view fine however an employee also has a list of ratings for each job area. E.g. job area against a number 1 - 7. This information should be captured in a grid view for an employee and map to a EmployeeJobRatingCollection object which is a property of an Employee containing EmployeeJobRating objects.
Again we could also have a number of other grids which contain details related to an employee. Should I use data binding for this solution and it seems difficult to achieve and awkward or go for some other approach?
Thoughts please?
Cheers
Matt