使用System.Data.SQLite及其EF模块操作SQLite数据库(文件)

  • SQLite
    • SQLite is a self-contained, high-reliability, embedded, full-featured, public-domain, SQL database engine.
    • https://www.sqlite.org/index.html
    • License: Public Domain, Open-Source, not Open-Contribution
  • SQLite for .NET (System.Data.SQLite)
    • introduction
    • how to use
      • Add references (Nuget to find “System.Data.SQLite”)
        • EntityFramework (can be upgraded to 6.2.0, already include EF and Linq)
        • System.Data.SQLite
        • System.Data.SQLite.Core
        • System.Data.SQLite.EF6 (can be removed)
        • System.Data.SQLite.Linq (can be removed)
      • Setup configuration file (in App.config)
        • connection string
        • db provider
      • Create custom context class

猜你喜欢

转载自www.cnblogs.com/wyp1988/p/9857347.html
今日推荐