本文整理汇总了C#中Raven.Database.Json.ScriptedJsonPatcher.Value方法的典型用法代码示例。如果您正苦于以下问题:C# ScriptedJsonPatcher.Value方法的具体用法?C# ScriptedJsonPatcher.Value怎么用?C# ScriptedJsonPatcher.Value使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Raven.Database.Json.ScriptedJsonPatcher
的用法示例。
在下文中一共展示了ScriptedJsonPatcher.Value方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Manual
public void Manual()
{
var doc = RavenJObject.FromObject(new Product
{
Tags = new string[0],
});
var resultJson = new ScriptedJsonPatcher().Apply(doc, new ScriptedPatchRequest
{
Script = "this.Tags2 = this.Tags.Map(function(value) { return value; });",
});
Assert.Equal(0, resultJson.Value<RavenJArray>("Tags2").Length);
}
示例2: CanPatchUsingVars
public void CanPatchUsingVars()
{
var doc = RavenJObject.FromObject(test);
var resultJson = new ScriptedJsonPatcher().Apply(doc, new ScriptedPatchRequest
{
Script = "this.TheName = Name",
Values = { { "Name", "ayende" } }
});
Assert.Equal("ayende", resultJson.Value<string>("TheName"));
}
示例3: CanUseLoDash
public void CanUseLoDash()
{
const string email = "[email protected]";
var doc = RavenJObject.Parse("{\"Contact\":null}");
const string script = "this.Emails = _(3).times(function(i) { return contact.Email + i; });";
var patch = new ScriptedPatchRequest()
{
Script = script,
Values = { { "contact", new { Email = email } } }
};
var result = new ScriptedJsonPatcher().Apply(doc, patch);
Assert.Equal(new [] { "[email protected]", "[email protected]", "[email protected]" }, result.Value<RavenJArray>("Emails").Select(x => x.Value<string>()));
}