NEST 5.x对NEST 2.x的依赖?

时间:2016-11-29 15:13:58

标签: c# elasticsearch nest

我目前正在使用NEST 5.0.0-rc3,但无法运行任何查询。

例如,此查询:

SELECT  *
FROM    TABLE
WHERE   NAME2 NOT LIKE '%(AI)%'
        OR NAME2 NOT LIKE '%(101)%'
        OR NAME2 NOT LIKE '%(114)%';

生成以下.net异常(抱歉格式有点粗糙):

var client = new Nest.ElasticClient(connectionSettings);
var searchResponse = client.Search<Page>(s => s
    .MatchAll()
    .From(0)
    .Size(10)
    .Source(f => f.Includes(i => i.Field(x => x.Id)))
);

我是否应该引入对2.x版巢的引用?

1 个答案:

答案 0 :(得分:1)

NEST 5.x不依赖于NEST 2.x;这听起来像你有其他编译/引用NEST 2.x的东西,它也应该引用/编译5.x。