Click here to Skip to main content
15,887,746 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
We are required to design simple CRUD operations for library using Entity framework without using the database. Please let us know on how we can design this requirement (without using DB).

What I have tried:

I have no idea how to implement CRUD operations without using the database.Please suggest the ways.
Posted
Updated 1-May-16 23:31pm
Comments
CHill60 2-May-16 4:35am    
Store the data in files - text, XML or whatever. Or use Excel. Given the tag on your post I suggest XML files would be what your tutor wants

1 solution

To work with data all you need is a data provider for the Entity Framework...It is not an easy task and you will have to learn a lot...
You may stat here:
Writing an Entity Framework Data Provider[^]
EntityClient Provider for the Entity Framework[^]

Fortunately there is a shortcut for all this... .NET Framework Data Provider for ODBC...
Create an ODBC connection using the text driver and let entity framework work with...
 
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