2013-02-06 81 views
1

在一個解決方案中,我有SQLiteDatabaseScope正確引用,沒有錯誤。在另一個解決方案中,我感到沮喪,因爲我無法使用nuget或在解決方案的一個硬盤位置明確引用dll來引用此dll。SQLiteDatabaseScope參考錯誤

using System.Data.SQLite; 
SQLiteDatabaseScope DbScope; // the type or namespace could not be found 

有什麼想法嗎?

回答

1

SQLiteDatabaseScopethe SQLite adapter部分,相反卻是from basicallyeverything或其他來源。

確保正確的程序集(從「基本上所有的東西」)被引用項目中包含適當的類源文件。

請記住,程序集名稱和命名空間不需要在.NET中對齊 - 它們在進行時只是一個很好的選擇。