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