Hi All,
I have a question in ASP .Net Web Application
Whether Web Application should use Entity Framework or should not use Entity Framework?
If there's a solution please let me know elaborately and what is the difference between these two...?
As soon as possible.
Thanks & Regards,
Sourav

Jaimin ShethiyaPosted Oct 10, 2019, 7:28 AM
Yes because if EF used in our application side then we have maintain our application easily in coding side like relationship and other stuff, so most of the used that, and also EF provide to automatically created the SQL tables and modified table data.
here is the fully knowledge describe EF, can you please checked once if you have a time.
https://www.entityframeworktutorial.net/what-is-entityframework.aspx
If we used Dapper ORM or other any ORM then in that case we have to maintain all things by coding.
Sourav Kumar DasPosted Oct 10, 2019, 4:29 AM
Jaimin ShethiyaPosted Oct 9, 2019, 2:56 AM
If you application is small then you have to go-ahed whith EF but your application is large then you have not go-ahed with EF.
you have to go-ahed Dapper ORM to your application.
Dapper ORM is the fastest ORM to perform CRUD operation.
here is the link how to use Dapper ORM.
https://dapper-tutorial.net/dapper
let me know if you have needed anything else.
Thanks
Sourav Kumar DasPosted Oct 7, 2019, 11:36 PM
Ramesh PalanivelPosted Oct 3, 2019, 7:39 AM
Amit MohantyPosted Oct 3, 2019, 7:38 AM
It reduce development time
It reduce development cost
It enables developers to visually design models and mapping of database
It provides capability of programming a conceptual model.
It provides unique syntax (LINQ / Yoda) for all object queries whether it is database or not
It allow multiple conceptual models to mapped to a single storage schema.
Its logical schema is not able to understand business entities and relation among each other
Logical schema of database is not capable of using certain parts of application
It is not available for every RDMS
Need to handle data in nontraditional way
It does not work if we change any schema of the database. We need to update the schema on the solution.
It is not good for huge domain model.