Why the data access layer should use untyped datasets? and Why the
business layer should use strongly typed datasets?
Is this applicable to the 3 layered architecture in general or is it
related with the implementation in .net?

Can someone recommend me a good book to learn in depth the 3 layered
architecture?

Thanks.

Re: Typed datasets in the business layer by sloan

sloan
Thu Oct 05 09:41:44 CDT 2006


If you check out 2 things:


http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbda/html/BOAGag.asp
Read the entire thing(long) but especially the section labeled:
"Deploying Business Entities"

and

http://sholliday.spaces.live.com/?_c11_blogpart_blogpart=blogview&_c=blogpart&partqs=amonth%3d5%26ayear%3d2006
(May 2006)


The data access layer can return typed datasets to the business logic layer.
The MS article above suggests putting those (strong) datasets in its own
assembly, which all other tiers can use.





<pabloch2@gmail.com> wrote in message
news:1160056511.729279.195970@e3g2000cwe.googlegroups.com...
> Why the data access layer should use untyped datasets? and Why the
> business layer should use strongly typed datasets?
> Is this applicable to the 3 layered architecture in general or is it
> related with the implementation in .net?
>
> Can someone recommend me a good book to learn in depth the 3 layered
> architecture?
>
> Thanks.
>



Re: Typed datasets in the business layer by arne

arne
Fri Oct 06 19:19:21 CDT 2006

pabloch2@gmail.com wrote:
> Why the data access layer should use untyped datasets? and Why the
> business layer should use strongly typed datasets?

It should not.

Arne