これは私のコードです
var s = from p in db.tblTotalFees
where p.Class == ClassDropDownList.SelectedItem.Value && p.StudentID == Convert.ToInt32(StudentNameDropDownList.SelectedValue)
select p;
DataTable dt = new DataTable();
pをデータテーブルに変換してdtに保存するにはどうすればよいですか???