Search code examples
c#asp.net-mvcconventions

Software stack for convention based ASP.NET MVC development


Besides ASP.NET MVC's obvious conventions, what libraries do you take advantage of that minimize boot strapping, mapping objects, data access and such? I want to spend more energy developing domain logic as opposed to dealing with the details of object persistence (for example).

I have used StructureMap and NHibernate in the past to great effect. Are there other tools or other libraries I should consider that further streamline the process?


Solution

  • You can write own core of project using:

    • NHibernate - data access
    • StructureMap - IoC, bootstrapping
    • ...

    that like you want or simply use one:

    S#arp Architecture