Need advice on .NET architecture

  • Thread starter Thread starter William Gower
  • Start date Start date
W

William Gower

Having come from a Java background, I am used to the MVC framework. What is
the official MS view on this? In .net we have a form class, I can create a
class to represent the domain and I can use a dataset/dataadapter to access
my data. Should my form class access my dataset directly, should it access
my domain class or should I use a controller class to access the data,
instantiate the form and pass it the domain class?
 
Hi William,

Microsoft has creates the tools with which you can do probably all
alternatives which you tell.

Why would they do that when there view was not to use it?

Don't forget that the tools are used in a lot of environments.

However just my thought about it.

Cor
 
* "William Gower said:
Having come from a Java background, I am used to the MVC framework. What is
the official MS view on this? In .net we have a form class, I can create a
class to represent the domain and I can use a dataset/dataadapter to access
my data. Should my form class access my dataset directly, should it access
my domain class or should I use a controller class to access the data,
instantiate the form and pass it the domain class?

Maybe this helps:

<URL:http://msdn.microsoft.com/library/en-us/dnpag/html/uipab.asp>
 
Back
Top