Cascade Delete

  • I am trying to Implement Cascade delete but getting Error in the Calling C# code. Attached is how my table looks like. Any help will be appreciate. I am Implementing the delete with MVC C#

    private void DeleteNewsFeed(int p)

    {

    try

    {

    var feeds = _uow.RepositoryAsync<Feed>().Find(p);

    if (feeds == null) return;

    _uow.RepositoryAsync<Feed>().Delete(feeds);

    _uow.SaveChanges();

    }

    catch (Exception ex)

    {

    ControllerProvider.ProcessDataAccessLayerException(ex);

    ControllerUnHandledExp.LogError(ex);

    throw;

    }

    }

  • Duplicate post. No replies please.

    Replies to http://www.sqlservercentral.com/Forums/Topic1798746-2799-1.aspx

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply