を選択:Linq。私はこのテーブルを持っている複数のテーブルからプロジェクトで
- 製品(ID、たcatalogId、manufacturerId ...)
- カタログ
- メーカー
またProduct
モデル(id, name, catalogId, catalogTitle, manufacturerId, manufacturerName)
。
Product itemを取得したい場合、以下のLinqでこのSQLクエリを書く方法を教えてください。
SELECT Product.Name, Product.CatalogId, Product.ManufacturerId, [Catalog].Name, Manufacturer.Name
FROM Product, [Catalog], Manufacturer
WHERE [Catalog].Id=Product.CatalogId AND Manufacturer.id=Product.ManufacturerId AND Product.Active=1
何が起こったのですか? http://www.dotnetperls.com/join – TigOldBitties
@TigOldBitties最近質問を編集しました。私は商品アイテムを取得したい。 –
あなたが得ようとしていることに関係なく、この質問はまだ適用されます。 – TigOldBitties