Fix modello taskeseguiti x scheduler

This commit is contained in:
Samuele Locatelli
2025-03-10 12:24:51 +01:00
parent 6931f499b1
commit f6496fe162
6 changed files with 12 additions and 11 deletions
+2 -2
View File
@@ -4,8 +4,8 @@
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>MP.Stats</RootNamespace>
<UserSecretsId>826e877c-ba70-4253-84cb-d0b1cafd4440</UserSecretsId>
<Version>6.16.2503.1011</Version>
<Version>6.16.2503.1011</Version>
<Version>6.16.2503.1012</Version>
<Version>6.16.2503.1012</Version>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
+1 -1
View File
@@ -1,6 +1,6 @@
<body>
<i>Modulo statistiche MAPO</i>
<h4>Versione: 6.16.2503.1011</h4>
<h4>Versione: 6.16.2503.1012</h4>
<br />
Note di rilascio:
<ul>
+1 -1
View File
@@ -1 +1 @@
6.16.2503.1011
6.16.2503.1012
+1 -1
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<item>
<version>6.16.2503.1011</version>
<version>6.16.2503.1012</version>
<url>https://nexus.steamware.net/repository/SWS/MP-STATS/stable/LAST/MP.Stats.zip</url>
<changelog>https://nexus.steamware.net/repository/SWS/MP-STATS/stable/LAST/ChangeLog.html</changelog>
<mandatory>false</mandatory>
+1 -5
View File
@@ -1,9 +1,5 @@
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using static MP.TaskMan.Objects.Enums;
#nullable disable
// <Auto-Generated>
+6 -1
View File
@@ -82,7 +82,7 @@ namespace MP.TaskMan
public virtual DbSet<TaskListModel> DbSetTaskList { get; set; }
public virtual DbSet<TaskExecModel> DbSetTaskExe { get; set; }
public virtual DbSet<TaskResultModel> DbSetTaskResult { get; set; }
public virtual DbSet<TaskResultModel> DbSetTaskResult { get; set; } = null!;
#endregion Public Properties
@@ -166,6 +166,11 @@ namespace MP.TaskMan
{
modelBuilder.HasAnnotation("Relational:Collation", "SQL_Latin1_General_CP1_CI_AS");
modelBuilder.Entity<TaskResultModel>(entity =>
{
entity.HasKey(e => e.Task);
});
OnModelCreatingPartial(modelBuilder);
}