对我来说 json 是小写的。
所以我定义了这样的简单类型:
public class Profile: RootAggregate
{
[JsonProperty("name")]
public string Name { get; set; }
}
使用 ravendb,我可以坚持下去:
documentSession.Store(new Profile { Name = "myprofile" });
然后检索:
var profile = session.Query<Profile>()
.Customize(x => x.WaitForNonStaleResultsAsOfNow())
.Where(x => x.Name == "myprofile")
.SingleOrDefault();
它返回... NULL。
如果该属性[JsonProperty("name")]
不存在,则会导致:
查询工作正常。
如何保留属性并强制查询按预期工作?
顺便说一句:我正在使用 RavenDB - Build #888