我在 RavenDb 中存储了许多命令,它们都实现了 ICommand。我希望能够搜索上次修改和 Raven-Entity-Name 的元数据。我目前正在对每个命令进行多重映射,如下所示:
public class CommandAuditSearch_Index : AbstractMultiMapIndexCreationTask<CommandAuditSearch_Index.Results>
{
public class Results
{
public string CommandType { get; set; }
public DateTime LastModified { get; set; }
}
public CommandAuditSearch_Index()
{
AddMap<NewEmployeeStartCommand>(employees => employees.Select(x => new
{
CommandType = MetadataFor(x).Value<string>("Raven-Entity-Name"),
LastModified = MetadataFor(x).Value<DateTime>("Last-Modified")
}));
AddMap<EmployeeLeaverCommand>(employees => employees.Select(x => new
{
CommandType = MetadataFor(x).Value<string>("Raven-Entity-Name"),
LastModified = MetadataFor(x).Value<DateTime>("Last-Modified")
}));
Index(results => results.CommandType, FieldIndexing.Analyzed);
}
}
我查询如下:
session.Query<CommandAuditSearch_Index.Results, CommandAuditSearch_Index>()
.Where(x => x.CommandType == commandType && x.LastModified >= DateTime.Today).OfType<ICommand>().ToList();
我知道 Raven 中已经内置了一个索引来获取标签(实体名称)和上次修改日期,但我似乎无法弄清楚如何获取结果,因为上面的索引给了我。
谁能给我指出一个静态索引的正确方向,我不必为我必须查询的每个命令都提供上面的多重映射,从而将结果作为 ICommands 列表提供给我?
谢谢
稻田