Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi i am trying to do a cascade delete using Linq-To-Sql entities.(The cascading in Database is disabled, and cannot be enabled due to some db policy.)

I have generated the entities using Sqlmetal. The mappings are there in a different XML file. i have not messed with the context and the entity classes, and the xml created by SqlMetal. So they remain as it is. No stored procedures are being used. The entities go deep to at least 5 levels. They exactly map to the under lying tables as given below, where arrows show the master-detail relations. The arrow-head pointing to the master table.

enter image description here

I also created a repository class to handle add delete etc. given below:

public class Repository <T> : IRepository<T> where T: class
{
    #region Private Data members

    private readonly DataContext _dataContext;

    #endregion

    #region Constructors 


    public Repository (DataContext dataContext)
    {
        _dataContext = dataContext;
    }

    #endregion

    #region Implementation of IRepository<T>


    public void Commit()
    {
        _dataContext.SubmitChanges();
    }

    public void Delete(T item)
    {
        var table = LookupForTable(typeof(T));
        table.DeleteOnSubmit(item);
    }

    public void Delete(IQueryable<T> items)
    {
        var table = LookupForTable(typeof (T));
        table.DeleteAllOnSubmit(items);
    }

    public IQueryable<T> Find()
    {
        var table = LookupForTable(typeof(T));
        return table.Cast<T>();
    }

    public IList<T> FindAll()
    {
        var table = LookupForTable(typeof(T));
        return table.Cast<T>().ToList();
    }

    public void Add(T item)
    {
        var table = LookupForTable(typeof(T));
        table.InsertOnSubmit(item);
    }

    #endregion

    #region Private methods

    private ITable LookupForTable(Type entityType)
    {
        return _dataContext.GetTable(entityType);
    }

    #endregion 
}

I also created some extension methods for filtering inside the level classes. Something like this:

public static Level_1 ByLevelId(this IQueryable<Level_1> entities, int levelId)
{
    return entities.FirstOrDefault(e => e.LevelId == levelId);
} 

public static IQueryable<Level_1> ByActiveStatus(this IQueryable<Level_1> entities, bool activeStatus)
{
    return entities.Where(e => e.Active == activeStatus);
}

Now my problem is cascade delete. If i am trying to delete an Level_1 entity i would like to have all the entities/records below get deleted.

One option is to get all the related entities based on the corresponding id's and then delete from bottom up. But i am looking for more compact and precise solution, so that i can start deleting from any level and the levels below it are take care of.

I tried to put some logic in the partial method (for each level) generated in the DataContext class by SqlMetal. for e.g.

   partial void DeleteLevel_1(Level_1 instance)
    {
        var repo = new Repository<Level_2>(this);
        repo.Delete(instance.Level_2.AsQueryable());
    }

So when i call delete on a particular instance of Level_1:

    [TestMethod]
    public void DeleteSpanFileTest()
    {
        const int levelId = 13;

        var repository = new Repository<Level_1>(_dbContext);
        var level1 = repository.Find().ByLevelId(levelId);
        repository.Delete(level1);
        repository.Commit(); // SubmitChanges() are called here.
     }

Once the SubmitChanges is called on the data context, the partial method DeleteLevel_1 is called. I was hoping that subsequent implementations of DeleteLeve_x methods would be called. But I get the following error:

The operation cannot be performed during a call to SubmitChanges.

What am i doing wrong here? Is there a better way of doing it (without enabling cascade in Sql server db).

Any help or guidance would be greatly appreciated.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.