vote up 2 vote down star
1

I would like to build an application that will run on a web, this is for an enterprise solution, but I don't know what kind of framework that I'll be using, does anyone out there could recommend a framework that is best suited in .NET/ASP.NET application that could handle DAL, BLL and GUI, other than CSLA.NET?

flag

52% accept rate
What exactly do you mean by "framework"? UI Libraries, ORM-Tools or something else? Thanks. – splattne Jan 5 '09 at 7:50
There are THOUSANDS of such frameworks out there catering to ASP.NET applications, much like it is in Java. Do you have any specific need? Dependency Injection? Unit Testing? ORM? UI? etc? – Jon Limjap Jan 5 '09 at 7:54
Better to describe what features you are seeking to implement in this enterprise-level web application. Perhaps then can better suggestions and recommendations be provided. – icelava Jan 5 '09 at 8:31
Better edit your question than commenting about it. – John Jan 5 '09 at 9:04

6 Answers

vote up 5 vote down check

If you are looking for something like a .NET equivalent of JBoss, then no, there isn't one product that provides a do-all framework in the .NET world.

However, there are lots of products, mostly on the .NET 3.5 stack itself that can be pieced together to provide a solid framework.

  • Windows Communication Foundation (networking);
  • Windows Workflow Foundation (work flow);
  • Enterprise Library Application Blocks (Caching, Logging etc.);

Object Relatation Mapper

  • Entity Frameworks;
  • NHibernate;
  • LLBLGen

Inversion of control / dependency injection

link|flag
MEF is not an IoC container, it is an extensibility framework. The Castle project is more then IoC, Castle Windsor is their container. – Matt Briggs Jan 5 '09 at 13:35
@Matt: Edit as fit please. I see you have the 750 reps required. – biozinc Jan 5 '09 at 23:15
vote up 1 vote down

Actually .netTiers generates besides the dal some bll and some user controls/web pages. So I think it is the closest to what you are searching.

I personally use subsonic, because:

  • it uses ActiveRecord pattern which I like (it's simple and easy)
  • is lightweight
  • creates scavenger pages out of the box... (so some UI :) )
link|flag
vote up 0 vote down

I would add Managed Extensibility Frameworks (MEF) to any Enterprise .NET project I was starting.

link|flag
vote up 0 vote down

Another good OR mapper is LLBLGen.

link|flag
vote up 0 vote down

Another alternative ioc container is Castle Project.

link|flag
vote up 1 vote down

Hi,

@biozinc's suggestions all look good, I would just add the inversion of control/dependency injection options too, like:

link|flag

Your Answer

Get an OpenID
or

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