基本上,当我尝试将查询结果转换为可用格式时,我会得到诸如“systems.collections.whatever”之类的输出
相反,我想要返回的实际数字。这就是我选择我想要的值的方式
listBox2.DisplayMemberPath = "MonthlyHourLimit";
listBox2.ItemsSource = e.Result;
if (this.listBox2.Items.Count > 0)
this.listBox2.SelectedIndex = 0;
limit = listBox2.SelectedItem.ToString();
我应该得到“156”,但我得到的是“Timesheet_System.userDataService.UserData”