source:
iknow-api/Data/AppDbContext.cs@
aed1148
| Last change on this file since aed1148 was 9694de9, checked in by , 11 months ago | |
|---|---|
|
|
| File size: 301 bytes | |
| Rev | Line | |
|---|---|---|
| [618be76] | 1 | using Microsoft.EntityFrameworkCore; |
| [9694de9] | 2 | using iknow_api.Core.Models; |
| [618be76] | 3 | |
| [9694de9] | 4 | namespace iknow_api.Core.Data |
| [618be76] | 5 | { |
| [9694de9] | 6 | public class AppDbContext : DbContext |
| 7 | { | |
| 8 | public AppDbContext(DbContextOptions<AppDbContext> options) | |
| 9 | : base(options) { } | |
| [618be76] | 10 | |
| [9694de9] | 11 | public DbSet<User> User { get; set; } |
| 12 | } | |
| 13 | } |
Note:
See TracBrowser
for help on using the repository browser.
