各ユーザーが「カテゴリ」と「製品」のリストを作成および管理します。したがって、ユーザーの「カテゴリ」または「製品」のリストを取得する必要がある場合は、次を確認する必要があります。
IEnumerable<Categories> results = from x in db.Categories
where String.Compare(x.UserName, User.Identity.Name, true) == 0
select x;
return View(results.ToList());
と
IEnumerable<Categories> results = from x in db.Categories
where String.Compare(x.UserName, User.Identity.Name, true) == 0
select x;
ViewBag.CatLists = results.ToList();
などなど、非常に悪いコーディング スタイルです。そして、これを改善したいのですが、これを行う方法がわかりません。
アイデアをありがとう!