как передать список linq для просмотра в mvc
код приведен ниже
var IS = (from c in xfeed.ciqCompanies join s in xfeed.ciqSecurities on c.companyId equals s.companyId join ti in xfeed.ciqTradingItems on s.securityId equals ti.securityId join e in xfeed.ciqExchanges on ti.exchangeId equals e.exchangeId join fp in xfeed.ciqLatestInstanceFinPeriods on c.companyId equals fp.companyId join pt in xfeed.ciqPeriodTypes on fp.periodTypeId equals pt.periodTypeId join fd in xfeed.ciqFinancialDatas on fp.financialPeriodId equals fd.financialPeriodId join di in xfeed.ciqDataItems on fd.dataItemId equals di.dataItemId where fd.dataItemId == 3069 && fp.periodTypeId ==1 && fp.fiscalYear>=DateTime.Now.AddYears(-5).Year && fp.fiscalYear<=DateTime.Now.Year && ti.tickerSymbol == tickerSymbol && e.exchangeSymbol == exchangeSymbol select new { c.companyName, c.companyId, ti.tickerSymbol, e.exchangeSymbol, pt.periodTypeName, fp.fiscalYear, fd.dataItemId, di.dataItemName, fd.dataItemValue }).ToList();