Do we really need ASP.NET xyzDataSource controls?
I am from C# Winforms background and recently switched to ASP.NET in c#.
After working with Winforms applications along with BusinessObjects, O/R Mapping frameworks, and logical layering techniques for months, I am just wondering, should we actually use ASP.NET ubiquitous xyzDataSource controls?
And we have our specific class-structures like:
class MyClass : IMyClass, IPersistant
{
public int ID {get;set}
.....
.....
public int SaveOrUpdate(){}//returns the ID
public static MyClass Get(int id){}
public static IEnumerable<MyClass> Get(){}
public bool Delete(){}
}
And also we have our own code generators for this type of classes.
And also don't xyzDataSource controls only applicable for XP/Agile projects?
Last edited by edurazee; December 21st, 2009 at 05:11 AM..
|