我想在 RavenDB 的 Id 上修改两个小东西,所以我执行以下代码:
documentStore.Conventions.FindIdentityProperty = (prop) => prop.Name == "ID";
documentStore.Conventions.DocumentKeyGenerator = (entity) => entity.GetType().FullName + "/";
但是这些代码行只有在另一行没有启用的情况下才有效,我不能让两者一起工作。
这可能吗?
谢谢!