Click here to Skip to main content
15,890,123 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi Folks,

we have application with Asp.Net 2.0 and SQL server Database and every month we save 2 lakhs transactions in one of my database table. In this table we have column with datatype as Text(where i can have huge data as string).

Now i want to implement same application with MVC 5. Please suggest me which one is better for my application Ado.NET or EF ?

Thanks,
Eswar

What I have tried:

I am thinking that ADO.Net is best for Huge Databases. I need suggestions from you.
Posted
Updated 16-May-16 3:46am
Comments
Richard Deeming 16-May-16 8:55am    
The text, ntext and image[^] data types have been deprecated for many years. You should be using varchar(max), nvarchar(max) and varbinary(max) instead.

Google "entity framework vs ado.net" to see the pros and cons of both and decide which one meets your requirements. If raw speed is a factor you may err toward ado.net, but if your code is more complex you might prefer the simplicity of EF.
 
Share this answer
 
Its upto you to decide, but EF 6.0 has improved a lot and have many new features. If you want to go away with writing Store Procedures and want all your operations and business logic's to be driven from C#, go for EF.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900