Re: [DOTNET] Best way to pass object between tiers

2002-04-29 Thread Curtis Koppang
D]> Sent: Sunday, April 28, 2002 5:24 AM Subject: Re: [DOTNET] Best way to pass object between tiers > You can use a DataSet to pass your data around between tiers. You can > use xsd.exe to generate DataSets which expose Product and ProductData's > properties. Also, because you get

Re: [DOTNET] Best way to pass object between tiers

2002-04-28 Thread Graeme Foster
You can use a DataSet to pass your data around between tiers. You can use xsd.exe to generate DataSets which expose Product and ProductData's properties. Also, because you get DataSets back from your queries, ou don't have to do any of the packaging you are talking about. I'm sure I've seen using

[DOTNET] Best way to pass object between tiers

2002-04-27 Thread Anye M. Sellers
This isn't specifically a .NET question because it could apply to any OO development but since I'm developing in .NET I'm interested in the answer specifically as it pertains to .NET. If I have a class (we'll call it Product) that has a number of scalar properties and a data access class (we'll c