SQLite deployment for .net application

前端 未结 4 473
清酒与你
清酒与你 2020-12-09 18:21

I have used SQLite for my .net framework 4.0 WPF application, It works perfectly fine with development environment. I just copied system.data.sqlite.dll to my application in

4条回答
  •  时光取名叫无心
    2020-12-09 18:58

    As some mentioned earlier you need to include to your app configuration:

    
    
        
        
    
    

    You have to also add DLL files to references:

    • SQLite.Designer
    • System.Data.SQLite
    • System.Data.SQLite.Linq

    And set property 'Copy Local' value equal true for each of them. Please visit my blog for more info

提交回复
热议问题