linq包含但反之亦然

时间:2019-05-27 14:20:37

标签: c# .net linq

如果我的数据库中有1000,并且参数100050出现了, 或我数据库中的10010和10010500出现了,其中两个必须匹配。

这些任何一个的

位数字都可以更改。

int xxxx = _DegreePropertiesService.GetBy(x => x.Gtip == zzq).Select(x => x.CustomConsultantDegreeCode).FirstOrDefault();

gtip =数据库记录,

zzq =参数。

我该怎么做?

谢谢。

编辑:

gtip = 1020

zzq = 102

  int xxxx = _DegreePropertiesService.GetBy(x => x.Gtip.StartsWith(zzq)).Select(x => x.CustomConsultantDegreeCode).FirstOrDefault();

在这种情况下,我可以匹配其中两个。

但是,如果我有102 gtip和1020 zzq,我也想匹配它们。 我将如何做到这一点。

0 个答案:

没有答案