Add specific weeks of disciplines #10
17
Persistence/Contexts/Schedule/SpecificWeekDbContext.cs
Normal file
17
Persistence/Contexts/Schedule/SpecificWeekDbContext.cs
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using Mirea.Api.DataAccess.Application.Interfaces.DbContexts.Schedule;
|
||||||
|
using Mirea.Api.DataAccess.Domain.Schedule;
|
||||||
|
using Mirea.Api.DataAccess.Persistence.EntityTypeConfigurations.Schedule;
|
||||||
|
|
||||||
|
namespace Mirea.Api.DataAccess.Persistence.Contexts.Schedule;
|
||||||
|
|
||||||
|
public class SpecificWeekDbContext(DbContextOptions<SpecificWeekDbContext> options) : DbContext(options), ISpecificWeekDbContext
|
||||||
|
{
|
||||||
|
public DbSet<SpecificWeek> SpecificWeeks { get; set; } = null!;
|
||||||
|
|
||||||
|
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||||
|
{
|
||||||
|
modelBuilder.ApplyConfiguration(new SpecificWeekConfiguration());
|
||||||
|
base.OnModelCreating(modelBuilder);
|
||||||
|
}
|
||||||
|
}
|
@ -43,6 +43,7 @@ public static class DependencyInjection
|
|||||||
services.AddDbContext<ProfessorDbContext>(dbConfig);
|
services.AddDbContext<ProfessorDbContext>(dbConfig);
|
||||||
services.AddDbContext<LessonDbContext>(dbConfig);
|
services.AddDbContext<LessonDbContext>(dbConfig);
|
||||||
services.AddDbContext<TypeOfOccupationDbContext>(dbConfig);
|
services.AddDbContext<TypeOfOccupationDbContext>(dbConfig);
|
||||||
|
services.AddDbContext<SpecificWeekDbContext>(dbConfig);
|
||||||
|
|
||||||
services.AddDbContext<UberDbContext>(dbConfig);
|
services.AddDbContext<UberDbContext>(dbConfig);
|
||||||
}
|
}
|
||||||
@ -58,6 +59,7 @@ public static class DependencyInjection
|
|||||||
services.AddScoped<IProfessorDbContext>(provider => provider.GetService<ProfessorDbContext>()!);
|
services.AddScoped<IProfessorDbContext>(provider => provider.GetService<ProfessorDbContext>()!);
|
||||||
services.AddScoped<ILessonDbContext>(provider => provider.GetService<LessonDbContext>()!);
|
services.AddScoped<ILessonDbContext>(provider => provider.GetService<LessonDbContext>()!);
|
||||||
services.AddScoped<ITypeOfOccupationDbContext>(provider => provider.GetService<TypeOfOccupationDbContext>()!);
|
services.AddScoped<ITypeOfOccupationDbContext>(provider => provider.GetService<TypeOfOccupationDbContext>()!);
|
||||||
|
services.AddScoped<ISpecificWeekDbContext>(provider => provider.GetService<SpecificWeekDbContext>()!);
|
||||||
|
|
||||||
return services;
|
return services;
|
||||||
}
|
}
|
||||||
|
@ -18,6 +18,8 @@ public class LessonAssociationConfiguration : IEntityTypeConfiguration<LessonAss
|
|||||||
builder.Property(l => l.LessonId).HasColumnType("INTEGER").IsRequired();
|
builder.Property(l => l.LessonId).HasColumnType("INTEGER").IsRequired();
|
||||||
builder.Property(l => l.ProfessorId).HasColumnType("INTEGER");
|
builder.Property(l => l.ProfessorId).HasColumnType("INTEGER");
|
||||||
builder.Property(l => l.LectureHallId).HasColumnType("INTEGER");
|
builder.Property(l => l.LectureHallId).HasColumnType("INTEGER");
|
||||||
|
builder.Property(l => l.TypeOfOccupationId).HasColumnType("INTEGER").IsRequired();
|
||||||
|
|
||||||
|
|
||||||
builder
|
builder
|
||||||
.HasOne(l => l.Lesson)
|
.HasOne(l => l.Lesson)
|
||||||
@ -36,5 +38,11 @@ public class LessonAssociationConfiguration : IEntityTypeConfiguration<LessonAss
|
|||||||
.WithMany(l => l.LessonAssociations)
|
.WithMany(l => l.LessonAssociations)
|
||||||
.HasForeignKey(l => l.LectureHallId)
|
.HasForeignKey(l => l.LectureHallId)
|
||||||
.OnDelete(DeleteBehavior.SetNull);
|
.OnDelete(DeleteBehavior.SetNull);
|
||||||
|
|
||||||
|
builder
|
||||||
|
.HasOne(l => l.TypeOfOccupation)
|
||||||
|
.WithMany(t => t.Lessons)
|
||||||
|
.HasForeignKey(d => d.TypeOfOccupationId)
|
||||||
|
.OnDelete(DeleteBehavior.Cascade);
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -16,24 +16,17 @@ public class LessonConfiguration : IEntityTypeConfiguration<Lesson>
|
|||||||
builder.Property(l => l.IsEven).HasColumnType("BIT").IsRequired();
|
builder.Property(l => l.IsEven).HasColumnType("BIT").IsRequired();
|
||||||
builder.Property(l => l.DayOfWeek).HasColumnType("INTEGER").IsRequired();
|
builder.Property(l => l.DayOfWeek).HasColumnType("INTEGER").IsRequired();
|
||||||
builder.Property(l => l.PairNumber).HasColumnType("INTEGER").IsRequired();
|
builder.Property(l => l.PairNumber).HasColumnType("INTEGER").IsRequired();
|
||||||
|
builder.Property(l => l.IsExcludedWeeks).HasColumnType("BOOLEAN");
|
||||||
|
|
||||||
builder.Property(l => l.GroupId).HasColumnType("INTEGER").IsRequired();
|
builder.Property(l => l.GroupId).HasColumnType("INTEGER").IsRequired();
|
||||||
builder.Property(l => l.TypeOfOccupationId).HasColumnType("INTEGER").IsRequired();
|
|
||||||
builder.Property(l => l.DisciplineId).HasColumnType("INTEGER").IsRequired();
|
builder.Property(l => l.DisciplineId).HasColumnType("INTEGER").IsRequired();
|
||||||
|
|
||||||
|
|
||||||
builder
|
builder
|
||||||
.HasOne(l => l.Group)
|
.HasOne(l => l.Group)
|
||||||
.WithMany(g => g.Lessons)
|
.WithMany(g => g.Lessons)
|
||||||
.HasForeignKey(d => d.GroupId)
|
.HasForeignKey(d => d.GroupId)
|
||||||
.OnDelete(DeleteBehavior.Cascade);
|
.OnDelete(DeleteBehavior.Cascade);
|
||||||
|
|
||||||
builder
|
|
||||||
.HasOne(l => l.TypeOfOccupation)
|
|
||||||
.WithMany(t => t.Lessons)
|
|
||||||
.HasForeignKey(d => d.TypeOfOccupationId)
|
|
||||||
.OnDelete(DeleteBehavior.Cascade);
|
|
||||||
|
|
||||||
builder
|
builder
|
||||||
.HasOne(l => l.Discipline)
|
.HasOne(l => l.Discipline)
|
||||||
.WithMany(d => d.Lessons)
|
.WithMany(d => d.Lessons)
|
||||||
|
@ -0,0 +1,26 @@
|
|||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||||||
|
using Mirea.Api.DataAccess.Domain.Schedule;
|
||||||
|
|
||||||
|
namespace Mirea.Api.DataAccess.Persistence.EntityTypeConfigurations.Schedule;
|
||||||
|
|
||||||
|
public class SpecificWeekConfiguration : IEntityTypeConfiguration<SpecificWeek>
|
||||||
|
{
|
||||||
|
public void Configure(EntityTypeBuilder<SpecificWeek> builder)
|
||||||
|
{
|
||||||
|
builder.ToTable(nameof(SpecificWeek));
|
||||||
|
builder.HasKey(s => s.Id);
|
||||||
|
builder.HasIndex(s => s.Id).IsUnique();
|
||||||
|
builder.Property(s => s.Id).HasColumnType("INTEGER").IsRequired().ValueGeneratedOnAdd();
|
||||||
|
|
||||||
|
builder.Property(s => s.WeekNumber).HasColumnType("INTEGER").IsRequired();
|
||||||
|
|
||||||
|
builder.Property(s => s.LessonId).HasColumnType("INTEGER").IsRequired();
|
||||||
|
|
||||||
|
builder
|
||||||
|
.HasOne(s => s.Lesson)
|
||||||
|
.WithMany(l => l.SpecificWeeks)
|
||||||
|
.HasForeignKey(s => s.LessonId)
|
||||||
|
.OnDelete(DeleteBehavior.Cascade);
|
||||||
|
}
|
||||||
|
}
|
@ -14,6 +14,5 @@ public class TypeOfOccupationConfiguration : IEntityTypeConfiguration<TypeOfOccu
|
|||||||
builder.Property(t => t.Id).HasColumnType("INTEGER").IsRequired().ValueGeneratedOnAdd();
|
builder.Property(t => t.Id).HasColumnType("INTEGER").IsRequired().ValueGeneratedOnAdd();
|
||||||
|
|
||||||
builder.Property(t => t.ShortName).HasColumnType("TEXT").IsRequired().HasMaxLength(16);
|
builder.Property(t => t.ShortName).HasColumnType("TEXT").IsRequired().HasMaxLength(16);
|
||||||
builder.Property(t => t.FullName).HasColumnType("TEXT").HasMaxLength(64);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -15,6 +15,7 @@ public class UberDbContext(DbContextOptions<UberDbContext> options) : DbContext(
|
|||||||
public DbSet<Lesson> Lessons { get; set; } = null!;
|
public DbSet<Lesson> Lessons { get; set; } = null!;
|
||||||
public DbSet<Professor> Professors { get; set; } = null!;
|
public DbSet<Professor> Professors { get; set; } = null!;
|
||||||
public DbSet<TypeOfOccupation> TypeOfOccupations { get; set; } = null!;
|
public DbSet<TypeOfOccupation> TypeOfOccupations { get; set; } = null!;
|
||||||
|
public DbSet<SpecificWeek> SpecificWeeks { get; set; } = null!;
|
||||||
|
|
||||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||||
{
|
{
|
||||||
@ -27,6 +28,7 @@ public class UberDbContext(DbContextOptions<UberDbContext> options) : DbContext(
|
|||||||
modelBuilder.ApplyConfiguration(new ProfessorConfiguration());
|
modelBuilder.ApplyConfiguration(new ProfessorConfiguration());
|
||||||
modelBuilder.ApplyConfiguration(new LessonAssociationConfiguration());
|
modelBuilder.ApplyConfiguration(new LessonAssociationConfiguration());
|
||||||
modelBuilder.ApplyConfiguration(new TypeOfOccupationConfiguration());
|
modelBuilder.ApplyConfiguration(new TypeOfOccupationConfiguration());
|
||||||
|
modelBuilder.ApplyConfiguration(new SpecificWeekConfiguration());
|
||||||
|
|
||||||
base.OnModelCreating(modelBuilder);
|
base.OnModelCreating(modelBuilder);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user