문제

Say I have:

[Attribute1(Order=0)]  
public class Controller1  
{  
    [Attribute2]  
    [Attribute3]  
    public ActionResult Action1() { ... }  
}

The attributes get executed in the following order: 2, 3, 1

This makes sense because attributes 2 and 3 have an order of -1 and will be executed before attribute 1 which has an explicitly set order equal to 0.

Now, lets say I have:

[Attribute1]  
[Attribute2(Order=0)]  
public class Controller1  
{  
    [Attribute3]  
    public ActionResult Action1() { ... }  
}

The attributes get executed in the following order: 1, 2, 3

Why is it that attribute 2 in this case (which has an order equal to 0) is executed before attribute 3 (which has an order equal to -1)?

도움이 되었습니까?

해결책

They should be executed in the order 1, 3, 2, just as you had proposed. And in fact, they execute in the correct order on my machine.

Can you provide the definitions of your three attributes? There might be something else in play here.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top