0

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);

どうすればこれを達成できますか。

4

1 に答える 1

2
var productCategoryId = (from ProductCategory in context.ProductCategories
                         where ProductCategory.ProductId==id
                         select ProductCategory.ProductCategoryId).SingleOrDefault();
于 2012-07-28T10:17:24.790 に答える