将RegEx添加到Linq方法语法

时间:2018-09-07 15:21:47

标签: entity-framework linq

我有以下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));

但是它不能编译。

谢谢 亚历克斯

0 个答案:

没有答案