Ater.Web.template
is an out-of-the-box solution template based onASP.NET Core
,Entity Framework
, and .NET Aspire
, combined with a large number of project practices to help new and old developers quickly develop application services.
Another Framework
, and it is extremely versatile.nuget package
, transparency and focus.Summary: simple, universal, practical!
Entity Framework
, and if you don't use it, you won't enjoy the convenience.minimalAPI
style..NET 8.0
, and older versions do not apply.Note
Using this set of templates and development tools, your development work will be simple and orderly, with a business implementation you only need to:
premise
.NET SDK 8.0
Install using dotnet new
command.
dotnet new install ater.web.templates
After installation, you can create a project using the command or by selecting Create via VS's graphical interface (recommended).
dotnet new atapi -n my-project
Go to Http.API
project and configure the database connection string in appsetings.json
Tip
PostgreSQL
is used by default. Please change it according to your actual needs.
ater.dry
is an intelligent code assistance tool, mainly provides code generation function, it can analyze your entity, intelligently help you generate related data transfer objects, database read and write operations and API interfaces. It is provided by dotnet
command-line tools, while providing Web UI interface, can save a lot of development time, strongly recommended installation use!
dotnet tool install --global ater.dry
Tip
This tool provides out-of-the-box support for Ater.Web
templates!
🎉Congratulations on the successful completion of the project creation, to understand the project structure!