2013-10-08 61 views
2

这是我的模型:如何在MVC4中创建自定义删除操作结果?

public class StockLine : Keyed 
{ 
    /.../ 

    /// <summary> 
    /// Reference to the delivery note line that created the current stock line. 
    /// </summary>  
    [Navigation] 
    [Display(ResourceType = typeof(Resources.ApplicationResources), Name = "DeliveryNoteLine")] 
    public virtual DeliveryNoteLine DeliveryNoteLine { get; set; } 

} 

一个料线可能与它对应的DeliveryNoteLine。

我想实现的是,当您删除DeliveryNoteLine,它也必须删除其相应的StockLine。但我不知道如何做到这一点。

这是我的控制器:

/// <summary> 
/// Returns the default Delete view for the TEntity object. 
/// </summary> 
/// <param name="id">Id of the TEntity object to delete.</param> 
/// <returns>Redirection to the Index action if an error occurred, the Delete View otherwise.</returns> 
public virtual ActionResult Delete(string id) 
{ 
    var request = new RestSharp.RestRequest(Resource + "?id={id}", RestSharp.Method.GET) { RequestFormat = RestSharp.DataFormat.Json } 
     .AddParameter("id", id, RestSharp.ParameterType.UrlSegment); 
    var response = Client.Execute(request); 

    // Deserialize response 
    var model = DeserializeResponse<TEntity>(response); 
    HandleResponseErrors(response); 

    if (Errors.Length == 0) 
     return View(model); 
    else 
    { 
     ViewBag.Errors = Errors; 
     return RedirectToAction("Index"); 
    } 
} 

/// <summary> 
/// Handles the POST event for the Delete action. 
/// </summary> 
/// <param name="id">Id of the TEntity object to delete.</param> 
/// <param name="model">TEntity object to delete.</param> 
/// <returns>Redirection to the Index action if succeeded, the Delete View otherwise.</returns> 
[HttpPost] 
public virtual ActionResult Delete(string id, TEntity model) 
{ 
    var request = new RestSharp.RestRequest(Resource + "?id={id}", RestSharp.Method.DELETE) { RequestFormat = RestSharp.DataFormat.Json } 
     .AddParameter("id", id, RestSharp.ParameterType.UrlSegment); 
    var response = Client.Execute(request); 

    // Handle response errors 
    HandleResponseErrors(response); 

    if (Errors.Length == 0) 
     return RedirectToAction("Index"); 
    else 
    { 
     request = new RestSharp.RestRequest(Resource + "?id={id}", RestSharp.Method.GET) { RequestFormat = RestSharp.DataFormat.Json } 
      .AddParameter("id", id, RestSharp.ParameterType.UrlSegment); 
     response = Client.Execute(request); 
     model = DeserializeResponse<TEntity>(response); 

     ViewBag.Errors = Errors; 
     return View(model); 
    } 
} 

任何想法?

回答

0

我解决这样说:

StockLinesController.cs

/// <summary> 
/// Service returning API's StockLine that matches the given DeliveryNote id. 
/// </summary> 
/// <param name="DeliveryNoteLineId">The id of the DeliveryNoteLine that created the StockLine</param> 
/// <returns>Returns the StockLine created by the given DeliveryNoteLine</returns> 
public ActionResult GetStockLine(string DeliveryNoteLineId) 
{ 
    // Only perform the request if the data is outdated, otherwise use cached data. 
    if (DateTime.Now.AddMinutes(-10) > _cacheStockLines_lastCall.GetValueOrDefault(DateTime.MinValue)) 
    { 
     var request = new RestSharp.RestRequest("StockLines/Get", RestSharp.Method.GET) { RequestFormat = RestSharp.DataFormat.Json }; 
     var response = Client.Execute(request); 
     _cacheStockLines = DeserializeResponse<List<StockLine>>(response); 
     _cacheStockLines_lastCall = DateTime.Now; 
    } 

    // Return the stock line created by the delivery note line introduced my parameter 
    var ret = _cacheStockLines 
     .Where(x => (x.DeliveryNoteLine != null && x.DeliveryNoteLine.Id == DeliveryNoteLineId)) 
     .Select(x => new { label = "ID", value = x.Id }); 

    return Json(ret, JsonRequestBehavior.AllowGet); 
} 

DeliveryNoteLinesController.cs

/// <summary> 
/// Handles the POST event for the Delete action. 
/// </summary> 
/// <param name="id">Id of the TEntity object to delete.</param> 
/// <param name="model">TEntity object to delete.</param> 
/// <returns>Redirection to the Index action if succeeded, the Delete View otherwise.</returns> 
[HttpPost] 
public override ActionResult Delete(string id, DeliveryNoteLine model) 
{ 
    //This code deletes the StockLine 
    var stocks_request = new RestSharp.RestRequest("GetStockLine?DeliveryNoteLineId={id}", RestSharp.Method.GET) { RequestFormat = RestSharp.DataFormat.Json } 
     .AddParameter("id", id, RestSharp.ParameterType.UrlSegment); 
    var stocks_response = Client.Execute(stocks_request); 
    var stockline = DeserializeResponse<StockLine>(stocks_response); 
    var reqdelstk = new RestSharp.RestRequest("StockLine?id={id}", RestSharp.Method.DELETE) { RequestFormat = RestSharp.DataFormat.Json } 
     .AddParameter("id", stockline.Id, RestSharp.ParameterType.UrlSegment); 
    var resdelstk = Client.Execute(reqdelstk); 

    //This code deletes the DeliveryNoteLine 
    var request = new RestSharp.RestRequest(Resource + "?id={id}", RestSharp.Method.DELETE) { RequestFormat = RestSharp.DataFormat.Json } 
     .AddParameter("id", id, RestSharp.ParameterType.UrlSegment); 
    var response = Client.Execute(request); 

    // Handle response errors 
    HandleResponseErrors(response); 

    if (Errors.Length == 0) 
     return RedirectToAction("Index"); 
    else 
    { 
     request = new RestSharp.RestRequest(Resource + "?id={id}", RestSharp.Method.GET) { RequestFormat = RestSharp.DataFormat.Json } 
      .AddParameter("id", id, RestSharp.ParameterType.UrlSegment); 
     response = Client.Execute(request); 
     model = DeserializeResponse<DeliveryNoteLine>(response); 

     ViewBag.Errors = Errors; 
     return View(model); 
    } 
} 
-1

我想这有两种方法。

1)在你的API,你处理这双重缺失与单个请求删除DeliveryNoteLine,或

2)你让两个API请求删除1日料线和2号DeliveryNoteLine

似乎通过你正在做的代码2号

如果是这样的话,我认为第一次调用中的“资源”参数必须不同?

+0

我想做你所提到的,但我不能够获得StockLine的DeliveryNoteLine_Id属性,所以即使更改资源参数也无法删除它eter,这应该是“StockLines”。 – Kutyel

+0

难道你不能通过第一个模型的导航属性? –

+0

我不行。如果我尝试浏览delete action结果方法中的模型属性,它只有两个:Id和DateCreated。如果我只能从stocklines控制器中检索到股票行的参考或交货单行,我可以毫无问题地将其删除,但是我不能。 – Kutyel

相关问题