var PersonActive = (from Person in _dbContext.Person
join PersonWiseActionHistory in _dbContext.PersonWiseActionHistory on Person.Id Not equals PersonWiseActionHistory.PersonId
where Person.JobId == srchparam.ProjectId && Person.EffectFrom== ApplicationData.AppStringToDatetime(srchparam.SrchDate)
select new
{
PersonId = Person.Id,
PersonName = Person.Name,
Weightage = Person.Weightage
});
Loading
Jignesh KumarPosted Jul 7, 2022, 4:42 AM
Sachin SinghPosted Jul 6, 2022, 1:00 PM
{
PersonId = Person.Id,
PersonName = Person.Name,
Weightage = Person.Weightage
});
Sandeep KumarPosted Jul 6, 2022, 12:50 PM
Sachin SinghPosted Jul 6, 2022, 12:38 PM