0

我什至不知道如何表达这个问题,所以请多多包涵。如果需要,我会编辑。

让我们从我的代码开始:

var assetMonth = "assest."+Month;
var billableAssests = (from s in db.Assets
                              where s.SystemPosition == 1
                              select s).ToList();
        try {

            foreach (var assests in billableAssests)
            {
                    assests.PreviousDateBilled = assests.LastDateBilled;
                    assests.LastDateBilled = today;
                    assetMonth = assests.MonthlyChargeRate; <===HERE
                    assests.RunnungLeaseTotal = assests.RunnungLeaseTotal + assests.MonthlyChargeRate;
                    if (assests.MonthBilled == null)
                    {
                        assests.MonthBilled =  1;
                    }
                    else
                    {
                        assests.MonthBilled = assests.MonthBilled + 1;
                    }

                    //db.Entry(billableAssests).State = EntityState.Modified;
                    db.SaveChanges();

                }
         }

我从用户那里得到了他们想要计费的月份,并希望将每月收费率插入该月份列中。我无法弄清楚如何为我的生活做到这一点。有什么建议或告诉我从哪里开始寻找?

谢谢!

编辑*** 表模型

public class Asset
{
    [Key]
    public string AssetTag { get; set; }

    public string SerialNumber { get; set; }
    public int WarrantyPeriod { get; set; }
    public string DeviceApprover { get; set; }
    public int Dept_id { get; set; }
    public string AssetLocation { get; set; }
    public string DeliveryLocation { get; set; }
    public int SectionKey { get; set; }
    public int VendorKey { get; set; }
    public int DeviceInformationKey { get; set; }
    public int EmployeeKey { get; set; }
    public decimal PurchasePrice { get; set; }
    public decimal? BaseLeaseRate { get; set; }
    public decimal? MonthlyChargeRate { get; set; }
    public decimal? LeaseTotal { get; set; }
    public int? MonthBilled { get; set; }
    public DateTime? LeaseStartDate { get; set; }
    public DateTime? LeaseEndDate { get; set; }
    public decimal? RunnungLeaseTotal { get; set; }
    public int deliveryEmployeeKey { get; set; }
    public DateTime? InstallDate { get; set; }
    public Boolean? Confirm { get; set; }
    public string Status { get; set; }
    public int? SystemPosition { get; set; }
    public DateTime? LastDateBilled { get; set; }
    public DateTime? PreviousDateBilled { get; set; }
    public DateTime? ReturnedDate { get; set; }
    public int Account { get; set; }
    public decimal? Jan { get; set; }
    public decimal? Feb { get; set; }
    public decimal? Mar { get; set; }
    public decimal? Apr { get; set; }
    public decimal? May { get; set; }
    public decimal? June { get; set; }
    public decimal? July { get; set; }
    public decimal? Aug { get; set; }
    public decimal? Sept { get; set; }
    public decimal? Oct { get; set; }
    public decimal? Nov { get; set; }
    public decimal? Dec { get; set; }


    public virtual Section Section { get; set; }
    public virtual Vendor Vendor { get; set; }
    public virtual DeviceInformation DeviceInformation { get; set; }
    public virtual Employee Employee { get; set; }
4

1 回答 1

2

好吧,你有几个选择。

第一个是重构您的模型和可能的数据库,这样您就拥有了月份值的集合,而不是 12 个月的 12 个字段。这会更容易更新,因为您可以只使用传入的月份来确定您想要的条目(如果存在),或者如果不存在则添加它。

 public class AssetMonth
 {
     string AssetTag { get;set;}
     DateTime Month { get;set;} // DateTime would *probably* be the best choice for this
     Decimal? MonthlyChargeRate { get;set;}
 }

二是利用好老套的switch说法:

 switch(Month) // I don't know what type this is; I'm assuming string.
 {
    case "Jan":
         model.Jan = assets.MonthlyChargeRate;
         break;
    case "Feb":
         model.Feb = assets.MonthlyChargeRate;
    // etc.
}

第三,如果你真的很喜欢,你可以使用反射来设置值。

 PropertyInfo prop = typeof(Asset).GetProperty(Month); // again, assuming string
 prop.SetValue(model, assets.MonthlyChargeRage);

但我会鼓励你重构模型。这将为您提供最佳设计,并消除对选项 2 和 3 等变通方法的需求。

于 2013-02-15T18:35:25.110 回答