a1c145e861
cv-matcher-data: - Add AiPromptEntity (Key, Language, Value, Description, UpdatedAt) - Add AiPrompts DbSet to CvMatcherDbContext with composite PK - Migration AddAiPrompts: create cvMatcher.AiPrompts table and seed ai.cv-match.system-prompt (language "*") with the current prompt value cv-matcher-api: - Add IAiPromptsRepository / EfAiPromptsRepository under Data/Repositories/ - CvMatcherService: inject IAiPromptsRepository; replace _templates.Render(...) with async DB lookup + simple string replacement - Program.cs: register IAiPromptsRepository (scoped); remove MyAiDbContext, ITemplateService/DbTemplateService registrations and MyAiDbContext migration call - Remove myai-data ProjectReference Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
58 lines
2.4 KiB
C#
58 lines
2.4 KiB
C#
using CvMatcher.Data.Entities;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace CvMatcher.Data;
|
|
|
|
public sealed class CvMatcherDbContext : DbContext
|
|
{
|
|
public const string SchemaName = "cvMatcher";
|
|
public const string MigrationTableName = "_Migrations";
|
|
|
|
public CvMatcherDbContext(DbContextOptions<CvMatcherDbContext> options) : base(options)
|
|
{
|
|
}
|
|
|
|
public DbSet<CvMatchResultEntity> CvMatchResults => Set<CvMatchResultEntity>();
|
|
public DbSet<CvMatcherChatCacheEntity> CvMatcherChatCache => Set<CvMatcherChatCacheEntity>();
|
|
public DbSet<AiPromptEntity> AiPrompts => Set<AiPromptEntity>();
|
|
|
|
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
|
{
|
|
modelBuilder.HasDefaultSchema(SchemaName);
|
|
|
|
modelBuilder.Entity<CvMatchResultEntity>(entity =>
|
|
{
|
|
entity.ToTable("Results");
|
|
entity.HasKey(x => x.Id);
|
|
entity.Property(x => x.Id).HasMaxLength(64);
|
|
entity.Property(x => x.CvDocumentId).HasMaxLength(64).IsRequired();
|
|
entity.Property(x => x.JobDocumentId).HasMaxLength(64).IsRequired();
|
|
entity.Property(x => x.ResultJson).IsRequired();
|
|
entity.Property(x => x.CreatedAt).HasDefaultValueSql("SYSUTCDATETIME()");
|
|
entity.HasIndex(x => new { x.CvDocumentId, x.JobDocumentId }).IsUnique();
|
|
});
|
|
|
|
modelBuilder.Entity<CvMatcherChatCacheEntity>(entity =>
|
|
{
|
|
entity.ToTable("ChatCache");
|
|
entity.HasKey(x => x.CacheKey);
|
|
entity.Property(x => x.CacheKey).HasMaxLength(64);
|
|
entity.Property(x => x.Model).HasMaxLength(120).IsRequired();
|
|
entity.Property(x => x.Temperature).HasColumnType("decimal(4,2)");
|
|
entity.Property(x => x.ResponseText).IsRequired();
|
|
entity.Property(x => x.CreatedAt).HasDefaultValueSql("SYSUTCDATETIME()");
|
|
});
|
|
|
|
modelBuilder.Entity<AiPromptEntity>(entity =>
|
|
{
|
|
entity.ToTable("AiPrompts");
|
|
entity.HasKey(x => new { x.Key, x.Language });
|
|
entity.Property(x => x.Key).HasMaxLength(128);
|
|
entity.Property(x => x.Language).HasMaxLength(8);
|
|
entity.Property(x => x.Value).IsRequired();
|
|
entity.Property(x => x.Description).HasMaxLength(500).HasDefaultValue(string.Empty);
|
|
entity.Property(x => x.UpdatedAt).HasDefaultValueSql("SYSUTCDATETIME()");
|
|
});
|
|
}
|
|
}
|