0
を2つのコンテキストエンティティを使用することは可能ですは、2つの異なるデータベースからのエンティティにconnectiongは、2つの異なるデータベースから
コード2つのコンテキストエンティティを使用することが可能です:
Using one FoodSupplyEntities
using (var contextFood = new FoodSupplyEntities())
{
var _result = (from _FoodSupplyStatus in contextFood.FoodSupplyStatus
join _FoodQualityStatus in contextFood.FoodQualityStatus
をしかし、参加することが可能です別のサーバからの別のエンティティの別のテーブルなど)。
サンプル(いけない知っているが、それはこのようgosomethingかもしれません。)
using (var contextFood = new FoodSupplyEntities() and contextKitchenware = new KitchenwareEntities())
{
var _result = (from _FoodSupplyStatus in contextFood.FoodSupplyStatus
join _KitchenwareSupplyStatus in contextKitchenware.KitchenwareSupplyStatus