Is there any framework for Windows Forms, DB driven application development/prototyping?

Posted by dolzenko on Stack Overflow See other posts from Stack Overflow or by dolzenko
Published on 2009-01-19T11:47:12Z Indexed on 2010/12/21 5:31 UTC
Read the original article Hit count: 260

Filed under:
|
|
|
|

I'm writing simple database driven application, 80% of functionality is CRUD operations on about 15 tables. Coming from web development background I figured I can cover almost all of these CRUD cases with Rails scaffolding or say Django admins. So I started to look around for Rails/Django-like framework but for Windows Forms applications (ofcourse I understand that "rich client" application development significantly differs from a web development and I'm not expecting anything really similar).

I was surprised that except for a variety of ORMs (let's call it Model-layer) it seems like I'm left with little choice when it comes to View-Controller layer. Maybe I'm missing something?

PS. I evaluated Visual Studio DataSet Designer, but it seems to work only for the most simple cases, and requires additional code for any slightly nontrivial task.

(added) so far I've found:

  1. TrueView for .NET (thanks to Vijay Patel)
  2. NConstruct

© Stack Overflow or respective owner

Related posts about c#

Related posts about database