Uat_Study
parent
264db455ff
commit
2142ee6b82
|
@ -518,7 +518,7 @@ namespace IRaCIS.Application.Services
|
||||||
{
|
{
|
||||||
|
|
||||||
var readingTableQuestionSystemQueryable = _readingTableQuestionTrialRepository
|
var readingTableQuestionSystemQueryable = _readingTableQuestionTrialRepository
|
||||||
.WhereIf(inDto.TableQuestionType != null, x => x.TableQuestionType == inDto.TableQuestionType!)
|
.WhereIf(inDto.TableQuestionType != null, x => x.TableQuestionType == inDto.TableQuestionType)
|
||||||
.Where(x => x.ReadingQuestionId == inDto.ReadingQuestionId).ProjectTo<ReadingTableQuestionTrialView>(_mapper.ConfigurationProvider);
|
.Where(x => x.ReadingQuestionId == inDto.ReadingQuestionId).ProjectTo<ReadingTableQuestionTrialView>(_mapper.ConfigurationProvider);
|
||||||
|
|
||||||
var result = await readingTableQuestionSystemQueryable.OrderBy(x => x.ShowOrder).ToListAsync();
|
var result = await readingTableQuestionSystemQueryable.OrderBy(x => x.ShowOrder).ToListAsync();
|
||||||
|
|
|
@ -235,7 +235,7 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
public List<ReadingTableQuestionTrial> ReadingTableQuestionTrialList { get; set; }
|
public List<ReadingTableQuestionTrial> ReadingTableQuestionTrialList { get; set; }
|
||||||
|
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
[NotMapped]
|
|
||||||
public List<string> ParentTriggerValueList
|
public List<string> ParentTriggerValueList
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
@ -254,7 +254,7 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
}
|
}
|
||||||
|
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
[NotMapped]
|
|
||||||
public List<string> RelevanceValueList
|
public List<string> RelevanceValueList
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
@ -273,7 +273,7 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
}
|
}
|
||||||
|
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
[NotMapped]
|
|
||||||
public List<CalculateInfo> CalculateQuestionList
|
public List<CalculateInfo> CalculateQuestionList
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
|
@ -184,7 +184,7 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
public ReadingQuestionTrial ReadingQuestionTrial { get; set; }
|
public ReadingQuestionTrial ReadingQuestionTrial { get; set; }
|
||||||
|
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
[NotMapped]
|
|
||||||
public List<string> ParentTriggerValueList
|
public List<string> ParentTriggerValueList
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
@ -203,7 +203,7 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
}
|
}
|
||||||
|
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
[NotMapped]
|
|
||||||
public List<string> RelevanceValueList
|
public List<string> RelevanceValueList
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
@ -222,7 +222,7 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
}
|
}
|
||||||
|
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
[NotMapped]
|
|
||||||
public List<CalculateInfo> CalculateQuestionList
|
public List<CalculateInfo> CalculateQuestionList
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
Loading…
Reference in New Issue