Connect an Entity Framework application to Neon
Set up a Neon project in seconds and connect from an Entity Framework application
This guide describes how to create a Neon project and connect to it from an Entity Framework Core application. The example demonstrates how to set up a basic ASP.NET Core Web API project with Entity Framework Core using Npgsql as the database provider.
note
The same configuration steps can be used for any .NET application using Entity Framework Core, including ASP.NET Core MVC, Blazor, or console applications.
To connect to Neon from an Entity Framework application:
- Create a Neon Project
- Create a .NET project and add dependencies
- Configure Entity Framework
- Run the application
Create a Neon project
If you do not have one already, create a Neon project.
- Navigate to the Projects page in the Neon Console.
- Click New Project.
- Specify your project settings and click Create Project.
Create a .NET project and add dependencies
-
Create a new ASP.NET Core Web API project and change to the newly created directory:
dotnet new webapi -n NeonEfExample cd NeonEfExample
-
Delete the files
WeatherForecast.cs
andControllers/WeatherForecastController.cs
as we won't be using them:rm WeatherForecast.cs Controllers/WeatherForecastController.cs
-
Install required packages
IMPORTANT
Ensure you install package versions that match your .NET version. You can verify your .NET version at any time by running
dotnet --version
.dotnet tool install --global dotnet-ef --version YOUR_DOTNET_VERSION dotnet add package Microsoft.EntityFrameworkCore.Design --version YOUR_DOTNET_VERSION dotnet add package Npgsql.EntityFrameworkCore.PostgreSQL --version YOUR_DOTNET_VERSION
Configure Entity Framework
-
Create a model class in
Models/Todo.cs
:namespace NeonEfExample.Models { public class Todo { public int Id { get; set; } public string? Title { get; set; } public bool IsComplete { get; set; } } }
-
Create a database context in
Data/ApplicationDbContext.cs
:using Microsoft.EntityFrameworkCore; using NeonEfExample.Models; namespace NeonEfExample.Data { public class ApplicationDbContext : DbContext { public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : base(options) { } public DbSet<Todo> Todos => Set<Todo>(); } }
-
Update
appsettings.json
/appsettings.Development.json
:Add the connection string:
{ "ConnectionStrings": { "TodoDbConnection": "Host=your-neon-host;Database=your-db;Username=your-username;Password=your-password;SSL Mode=Require" } }
-
Create a Todo controller in
Controllers/TodoController.cs
:using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; using NeonEfExample.Data; using NeonEfExample.Models; namespace NeonEfExample.Controllers { [ApiController] [Route("api/[controller]")] public class TodoController : ControllerBase { private readonly ApplicationDbContext _context; public TodoController(ApplicationDbContext context) { _context = context; } [HttpGet] public async Task<ActionResult<IEnumerable<Todo>>> GetTodos() { return await _context.Todos.ToListAsync(); } [HttpPost] public async Task<ActionResult<Todo>> PostTodo(Todo todo) { _context.Todos.Add(todo); await _context.SaveChangesAsync(); return CreatedAtAction(nameof(GetTodos), new { id = todo.Id }, todo); } } }
-
Update
Program.cs
:using Microsoft.EntityFrameworkCore; using NeonEfExample.Data; var builder = WebApplication.CreateBuilder(args); builder.Services.AddControllers(); builder.Services.AddDbContext<ApplicationDbContext>(options => options.UseNpgsql(builder.Configuration.GetConnectionString("DefaultConnection"))); builder.Services.AddEndpointsApiExplorer(); builder.Services.AddSwaggerGen(); var app = builder.Build(); app.UseSwagger(); app.UseSwaggerUI(); app.UseAuthorization(); app.MapControllers(); if (app.Environment.IsDevelopment()) { app.Run("http://localhost:5001"); } else { app.UseHttpsRedirection(); app.Run(); }
-
Create and apply the initial migration:
dotnet ef migrations add InitialCreate dotnet ef database update
Run the application
-
Start the application:
dotnet run
-
Test the connection by navigating to
http://localhost:5001/swagger
in your browser. You can use the Swagger UI to create and retrieve Todo items.
Source code
You can find the source code for the application described in this guide on GitHub.
Resources
Need help?
Join our Discord Server to ask questions or see what others are doing with Neon. Users on paid plans can open a support ticket from the console. For more details, see Getting Support.