I tried to get a special count where I want to remove results where the userKeysActionsArray is a string that contains integer like this way (JSON array) : [88254,8547,8569]
But when I tried to remove with a contains method and the NOT operator, I couldn't get the right number I expected.
I don't know how to resolve this problem.
Thanks a lot for your help.
int count;
var query = (from a in _db.ApplicationSet
from h in a.ApplicationApprobationStatusHistorySet
from u in a.Mission.MissionUserSet
where a.Mission.isDeleted == false
&& a.Mission.isArchived == false
&& a.isRefused == false
&& a.ApplicationApprobationStatus.shortCode == "APPLICATION_APPROBATION_STATUS_LM_WAITING"
&& u.userKey == ContextUser.id
&& h.ApplicationApprobationStatus.shortCode == "APPLICATION_APPROBATION_STATUS_LM_WAITING" && h.isDeleted == false
orderby a.applicationDate
select new ApplicationCandidateListing
{
applicationKey = a.id,
missionKey = a.Mission.id,
candidateKey = a.Candidate.id,
statusKey = a.ApplicationStatus.id,
clientKey = a.Mission.Client.id,
candidateFirstName = a.Candidate.firstName,
candidateLastName = a.Candidate.lastName,
clientLabel = a.Mission.Client.name,
statusLabel = a.ApplicationStatus.label,
missionLabel = a.Mission.label,
applicationDate = a.applicationDate,
isCVreserveList = a.isCVreserveList,
isCVviewed = a.isCVviewed,
refuseDate = a.refuseDate,
isShortListed = a.isShortListed,
candidateGroupShortcode = a.Candidate.CandidateGroup.shortCode,
approbationStatusIcons = a.ApplicationApprobationStatus.iconCSS,
approbationStatusShortCode = a.ApplicationApprobationStatus.shortCode,
isInternal = a.Candidate.isInternal,
lineManagerKey = ContextUser.id,
userKeysActionsArray = h.userKeysActionsArray,
commentCount = a.ApplicationCommentSet.Where(ac => ac.isPrivateLineManager != true).Count()
}).Distinct();
string chance1 = "[" + ContextUser.id.ToString() + "]";
string chance2 = "[" + ContextUser.id.ToString() + ",";
string chance3 = "," + ContextUser.id.ToString() + ",";
string chance4 = "," + ContextUser.id.ToString() + "]";
var values = new[] { chance1, chance2, chance3, chance4 };
query.Where(q => !(values.Any(q.userKeysActionsArray.Contains)));
count = query.Count();
return count;
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…