基本的に、クエリ結果を使用可能な形式に移動しようとすると、「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」を取得します。