I Have following LinQ to Entity Query In my Code while excuting that query I am getting Timeout error.
IEnumerable _Source = new List(); _Source = dtFARData.Rows.Cast();
var objFARFinancialDataList = from row in _Source join sa in entities.SystemAccounts on row["COAAccountID"] equals sa.AccountSourceID join a in entities.Accounts on sa.SystemAccountID equals a.SystemAccountID join tb in entities.fso_far_trial_balance on new { TrialBalanceID = Convert.ToInt32(row["TrialBalanceIDSource"]), a.TaxYearID } equals new { TrialBalanceID = tb.TrialBalanceID, tb.TaxYearID } join ag in entities.AttributeGroups on tb.AttributeGroupID equals ag.AttributeGroupID into tb_ag from ag in tb_ag.DefaultIfEmpty() join b in Partner on row["EntityIDParent"].ToString().Split('_')[0] equals b.PartnerSourceID into partner from partner_name in partner.DefaultIfEmpty() where a.TaxYearID == objQuery.TaxYearID select new FARFinancialDataPS() { TaxYearID = objQuery.TaxYearID, AccountID = sa.AccountSourceID, AccountDescription = sa.AccountDescription, AccountNature = sa.NatureOfAccount.NatureOfAccountName, PartnerID = partner_name != null ? partner_name.PartnerID : 0, Partner = Convert.ToString(row["Partner"]), PartnerInterest = partner_name == null ? string.Empty : partner_name.PartnerInterestSourceID, PartnerAmount = Convert.ToDouble(row["TrialBalanceAmountUSD"]), TrialBalanceIDSource = Convert.ToString(tb.TrialBalanceID), AttributeGroupID = ag != null ? ag.AttributeGroupID : 0, AttributeGroupName = ag != null ? ag.AttributeGroupName : String.Empty, UniquKey = sa.AccountSourceID + Convert.ToString(tb.TrialBalanceID) + objQuery.TaxYearID + ag.AttributeGroupID };
collection.FARFinancialDataPSList = objFARFinancialDataList.ToList();
Please let me know if anyone has solution for that.