Is the ASP.NET "DataSourceHelper" class essentially Dal?

I've seen a class named DataSourceHelper with a DataObject (true) attribute in several modern ASP.NET open source projects.

Is it an ASP.NET idiom to use such a class, and if so is it the DAL equivalent?

0


source to share


1 answer


The only thing I've seen for this is internal to the .NET framework, the only method it implements is this:

System.Web.UI.DataSourceHelper.GetResolvedDataSource(object o, string data_member) 

      

What is equivalent

System.Web.UI.DataSourceResolver.ResolveDataSource(object o, string data_member) 

      



look here for full codes (in monoproject):

http://www.koders.com/csharp/fid546A9F9796B7DC3E5B9C739D76B5C18F8C27B9CB.aspx?s=DataSourceHelper#L2

http://www.koders.com/csharp/fid6346172865991F983A0546451DF02B2E2F868D8D.aspx?s=DataSourceResolver#L2

+1


source







All Articles