基本的にデータベースからページ番号を見つけるために使用されるプロファイルビューを返す詳細ページがあります。リターンビューで返したい別のクエリもありますが、その方法がわかりません。私が持っているコードは
public ActionResult detail(int id)
{
profile profile = db.profiles.Find(id);
var currentpage = (from s in db.profiles where id == s.profileID select s.registrationID).FirstOrDefault();
var articles = (from s in db.Articles where currentpage == s.RegistrationID select s.title).FirstOrDefault();
ViewBag.articles = articles;
ViewBag.noprofiler = " This profile currently doesn't have the email profiler selected";
return View(profile);
}
ビューバッグに入れた記事も返したいのですが、それはうまくいきませんか?