WCF数据服务SaveChanges():“找不到该段的资源”

时间:2010-06-21 15:46:38

标签: c# asp.net-mvc-2 wcf-data-services

当我尝试编辑Duty对象时,我的控制器ctx.SaveChanges();中的行DutyController.cs会抛出以下异常。

System.Data.Services.Client.DataServiceClientException:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
  <code></code>
  <message xml:lang="en-US">Resource not found for the segment 'Duty'.</message>
</error>

我的编辑职责视图包含一个场合下拉列表。 OccasionId guid在提交时成功绑定到Duty模型。

模型\ Duty.cs

[MetadataType(typeof(DutyMetadata))]
public partial class Duty
{
    private class DutyMetadata
    {
        ...

        [Required]
        [UIHint("OccasionId")]
        [Display(Name = "Occasion")]
        public object OccasionId { get; set; }
    }
}

视图\占空比\ Edit.aspx

<%: Html.EditorForModel() %>

视图\共享\ DisplayTemplates \ OccasionId.ascx

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<Guid>" %>
<%: Html.DropDownList(string.Empty, new SelectList(ViewData["occasions"] as IEnumerable<Web.VolunteerData.Occasion>, "Id", "Designation", Model), "Select Occasion")%>

控制器\ DutyController.cs

//
// GET: /Duty/Edit/5

public ActionResult Edit(Guid id)
{
    var Model = (from Duty d in ctx.Duties where d.Id == id select d).Single();
    ViewData["occasions"] = from Occasion o in ctx.Occasions orderby o.Designation select o;
    return View(Model);
}

//
// POST: /Duty/Edit/5

[HttpPost]
public ActionResult Edit(Duty Model)
{
    ctx.AttachTo("Duty", Model);
    ctx.UpdateObject(Model);
    ctx.SaveChanges();
    return RedirectToAction("Index");
}

为什么SaveChanges()导致“找不到段的资源...”异常?

我有更好的方法来做我想做的事吗?

1 个答案:

答案 0 :(得分:4)

我认为这是另一个问题的副本,但无论如何。问题出在AttachTo调用中。该方法的第一个参数是实体集的名称(不是实体类型)。在您的情况下,实体集似乎被称为“职责”。因此,只需使用“职责”作为AttachTo的参数即可。 下次请发布整个异常消息,因为它很可能包含违规“分段”的名称,并会使问题更加清晰。