修改上传逻辑

This commit is contained in:
2024-09-12 16:09:37 +08:00
parent d600862fb0
commit df1665307a
28 changed files with 444 additions and 2662 deletions
@@ -1,10 +1,6 @@
using Microsoft.EntityFrameworkCore.Metadata.Builders;
using Microsoft.EntityFrameworkCore.Metadata.Conventions;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IRaCIS.Core.Test
{
@@ -21,7 +17,7 @@ namespace IRaCIS.Core.Test
.Where(
property => property.ClrType == typeof(string))))
{
property.Builder.HasMaxLength(200);
property.Builder.HasMaxLength(200);
}
}
}