Question

I'm wondering what's good out there for AOP / crosscutting in .Net, along the lines of AspectJ. I see Microsoft has a Policy Injection Application Block; any other good stuff out there I should take a look at?

Was it helpful?

Solution

PostSharp is probably the most popular option, although I believe Sprint.NET is fairly widespread, as well.

OTHER TIPS

I use Microsoft Unity but there is also StructureMap, Spring.NET, Castle Windsor and, the most popular, PostSharp.

Let's not forget LinFU. Scott Hanselman did a great interview about it, including a lot of basics of AOP.

I know of PostSharp which seems to be doing a lot of AOP-things really well using attributes.

Spring.Net has an AOP framework which can be used with or without Spring's IoC framework. If you are also looking for an IoC framework, Spring.Net makes a compelling case and is free and open source.

Another plus for Spring.Net IMO is that the documentation and forum support really is excellent. One negative comment about Spring.Net that I have seen several times is that the XML configuration is wordy and difficult to read, which is true. It is however at least consistent so that once you have learned how it works for one block, you can apply it easily to other blocks.

Delphi Prism has compiler support for AOP

http://prismwiki.codegear.com/en/Cirrus

Interception extension for Microsoft Unity gives you some AOP. In addition, see Policy Injection as one of the out-of-the-box interception behaviours.

Good examples and tutorials are included in this set of Hands-on Labs.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top