Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含许多表的数据库,每个表都有不同的属性,我想实现以下目标:
在所有属性上创建和索引(来自每个表)。
问题是我没有每个表都有一个类,因为我使用动态类将它们插入数据库。
那么如何创建一个给定字符串的索引将返回其属性之一包含该字符串的所有文档?
另一个需要解决的问题是,在以后的表插入中,我可以将新表添加到我上面解释的索引中。
谢谢,大卫
大卫,您在 RavenDB 中没有表,但除此之外,您可以在整个数据集上定义一个索引,如下所示:
from doc in docs select new { doc.Name }
它将定义所有类型的索引,允许您查询所有文档的名称。