如果我的数据库中有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,我也想匹配它们。 我将如何做到这一点。