ProductCategory とのマッピングを持つ Named Product テーブルがあります。製品コントローラーで ProductCategoryId を見つけたいです。どうすればこれを達成できますか。ここでlinqクエリを適用しましたが、それを使用してproductCategoryIdを見つけるにはどうすればよいですか.
var productCategoryId = (from ProductCategory in context.ProductCategories
where (ProductCategory.ProductId==id)
select ProductCategory);
今、productCategoryId に含まれている可能性のあるデータベースから Id を見つけようとしていますが、ここではアクセスできません。
var proCategoryId = _categoryService.GetProductCategoryById(productCategoryId);
どうすればこれを達成できますか。