AOP programming in .Net? [closed]
Asked Answered
M

7

1

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?

Masonry answered 9/1, 2010 at 0:54 Comment(1)
Have a look at this list: en.wikipedia.org/wiki/Aspect-oriented_programming#cite_note-5Banc
F
4

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

Frustum answered 9/1, 2010 at 0:58 Comment(1)
Here's a link to my notes on an AOP/PostSharp presentation by Michael Hall, if anyone's interested: truewill.net/iacodecamp2009/hall.htmReneerenegade
H
2

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

Hypotenuse answered 9/1, 2010 at 0:58 Comment(2)
PostSharp is certainly AOP, but I'd call Unity and StructureMap IoC Container frameworks. Windsor and Spring do IoC and more, I think.Reneerenegade
Both Unity an StructureMap have capabilities for AOP (see the links I provided for some examples). Depending on the problem trying to be solved, they are viable solutions.Hypotenuse
F
2

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

Figurehead answered 14/1, 2011 at 0:23 Comment(0)
R
1

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

Rupture answered 9/1, 2010 at 0:58 Comment(0)
V
1

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.

Veroniqueverras answered 13/4, 2010 at 9:50 Comment(0)
S
0

Delphi Prism has compiler support for AOP

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

Subrogate answered 9/1, 2010 at 2:9 Comment(0)
C
0

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.

Courtroom answered 9/4, 2011 at 19:31 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.