我正在开展一个项目。我有以下模型
public class RegistrantClass : IRavenEntity
{
public RegistrantClass()
{
RegistrantId = new List<string>();
}
public int Id { get; set; }
public IList<String> RegistrantId { get; set; }
public String ClassId { get; set; }
}
我有以下索引定义
store.DatabaseCommands.PutIndex("RegistrantClass/ClassByStudents",
new IndexDefinitionBuilder<RegistrantClass>
{
Map = students => from i in students
from j in i.RegistrantId
select new { j }
});
我尝试像这样查询上面的索引
public object GetMapping(string registrantId)
{
var mapping = _session.Query<RegistrantClass>("RegistrantClass/ClassByStudents")
.Customize(i => i.Include<RegistrantClass>(k => k.RegistrantId))
.Customize(i => i.Include<RegistrantClass>(k => k.ClassId))
.FirstOrDefault(m => m.registrantId.Contains(registrantId));
return mapping;
}
但后来我收到了错误信息
然而,这给了我NotSupportedException:不支持的方法:包含。
我尝试使用以下代码
.FirstOrDefault(m => registrantId.In<string>(m.RegistrantId));
但后来我收到以下错误消息
Expression type not supported: System.Linq.Expressions.TypedParameterExpression
我可能做错了什么。亲切的问候
答案 0 :(得分:6)
你需要反过来做这件事:
不
.FirstOrDefault(m => registrantId.Contains(m.RegistrantId));
可是:
.FirstOrDefault(m => m.RegistrantId.In(registrantId));