我不熟悉使用FluentData並使用正在使用它的現有應用程序。FluentData.IDbCommand不包含'Query'錯誤的定義
當我試圖在Visual Studio中構建時,我首先下載了該dll並將其添加爲參考。
現在我得到以下錯誤:
'FluentData.IDbCommand' does not contain a definition for 'Query' and no extension method 'Query' accepting a first argument of type 'FluentData.IDbCommand' could be found (are you missing a using directive or an assembly reference?)
的代碼行如下:
var result = Proxy.Context.Sql(query.ToString()).Query<T>().FirstOrDefault();
我也試着刪除提及。然後打開NuGet並搜索fluentdata並單擊安裝按鈕,我仍然得到相同的錯誤。如果從NuGet安裝,它將以下代碼行添加到.config文件中:
<package id="FluentData" version="3.0.0.0" targetFramework="net45" />
任何幫助將不勝感激。