在RavenDB中设置操作

时间:2011-05-23 15:22:20

标签: c# ravendb

我在ravendb set操作上阅读this article,但它没有告诉我如何通过C#更新一组文档。我想更新符合特定条件的所有文档的字段。换句话说,我想采用这种C#并提高效率:

var session = db.GetSession();
foreach(var data in session.Query<Data>().Where(d => d.Color == "Red"))
{
    data.Color = "Green";
    session.Store(data);
}
session.SaveChanges();

1 个答案:

答案 0 :(得分:6)

请参阅http://ravendb.net/docs/2.5/faq/denormalized-updates

第一个参数是您要更新的索引的名称。 第二个参数是索引查询,它允许您指定where子句。查询的语法是lucene语法(http://lucene.apache.org/java/2_4_0/queryparsersyntax.html)。第三个参数是update子句。第四个参数是你想要陈旧的结果。

documentStore.DatabaseCommands.UpdateByIndex("DataByColor",
    new IndexQuery
    {
        Query = "Color:red"
    }, new[]
    {
            new PatchRequest
            {
                Type = PatchCommandType.Set,
                Name = "Color",
                Value = "Green"
            }
    },
    allowStale: false);