forked from ddrilling/AsbCloudServer
Исправления
1. Поправлен запрос в репозитории 2. Поправлен DbConxtext, удалено лишнее поле 3. Поправлена валидация. у ValidationResult добавлено название параметров
This commit is contained in:
parent
ab5e740d4a
commit
65cccbfba0
@ -89,7 +89,6 @@ namespace AsbCloudDb.Model
|
||||
public DbSet<Manual> Manuals => Set<Manual>();
|
||||
public DbSet<ManualDirectory> ManualDirectories => Set<ManualDirectory>();
|
||||
public DbSet<Contact> Contacts => Set<Contact>();
|
||||
public DbSet<WellSectionPlan> WellSectionPlans => Set<WellSectionPlan>();
|
||||
|
||||
public DbSet<DrillTest> DrillTests => Set<DrillTest>();
|
||||
public AsbCloudDbContext() : base()
|
||||
|
@ -64,6 +64,7 @@ public class WellSectionPlanRepository : CrudWellRelatedRepositoryBase<WellSecti
|
||||
{
|
||||
var query = from wellSectionType in dbContext.WellSectionTypes
|
||||
join wellSectionPlan in dbContext.WellSectionsPlan on wellSectionType.Id equals wellSectionPlan.IdSectionType
|
||||
where wellSectionPlan.IdWell == idWell
|
||||
orderby wellSectionType.Order
|
||||
select wellSectionType;
|
||||
|
||||
|
@ -56,7 +56,7 @@ public class ProcessMapPlanService<T> : IProcessMapPlanService<T>
|
||||
{
|
||||
new($"Конструкция секции: {wellSectionType?.Caption}; " +
|
||||
$"Интервал бурения от {processMapPlan.DepthStart} до {processMapPlan.DepthEnd} не совпадает с данными указанными на странице " +
|
||||
$"Конструкция скважины / План")
|
||||
$"Конструкция скважины / План", new[] { nameof(processMapPlan.DepthStart), nameof(processMapPlan.DepthEnd) })
|
||||
};
|
||||
|
||||
return validationResult;
|
||||
|
Loading…
Reference in New Issue
Block a user