■No68909 (甕星 さん) に返信 > var q = from p in assetMannageDataSet.Equip1 > where (textBox1.Text == "") || (p.管理番号 == int.Parse(textBox1.Text)) > select p; > お教え頂いた方法を使用してみたところ、問題なく動作いたしました。 テキスト複数を参照するケースだったので、
var q = from p in assetMannageDataSet.Equip1 where (textBox1.Text == "") || (p.管理番号 == int.Parse(textBox1.Text)) where (comboBox1.Text == "") || (p.分類 == comboBox1.Text) select p;