我从下面的数据库中查询,但我只需要返回一个在Agelist中没有年龄的记录。但我仍然坚持如何去尝试匹配表中的年龄和年龄。任何帮助都感激不尽。感谢
List<int> AgeList = new List<int> { 61, 42, 23, 25 };
var query = Context.Table.FirstorDefault(t => t.Name == name && and t.Country ==country && t.Age != AgeList.Contains()) // I'm stuck here!!
答案 0 :(得分:4)
@reboot python /path/script.py 2>&1 /tmp/<file.log>
我认为这就是你正在寻找的东西
答案 1 :(得分:0)
看起来应该是这样的: AgeList.Contains(t.Age)。
如果int的列表有一个t.Age它将返回true,否则它将返回false。
以下是有关包含的一些文档:https://msdn.microsoft.com/fr-fr/library/bhkz42b3(v=vs.110).aspx