Uebungsaufgaben/Semester3/DotNET/Aufgabenblatt5/Aufgabe14/ApplicationDbContext.cs
2024-12-19 23:55:07 +01:00

16 lines
400 B
C#

using Microsoft.EntityFrameworkCore;
namespace Aufgabe14;
public class ApplicationDbContext : DbContext
{
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder.UseSqlite($"Data Source=CustomerSample.db3");
}
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<Customer>();
}
}