Changeset d025ba3 for iknow-api/Data
- Timestamp:
- 10/22/25 13:20:23 (11 months ago)
- Branches:
- master
- Children:
- 5b42c8d
- Parents:
- 5aa102d (diff), 9a57e89 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- iknow-api/Data
- Files:
-
- 1 deleted
- 1 edited
-
AppDbContext.cs (modified) (1 diff)
-
AppDbContextFactory.cs (deleted)
Legend:
- Unmodified
- Added
- Removed
-
iknow-api/Data/AppDbContext.cs
r5aa102d rd025ba3 1 1 using Microsoft.EntityFrameworkCore; 2 using iknow_api. Models;2 using iknow_api.Core.Models; 3 3 4 public class AppDbContext : DbContext 4 namespace iknow_api.Core.Data 5 5 { 6 public AppDbContext(DbContextOptions<AppDbContext> options) 7 : base(options) { } 6 public class AppDbContext : DbContext 7 { 8 public AppDbContext(DbContextOptions<AppDbContext> options) 9 : base(options) { } 8 10 9 public DbSet<Users> Users { get; set; } 11 public DbSet<User> User { get; set; } 12 } 10 13 }
Note:
See TracChangeset
for help on using the changeset viewer.
