我有一个带有 aListBox
和一堆TextBox
s 的表格用于编辑记录。我还可以ComboBox
从中选择trip
s 的类型(这是在表单中定义的)。
private void LoadExpenseList()
{
tripSelect.Items.Clear();
var dateSorted =
from e in roster
orderby e.Trip
select e;
foreach (var e in dateSorted)
tripSelect.Items.Add(e.Trip);
}
private void tripSelect_SelectedIndexChanged(object sender, EventArgs e)
{
selectedExpense = (ExpenseItem)roster.TripFind((string)tripSelect.SelectedItem);
listExpenses.Items.Add(selectedExpense);
}
private void listExpenses_SelectedIndexChanged(object sender, EventArgs e)
{}
现在,当我选择 a 时,trip
我只得到第一个传递给的结果ListBox
,这就是原因(这是在列表类中定义的)
public ExpenseItem TripFind(string trip)
{
var specificExpenseItem =
from e in this
where e.Trip == trip
select e;
if (specificExpenseItem.Count() >= 1)
return specificExpenseItem.First();
return null;
}
每次我尝试重写它时都会遇到问题!我得到not all paths return a value
或 JIT 调试器告诉我我无法通过这个。
这是我尝试过的最后一件事:
public ExpenseItem TripFind(string trip)
{
var specificExpenseItem =
from e in this
where e.Trip == trip
select e;
foreach (var e in specificExpenseItem);
return null;
}
有什么帮助吗?