Which data-access model has the best performance and speed for a C# Winforms application?
- Dataset?
- NHibernate?
- Entity Framework?
Why would people say not to use Datasets ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It really doesn’t matter. The true cost is in I/O, getting the query to the dbase engine and getting the results back. And getting them painted to the screen in the case of WinForms. Whacking the bits into an object model is a fraction of a percent of the overall cost.