我正面临以下代码的 CA1506 代码分析警告
private void ShowProductStatistics(object obj)
{
this.currentProduct = obj as Products;
Task.Factory.StartNew(() =>
{
var topOrderQuery = (from orderDetail in new XPQuery<OrderDetails>(new Session())
where
orderDetail.ProductID.ProductID == currentProduct.ProductID
orderby
(orderDetail.UnitPrice * orderDetail.Quantity) descending
select new TopOrder
{
OrderId = orderDetail.OrderID.OrderID,
TotalSales = orderDetail.UnitPrice * orderDetail.Quantity
}).ToList().Take(10);
DispatcherExt.CurrentDispatcher.BeginInvoke(new Action(() => { this.TopProduct = topOrderQuery; }));
var orderPerYearQuery = (from order in new XPQuery<OrderDetails>(new Session())
where order.ProductID.ProductID == currentProduct.ProductID
group order by new { order.OrderID.OrderDate.Year }
into g
select new OrderPYear
{
TotalOrder = g.Count(),
OrderYear = g.Key.Year
}).ToList();
DispatcherExt.CurrentDispatcher.BeginInvoke(new Action(() => { this.OrderPerYear = orderPerYearQuery; }));
var salesPerYearQuery = (from order in new XPQuery<OrderDetails>(new Session())
where order.ProductID.ProductID == currentProduct.ProductID
group order by new { order.OrderID.OrderDate.Year }
into g
select new SalesPYear
{
Sales = g.Sum(p => p.UnitPrice * p.Quantity),
Year = g.Key.Year
}).ToList();
DispatcherExt.CurrentDispatcher.BeginInvoke(new Action(() => { this.SalesPerYear = salesPerYearQuery; }));
});
}
我尝试按照 msdn 中给出的建议解决此警告,但未成功。有人可以帮我解决这个警告吗?
谢谢和问候, Rudresh