Click here to Skip to main content
15,895,746 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i want to do crud oprations in angular js without using data entity framwork model in asp.net webapi.
please help me ..
Posted

1 solution

Why do you hate Entity Framework so much? It is not as difficult as it sounds. :-)

CRUD operations are simply 4 functions (5 in most cases) which allows you to:

1. Create the objects.
2. Read the objects.
- 5th function comes in this section to read a single data record.
3. Update the objects.
4. Delete the objects.

You can do so without using Entity Framework or any other framework if you are well aware of what your data source is. Anyways, read this to get more information. ASP.NET 5 Web API RESTful CRUDs and Windows 10 native application[^]
 
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