我有以下linq代码:
var join = enterpriseContext.Parties
.Join(enterpriseContext.ActiveDealerContactsViews,
p => p.party_id,
v => v.Party_id,
(p, v) => new { PartySite = p, View = v })
.Where(p => p.PartySite.party_id == partyId)
我想使用正则表达式检查添加另一个.where表达式,例如
.where(v => v.View.System_id.IsMatch(regEx));
但是它不能编译。
谢谢 亚历克斯