Entity Framework in not in
.Get().Where(p => new int[] { 74169, 74170, 74171 }.Contains(p.nID)).ToList();
这样是有效的,但是换成
int[] ids = new int[]{ 74169, 74170, 74171 };
.Get().Where(p => new int[] { 74169, 74170, 74171 }.Contains(p.nID)).ToList();
这样就没有效果了
求教~
------解决方案--------------------上下有什么区别?