Click here to Skip to main content
15,893,381 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Example of MVC 5 application without using Entity Framework.
Posted
Updated 6-Feb-15 18:54pm
v2

1 solution

Entity Framework is just a ORM Framework to access data, for more have a look on below links:
http://en.wikipedia.org/wiki/Object-relational_mapping[^]
http://en.wikipedia.org/wiki/List_of_object-relational_mapping_software[^]

There are many applications developed in ASP.NET MVC without Entity Framework.
I have done CRUD opertaions without Entity framework here (I have used ASP.NET MVC 4 and XML files as data source):
CRUD Operations using Partial View and jQueryUI in ASP.NET MVC4 - Part 1[^]

Other than that you can use ADO.NET, LINQ to SQL, Sevices or any other mechanics to fulfill the need of persistence storage of your application. If you do not need any data storage, no need to use anything like that.

Hope this will help you. Thanks.
 
Share this answer
 
v2

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