I have an abstract entity base class defined like this:

public abstract class SessionItem : Entity
{
    public virtual Session Session { get; set; }
}

In addition, I'm using auto mapping:

private AutoPersistenceModel CreateAutomappings()
{
    return AutoMap
        // configuration
        .Conventions.Add(DefaultCascade.All())
        // more configuration
}

SessionItem has several derived classes/tables, and I'd like to override the cascading policy for all of them. I tried the following:

public class SessionItemAutommapingOverride : IAutoMappingOverride<SessionItem>
{
    public void Override(AutoMapping<SessionItem> mapping)
    {
        mapping.References(x => x.Session).Cascade.None();
    }
}

But unfortunately the override is not called since SessionItem is abstract (and is not mapped). I prefer to avoid overriding it for each subclass (using IAutoMappingOverride).

Is there any way to override cascading for multiple types, without using IAutoMappingOverride<> for each one?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted
public class SessionReferenceCascadeNone : IReferenceConvention, IReferenceConventionAcceptance
{
    public void Accept(IAcceptanceCriteria<IManyToOneInspector> criteria)
    {
        criteria.Expect(x =>
            typeof(SessionItem).IsAssignableFrom(x.EntityType) &&
            x.Property.PropertyType == typeof(Session));
    }

    public void Apply(IManyToOneInstance instance)
    {
        instance.Cascade.None();
    }
}
link|improve this answer
feedback

Apparently this is possible by using IReferenceConvention:

public class CascadeNoneOverrideConvention : IReferenceConvention
{
    public void Apply(IManyToOneInstance instance)
    {
        // override
    }
}
link|improve this answer
shit i knew i shouldnt do lunch before submit the answer ^^ – Firo Jan 11 at 13:03
I'll accept it anyway :) – kshahar Jan 11 at 13:12
@kshahar - +1. Your solution seems simpler, but it's not clear to me how you would use this convention with the classes you wished to apply it to. If you have time, could you expand on the sample code a little bit? – Tom Bushell Jan 12 at 15:43
@TomBushell - thanks, as a matter of fact it's the same solution, I just omitted the Accept part. To check against more than one type, I keep a list of types and traverse them inside Expect. – kshahar Jan 16 at 11:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.