Keith J. Farmer wrote:
 |
staceyw wrote:
As a side note, the May CTP is good, but still a bit buggy with Intellisence, so can't keep it installed for normal dev. Look forward to next release however. Cheers. |
That's just the IDE integration; you can always just compile from msbuild (msbuild foo.sln, msbuild foo.csproj, etc). I'll understand if, like me, you're addicted to the IDE


Unfortunately for me, I am addicted to the IDE and Intellisense. Very nice work so far. Entities sounds really interesting and helpful. Sounds a bit like Views, not sure.
BTW. It struck me today while futzing with the Datagridview, that the event model for validation and formatting is a lot of work. It would seem a better model (or additional model) would be to use attributes on the properties (i.e. declaritive model) applied to the properties of the row object. This is not totally related to Linq, but has some cross-over because the attributes could be applied to the linq objects/properties. So you could have a "Validate" attribute for range validation (similar to cmdlets) and "Format" attributes, Validation/Error Text, Help text, and/or other - ideas? These will be recognized across the framework controls. So things like the Datagridview could just "pick" them up and do the right thing for validation and formatting without any need to set events and do it manually. So it is almost like DB column constraints, but applied at the object/property level. There seems to be potential in that area.