次のコードを実行すると、「System.Nullreferenceexception:object reference not set to an instance of an object」という例外が発生します。allStudents 変数を初期化しないことと関係があると思いますが、allStudents の型がわかりません。
どんな助けでも大歓迎です
private void showStudents(string c)
{
try
{
using (SMDataClassesDataContext db = new SMDataClassesDataContext())
{
var allStudents = from t in db.tbl_students
where t.current_class == c
select t;
dgViewStudents.ItemsSource = allStudents;
}
}
catch (Exception e)
{
MessageBox.Show(e.ToString());
}
}