Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
作为我正在处理的一个新项目的一部分,我需要管理一个包含 2-3 个表的本地数据库 (sqlite)。由于项目的简单性,我宁愿不使用 ORM 框架。我应该提到在 .NET 2.0 中编译的项目。
我需要的是:
我应该只在每个类中创建 CRUD 方法吗?( DRY ) 也许创建一个 BaseDBClass 启用 CRUD 操作?(或者是开销?)
考虑到我的情况和情况,最好的方法是什么?
简单的项目需要简单的解决方案。只需在类或类助手的 CRUD 方法中使用 ADO.NET。