我有一个基于文档类型的带有一些索引的表单。
我想基于这些索引构建我的 linq-to-sql 查询。用户可能只填写一些索引或全部。
我需要这样的东西
Gedi.Models.OperacoesModel.indexMatrix[] IndexMatrixArr = (from a in context.sistema_Documentos
join b in context.sistema_Indexacao on a.id equals b.idDocumento
join c in context.sistema_Indexes on a.idDocType equals c.id
join d in context.sistema_DocType_Index on c.id equals d.docTypeId
where d.docTypeId == idTipo and "BUILT STRING"
orderby b.idIndice ascending
select new Gedi.Models.OperacoesModel.indexMatrix {
idDocumento = a.id,
idIndice = b.idIndice,
valor = b.valor
}).Distinct().ToArray();
这个构建的字符串应该在代码的早期部分,比如
字段1 == a 和字段2 == b
这可能吗?