1

在我的简单数据库第一个实体框架场景中,我有客户分配了价目表编号。另一方面,有一个产品表,其中有 7 个价格列对应于价格表,例如 PR_1、PR_2、PR_3 等。

我想对一些属性进行投影。问题是属性/字段之一取决于客户的价目表编号,因此需要动态构建。因此,如果价目表编号为 2,则要使用的属性为 PR_2,依此类推。

public IList<Product> GetSalesList(int customerId)
{
    Customer customer = this.customerService.Get(customerId);

    var products = this.productRepository.GetAll().OrderBy(p => p.ProductCode)
            .Select(p => new Product
            {
                Id = p.Id,
                ProductCode = p.ProductCode,
                Description = p.Description,
                PricingTypeCode = p.PricingTypeCode,
                Quantity = 0,
                SalesPrice = <<PR_ + customer.PricelistNumber.ToString()>> 
             }).ToList();

    return products;
}

我已经阅读了有关 LINQ 的信息,但我不想使用它,因为我认为这只是一个例外。

谁能指出我正确的方向或有人为此提供解决方案吗?

4

1 回答 1

0

我会将所有价格存储在 中Product,然后SalesPrice根据客户的价目表编号创建一个计算销售价格的方法。

就像是:

public decimal SalesPrice(Customer customer)
{
    return prices[customer.PriceListNumber - 1];
}
于 2013-07-05T01:26:02.247 回答