Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which is the real ASP.NET Boilerplate project?

Might be a dumb question for many but we are thinking of adopting ASP.NET Boilerplate for our next project. Just a bit confused as there seems to be 2 different websites for it and 2 different Git repositories.

First one is https://aspnetboilerplate.com/
and second is https://abp.io/.

Both have their own Git repositories and Stack Overflow tag. I'm totally confused as to which one is the most correct project to use.

Any guidance is much appreciated.

Many thanks.

like image 531
DP001 Avatar asked Sep 25 '19 03:09

DP001


People also ask

What is ASP Net boilerplate?

ASP.NET Boilerplate is a general purpose application framework especially designed for new modern web applications. It uses already familiar tools and implements best practices around them to provide you a SOLID development experience.

What is asp net zero framework?

What is ASP.NET Zero? ASP.NET Zero is a Visual Studio solution. It's built based on layered architecture and other software best practices. It provides a SOLID, strong and scalable solution architecture, pre-built pages and much more.

Is ASP net zero good?

ASP.NET Zero has been placed #1 on this list, with an overall rating of 4.9/5. We really appreciate our devoted customers who took the time to share their opinion about ASP.NET Zero, which has helped us receive an award by GetApp — 5 Best Application Development Tools (out of 166 apps) in 2020.


1 Answers

ABP Framework (abp.io) is a rewrite and the next version of ASP.NET Boilerplate (aspnetboilerplate.com) based on lessons learned and with less backward compatibility to maintain.

Both are actively maintained.

ASP.NET Boilerplate

  • mature framework, since February 2014
  • current version: v6.0, released November 2020
  • has commercial base solution ASP.NET Zero (aspnetzero.com)

Tech

  • monolith architecture, but supports modules
  • supports ASP.NET Core and ASP.NET MVC 5
  • supports EF Core and EF 6

ABP Framework

  • modern framework, since June 2018
  • current version: 4.0.1, released December 2020
  • also has an extended commercial edition (commercial.abp.io)

Tech

  • microservices architecture
  • supports ASP.NET Core only
  • supports EF Core and MongoDB
like image 163
aaron Avatar answered Nov 16 '22 07:11

aaron