我有這個疑問:如何測試數字是否屬於查詢中的列表? C#EP
int[] numbers = { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 };
var queryError = from error in db.errors
//where error.battery_id == numbers
select error;
,我想在where子句中來測試一個數字(error.battery_id)屬於列表,然後選擇正確的錯誤。
謝謝!
什麼是你的LINQ提供程序? – Aphelion