単純なLINQクエリを添付しています。以下のLINQクエリで説明されているように、これら3つのフィールド(Field1、Field2、Field3)をプルするより良い効率的な方法があるかどうかを調べたいと思います。
from currentCons in ActiveConnections
join accounts in Accounts on currentCons.New_AccountId equals accounts.AccountId
let Field1 =(from holder in MapHolders
join entity in Entities on stringmap.ObjectTypeCode equals entity.ObjectTypeCode
where entity.Name == "New_Connection"
where holder.AttributeName == "New_Data"
where holder.AttributeValue == currentCons.New_DATA_Val
select holder.Value)
let Field2=(from holder in MapHolders
join entity in Entities on stringmap.ObjectTypeCode equals entity.ObjectTypeCode
where entity.Name == "New_Connection"
where holder.AttributeName == "New_Type"
where holder.AttributeValue == currentCons.New_Type
select holder.Value)
let Field3=(from holder in MapHolders
join entity in Entities on stringmap.ObjectTypeCode equals entity.ObjectTypeCode
where entity.Name == "New_Connection"
where holder.AttributeName == "New_EntryPoint"
where holder.AttributeValue == currentCons.New_EntryPoint
select holder.Value)
where currentCons.ModifiedOn >= Convert.ToDateTime("1/1/2011")
where currentCons.ModifiedOn <= Convert.ToDateTime("5/5/2012")
select new
{
conId = currentCons.ConnectionId,
ConName = currentCons.name,
TypeId = currentCons.Type,
AccountId = currentCons.AccountId,
OId = currentCons.OwnerId,
BandwidthId = currentCons.Bandwidth,
EntryPointId = currentCons.EntryPoint,
Cap = Field1 ,
Dir=Field2,
EP=Field3,
ModifiedOn = currentCons.ModifiedOn
}
もう1つの方法は、選択ブロックに直接配置することです。これを行うための効率的な方法は何ですか?
どんなポインタでも大歓迎です。
ありがとう。