Dienekes
Dienekes

Reputation: 1548

Alternatives to typed datasets?

I can add a stored procedure to a dataset and handle the data manipulation.

Wanted to know if there are any other ways through which on the basis of stored procedure result sets, I can handle data in the BAL, like dynamically generating business objects or something else?

Upvotes: 1

Views: 955

Answers (1)

SLaks
SLaks

Reputation: 887405

You're looking for an ORM (Object-relational mapping) engine, such as Entity Framework or NHibernate.

Upvotes: 3

Related Questions