I'm a Silverlight developer that has to work on a WinForms project again, but I'm not too excited to leave the wonderful world of data binding behind. In the past I always used DataSets with SQL queries. Are there any good tutorials to update my skills?
Some comments on what I want:
- Regarding Entity Framework, it seems nice, but the last time I checked it did not handle custom situations very well. Is there perhaps a more hybrid customised solution where I have more control in my hands? For example, a custom data source with custom actions on save.
- I don't want to use raw text in binding lookups, and already found a useful article for Safe WinForms Databinding in C# 3, but there are probably better standards in .NET 4.
Sample Form
[ Employee Selection (Dropdown - to populate fields below, query DB on change) ]
[ Employee Detail (individual fields - fairly generic) ]
[ Grid (or list) with CheckBoxes for linked responsibilities (not so generic) ]