vote up 1 vote down star
1

Are there any frameworks out there that allow for data-driven dependency injection (ideally in .NET)? I'm thinking something inspired by Spring.NET for example, where you configure your object graphs in structured database tables, rather than using an XML config file. What would be the pros and cons of configuring your application in the database rather than an XML file?

flag

have you looked an Ninject? Not sure if it does what you want, but it's pretty configurable. – Robert Jun 2 at 4:40
Ninject uses a fluent interface instead of XML. It sounds intriguing. Robert, post an answer so you can get points! – Robert Harvey Jun 2 at 5:09

2 Answers

vote up 1 vote down check

Here is a list of .Net IOC Frameworks

and one right out microsoft's patterns and practices that I like... Unity

link|flag
Thanks for the link, I'll look into those – Andy White Jun 11 at 7:27
vote up 1 vote down

Autofac has the concept of modules, which allow you to conditionally configure the registrations in the container.

Modules also allow re-use of related sets of registrations.

link|flag

Your Answer

Get an OpenID
or

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