如何在不使用数据库的情况下在库管理系统中设计和管理CRUD操作?

问题描述:

我们需要使用Entity框架为库设计简单的CRUD操作,而不使用数据库。请告诉我们如何设计此要求(不使用数据库)。



我尝试过:



我不知道如何在不使用数据库的情况下实现CRUD操作。请建议方法。

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.

要使用所有你需要的数据是实体框架的数据提供者......这不是一件容易的事,你必须学到很多东西......

你可以在这里统计:

编写实体框架数据提供程序 [ ^ ]

实体框架的EntityClient提供商 [ ^ ]


Fortunat所有这些都有一个快捷方式...用于ODBC的.NET Framework数据提供程序...

使用文本驱动程序创建ODBC连接,让实体框架与...一起工作...
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...