Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a Ruby on Rails framework like equivalent for .NET development? [closed]

Answers like ASP.NET MVC or Entity Framework really aren't acceptable as they address just one aspect of the problem domain.

I'm looking for a framework ... a REAL framework that gives me the same features out of the box that Rails does. As such it should include at minimum:

  1. MVC for presentation
  2. ORM
  3. Ability to provide simple configuration for whatever environment (dev, QA, Production, etc...)
  4. Migration like functionality
  5. Ability to generate code in all layers (similar to scaffolding like behavior, etc...)
  6. Project template so as to create similar functionality as the "rails my_app" command.

Thanks.

like image 459
wgpubs Avatar asked Dec 10 '22 15:12

wgpubs


1 Answers

Yes, there's a Framework... it's called the .NET Framework.

  1. ASP.NET MVC
  2. Linq to SQL / Entity Framework
  3. .NET Configuration API (web.config)
  4. ??? (What is "migration-like functionality?")
  5. ASP.NET Dynamic Data
  6. Visual Studio Project Templates

What exactly is a "REAL" framework, beyond a set of components that interoperate to provide a comprehensive set of features? I submit that the current iteration of the .NET Framework already does exactly what you're looking for, out of the box.

like image 194
Aaronaught Avatar answered May 18 '23 19:05

Aaronaught