在数据库+ MVC4中创建新记录时出现问题

时间:2013-07-04 05:03:16

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

我在数据库中有两个表PartyRole和PartyRoleType,其应用中的模型是:

成员角色:

 public partial class PartyRole : ILockable, IAuditable, IOverTime
{
    /*** Construtor(s) ***/
    public PartyRole()
    {
    }

    public PartyRole(PartyRoleType obj)
        : this()
    {
        PartyRoleType = obj;
    }

    /*** Public Members ***/
    [Key, Display(Name = "Id")]
    public int PartyRoleId { get; set; }

    [Required]
    public int PartyRoleTypeId { get; set; }

    [Required]
    public int PartyId { get; set; }


    /* IOverTime */
    [Required, Display(Name = "From")]
    public System.DateTimeOffset FromDate { get; set; }

    [Display(Name = "Thru")]
    public Nullable<System.DateTimeOffset> ThruDate { get; set; }


    /* Navigation Properties */

    /// <summary>
    /// Foreign key to PartyRoleType: PartyRoleTypeId
    /// </summary>
    public virtual PartyRoleType PartyRoleType { get; set; }
}

PartyRoleType:

public partial class PartyRoleType : ILockable, IAuditable, IEntity
{
    /*** Construtor(s) ***/
    public PartyRoleType()
    {
        PartyRoleTypePartyRoles = new List<PartyRole>();
    }


    /*** Public Members ***/
    [Key, Display(Name = "Id")]
    public int PartyRoleTypeId { get; set; }


    /* IEntity */
    public string Caption { get; set; }

    public string NameInUse { get; set; }

    public string Description { get; set; }

    /* Navigation Properties */

    /// <summary>
    /// Foreign key from PartyRole: PartyRoleTypeId
    /// </summary>
    public virtual ICollection<PartyRole> PartyRoleTypePartyRoles { get; set; }
}

我们正在使用单元工作和存储库模式与数据库进行通信。

我将显示一个屏幕(基本上是MVC视图)来创建新的聚会角色或编辑固定聚会角色。

采取创建新的党角色的方案。我将填写FromDate&amp; ThruDate和我将选择它将属于PartyRoleType下拉列表的PartyRoleType,并点击保存。

我收到一个错误,即需要PartyRoleType Caption,NameInUse等。我从PartyRoleType模型中删除了所需的数据注释,因为我们不会从UI中填充类型表。

该错误消失了,但是我收到另一个错误,它无法将空值插入标题名称等等。

基本上发生的事情是如果我正在尝试创建一个新的PartyRole,unitofwork也试图在PartyRoleType中创建记录。 我认为它也试图在其所有孩子身上创造记录,而且不应该发生。

有人可以建议如何处理这个或我在这里做错了吗?

我的控制器:

    [HttpPost]
    public ActionResult Create(PartyRole obj)
    {
        obj.Party.PartyId = obj.PartyId;
        obj.PartyRoleType.PartyRoleTypeId = obj.PartyRoleTypeId;

        if (ModelState.IsValid)
        {
            PartyRoleRepo.Create(obj);
            UnitOfWork.Save();
            return RedirectToAction("List");
        }
        else
        {
            ViewBag.PossiblePartyRoleTypes = PartyRoleTypeRepo.All();
            ViewBag.PossibleParties = PartyRepo.All();
            return View();
        }
    }

填充PartyRoleTypes的代码:

<div class="l">
PartyRoleType
@(Html.DropDownListFor(O =>
    O.PartyRoleTypeId,
     ((IEnumerable<PartyBiz.Models.Objects.PartyRoleType>)ViewBag.PossiblePartyRoleTypes)
        .Select(OPT =>
            new SelectListItem
            {
                Text = (OPT == null ? "None" : OPT.Caption),
                Value = OPT.PartyRoleTypeId.ToString(),
                Selected = (Model != null) && (OPT.PartyRoleTypeId == Model.PartyRoleTypeId)
            }
        ),
        "Choose...",
        new { @class = "combo"}
    )
)
@Html.ValidationMessageFor(o => o.PartyRoleTypeId)
</div>

2 个答案:

答案 0 :(得分:0)

为什么不将一些虚拟PartyRoleTypes插入数据库?看起来你正试图在马前插入购物车(除非我误解 - 你在PartyRoleType中有数据吗?)。在你的PartyRole课上你有:

[Required]
public int PartyRoleTypeId { get; set; }

因此必须至少定义一个PartyRoleType。至于为什么它试图为你插入一个我不确定 - 但是当我有这样的关系时 - 我总是插入一些虚拟类型来引用。

接下来,在您发表评论之后,我发现这不是问题。

这里发生了什么:

obj.Party.PartyId = obj.PartyId;
obj.PartyRoleType.PartyRoleTypeId = obj.PartyRoleTypeId;

obj是PartyRole类型,在你的PartyRole类中我看不到Party的定义。那你怎么设置obj.Party.PartyId? PartyRole类是否将一些视图模型传递给Action方法?

答案 1 :(得分:0)

我们需要将null传递给PartyRole的PartyRoleType属性,以便不创建子节点。 :)