2017-08-01 105 views
0

我正在開發各種使用sqlite的項目,看起來sqlite不斷更新。就像我在一個項目中使用1.0.105.1版本一樣,當我將它安裝在另一個項目中時,我得到了1.0.105.2。我試圖創建一個實體框架,我得到這個錯誤。 an error occurred while connecting to the database. the database might be unavailable. An exception of type 'System.InvalidCastException' occurred. 我想堅持一個版本一段時間。那麼當我在nuget包管理器中只提供1.0.105.2時,如何安裝1.0.105.1?如何安裝不同版本的sqlite而不是提供的版本

回答

0
Install-Package System.Data.SQLite -Version 1.0.105.1 
相關問題