Typed and Untyped Datasets

  • Thread starter Thread starter Roshawn
  • Start date Start date
R

Roshawn

Hi,

In my research regarding ADO.NET, I've read that it is beneficial to use
both typed and untyped datasets together (untyped on the server, typed on
the client). How would you suggest that I go about this?

Thanks,
Roshawn
 
Well, typed datasets provide more information without accessing database.
Also, there is intellisense and more errors caught by compiler.
They can still be used as untyped datasets (typed dataset is derived from
DataSet).
I use them wherever I can.
 
Back
Top