从mvc3控制器向数据库提交计算值

时间:2012-10-04 10:23:43

标签: c# asp.net-mvc-3

我想知道我想要做什么在MVC3控制器中是可行的。我有3张桌子;会员,付款和paycategory。我在类别表(CatA,CatB和CatC)中有3种不同的付款类别。在付款视图中是用于接受会员ID和付款值(十进制)的表单。我希望做的是当一个值通过表单传递给控制器​​时,该值按比例分为3,每个类别的值为计算值,并且相同的成员Id将提交给数据库。例如,如果CatA为30%,CatB为50%且CatC为20%且成员Id为1010且100.00传递给控制器​​,则应将以下内容提交给数据库

  

pId | mId | catid |值

     

1 | 1010 | 1 | 30.00

     

2 | 1010 | 2 | 50.00

     

3 | 1010 | 3 | 20.00

任何形式的任何线索或帮助都将非常感激。 控制器

    // POST: /AutoPay/Create
    [HttpPost]
    public ActionResult Create(AutoPay autopay, int tcd, int id, int tzid, FormCollection formCollection)
    {
        if (ModelState.IsValid)
        {

         string[] rawpaysplit = formCollection["PayCatSplit"].Split(' ');
          foreach (var x in rawpaysplit){             

          if (x.Equals (rawpaysplit[0])){
          autopay.PId = 3;}
          if (x.Equals (rawpaysplit[1])){
          autopay.PId = tzid;}   
          if (x.Equals (rawpaysplit[2])){
          autopay.PId = 4;}
          autopay.Pay= Convert.ToDecimal(x);
          autopay.UId = id;
          autopay.Tcd = tcd;
          autopay.PDate = DateTime.Now;
          autopay.LastUpdate = DateTime.Now;
            autopay.PEntryId = Membership.GetUser().UserName;
            db.AutoPays.Add(autopay);

            db.SaveChanges();
 }
            return RedirectToAction("Index");
        }

模型

 public class AutoPay
{
    [Key]
    public int Id { get; set; }

    public int? Tcd { get; set; }
    public int UId { get; set; }
    public virtual Member Member { get; set; }
    public int PId { get; set; }
    public virtual PayCat PayCat { get; set; }
    public int YId { get; set; }
    public virtual DateYear DateYear { get; set; }
    public int MId { get; set; }
    public virtual DateMonth DateMonth { get; set; }
    [DisplayFormat(DataFormatString = "{0:F2}", ApplyFormatInEditMode = true)]
    [DisplayName("Amount")]
    public decimal Pay { get; set; }
    [ScaffoldColumn(false)]
    public DateTime PDate { get; set; }
    [DisplayName("Entry By")]
    public string PEntryId { get; set; }
    [DisplayName("last Upadated By")]
    public string PUpdatedBy { get; set; }
    [DisplayName("Receipt No")]
    public string RecNo { get; set; }
    [DisplayName("Book No")]
    public int BId { get; set; }
    public virtual ReceiptBook ReceiptBook { get; set; }
    public bool POK { get; set; }
    [ScaffoldColumn(false)]
    public DateTime LastUpdate { get; set; }
    public string PayCatSplit
    {
        get { return string.Format("{0} {1} {2}", Math.Round((this.Pay * 0.773211m), 2), Math.Round((this.Pay * 0.123703m),2), Math.Round((this.Pay * 0.103086m))); }
    }

我在查询字符串中传递了很多变量,以减少视图表单中的字段数。 我设法做了这个编码,但它跳过了前两个值,只保存了数据库中最后一个正确的条目。我需要专家帮助

1 个答案:

答案 0 :(得分:0)

当然你可以做到。在MVC上,您可以执行通常可以在其他框架上执行的任何编程。

但是,MVC模式的范例要求您以不同的方式思考如何在更直接的框架上完成它。

在这里,我会给你一些提示。不要使用控制器进行计算或数据处理。只需使用模型类来执行此操作并使控制器调用该类并使用它,尝试将控制器维护为专用于在视图和模型类之间分配程序执行和数据的方法,让这些工作持续进行。

因此,当然,您可以将视图中的任何数据传递给控制器​​,使用控制器将此值传递给模型类,您可以在模型类中对数据进行任何计算或操作,并将其保存到数据库中。 / p>