Asp Net Core: Unterschied zwischen den Versionen

Aus ahrensburg.city
Zur Navigation springen Zur Suche springen
// via Wikitext Extension for VSCode
// via Wikitext Extension for VSCode
Zeile 36: Zeile 36:
     options.UseNpgsql(connectionString));
     options.UseNpgsql(connectionString));
</pre>
</pre>
In Konsole ausführen
<pre>
<pre>
dotnet add package Npgsql.EntityFrameworkCore.PostgreSQL  
dotnet add package Npgsql.EntityFrameworkCore.PostgreSQL  

Version vom 14. Oktober 2024, 09:44 Uhr

Asp Net Core ist ein Open-Source-Framework von Microsoft, das zum Erstellen von Webanwendungen und Webdiensten verwendet wird. Es wurde entwickelt, um die Leistung und Skalierbarkeit von Webanwendungen zu verbessern, indem es eine modulare Architektur und eine Vielzahl von Funktionen und Tools bietet.

Ubuntu 24.04 Installation

Um Asp Net Core auf Ubuntu 24.04 zu installieren, müssen Sie zunächst das .NET SDK installieren. Dies kann über das Terminal mit dem folgenden Befehl erfolgen:

sudo apt-get update && \
  sudo apt-get install -y dotnet-sdk-8.0
dotnet tool install --global dotnet-ef
dotnet tool install --global dotnet-aspnet-codegenerator
echo 'export PATH=$HOME/.dotnet/tools:$PATH' >> ~/.bashrc
source ~/.bashrc

Visual Studio Code Erweiterungen

code --install-extension ms-dotnettools.csdevkit
code --install-extension kreativ-software.csharpextensions

Asp Net Core Grundlagen lernen

mvc

dotnet new mvc -n Website -au Individual
cd Website

Zeile Hinzufügen in assappsettings.json

"ConnectionStrings": {
     "PostgresConnection": "Host=localhost;Port=5432;Database=thorsten;Username=thorsten;Password=Test"
  },
  
 Zeile Hinzufügen in ConfigureServices in program.cs
  var connectionString = builder.Configuration.GetConnectionString("PostgresConnection") ?? throw new InvalidOperationException("Connection string 'PostgresConnection not found.");
builder.Services.AddDbContext<ApplicationDbContext>(options =>
    options.UseNpgsql(connectionString));

In Konsole ausführen

dotnet add package Npgsql.EntityFrameworkCore.PostgreSQL 
dotnet add package Npgsql.EntityFrameworkCore.PostgreSQL.Design 
dotnet add package Microsoft.EntityFrameworkCore.Design
dotnet add package Microsoft.VisualStudio.Web.CodeGeneration.Design
dotnet add package Microsoft.EntityFrameworkCore.Tools
dotnet add package Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite

dotnet ef dbcontext scaffold Name=PostgresConnection Npgsql.EntityFrameworkCore.PostgreSQL -o Models


Weblinks