您可以使用任何
var temp =context.TableA .Where(x=>!context.TableB.Any(y=>y.GroupID!=x.GroupID)) .Select(x=>new { GroupID = x.GroupID, GroupName=x.GroupName, GroupNumber = x.GroupNumber}).ToList();
欢迎分享,转载请注明来源:内存溢出
您可以使用任何
var temp =context.TableA .Where(x=>!context.TableB.Any(y=>y.GroupID!=x.GroupID)) .Select(x=>new { GroupID = x.GroupID, GroupName=x.GroupName, GroupNumber = x.GroupNumber}).ToList();
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)