Advertisement
wingman007

2018_DotNetProgrammingPartTime_AppDbContext.cs

Sep 25th, 2018
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.40 KB | None | 0 0
  1. ?using Microsoft.EntityFrameworkCore;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6.  
  7. namespace WebApplication1bDeletMe
  8. {
  9.     public class AppDbContext : DbContext
  10.     {
  11.         public AppDbContext(DbContextOptions options)
  12.             :base(options)
  13.         {
  14.  
  15.         }
  16.  
  17.         public DbSet<Customer> Customers { get; set; }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement