Reputation: 9443
This is an extended question back from my POST
class EmployeeSchedule
{
public int Id { get; set; }
public string Name { get; set; }
public DateTime WorkDate { get; set; }
public bool isOff { get; set; }
}
Now in this case i would like to find an Id
whose WorkDate
is not found in 4/12/2016
from the List as my criteria.
List<Staff> workers = new List<Staff>()
{
new Staff { Id = 1, Name = "Emp 1", WorkDate = Convert.ToDateTime("4/11/2016"), IsOff = false},
new Staff { Id = 1, Name = "Emp 1", WorkDate = Convert.ToDateTime("4/12/2016"), IsOff = false},
new Staff { Id = 1, Name = "Emp 1", WorkDate = Convert.ToDateTime("4/13/2016"), IsOff = false},
new Staff { Id = 1, Name = "Emp 1", WorkDate = Convert.ToDateTime("4/14/2016"), IsOff = false},
new Staff { Id = 1, Name = "Emp 1", WorkDate = Convert.ToDateTime("4/15/2016"), IsOff = false},
new Staff { Id = 1, Name = "Emp 1", WorkDate = Convert.ToDateTime("4/16/2016"), IsOff = false},
new Staff { Id = 1, Name = "Emp 1", WorkDate = Convert.ToDateTime("4/17/2016"), IsOff = false},
new Staff { Id = 2, Name = "Emp 2", WorkDate = Convert.ToDateTime("4/11/2016"), IsOff = false},
// new Staff { Id = 2, Name = "Emp 2", WorkDate = Convert.ToDateTime("4/12/2016"), IsOff = false},
new Staff { Id = 2, Name = "Emp 2", WorkDate = Convert.ToDateTime("4/13/2016"), IsOff = false},
new Staff { Id = 2, Name = "Emp 2", WorkDate = Convert.ToDateTime("4/14/2016"), IsOff = false},
new Staff { Id = 2, Name = "Emp 2", WorkDate = Convert.ToDateTime("4/15/2016"), IsOff = false},
new Staff { Id = 2, Name = "Emp 2", WorkDate = Convert.ToDateTime("4/16/2016"), IsOff = false},
new Staff { Id = 2, Name = "Emp 2", WorkDate = Convert.ToDateTime("4/17/2016"), IsOff = false},
};
So far i have tried this code:
var notInDate = workers.Where(x => !workers.Any(y => Convert.ToDateTime("4/12/2016") != x.WorkDate));
foreach (var item in notInDate)
{
Console.WriteLine(item.Id + " " + item.WorkDate.Date);
}
Which has the output of: ID :1 WorkDate: 4/12/2016 12:00:00 AM
And this one with this output:
var notInDate = workers.Where(x => workers.Any(y => Convert.ToDateTime("4/12/2016") != x.WorkDate));
ID :1 WorkDate: 4/11/2016 12:00:00 AM
ID :1 WorkDate: 4/13/2016 12:00:00 AM
ID :1 WorkDate: 4/14/2016 12:00:00 AM
ID :1 WorkDate: 4/15/2016 12:00:00 AM
ID :1 WorkDate: 4/16/2016 12:00:00 AM
ID :1 WorkDate: 4/17/2016 12:00:00 AM
ID :2 WorkDate: 4/11/2016 12:00:00 AM
ID :2 WorkDate: 4/13/2016 12:00:00 AM
ID :2 WorkDate: 4/14/2016 12:00:00 AM
ID :2 WorkDate: 4/15/2016 12:00:00 AM
ID :2 WorkDate: 4/16/2016 12:00:00 AM
ID :2 WorkDate: 4/17/2016 12:00:00 AM
The second example just removed the record whose WorkDate is 4/12/2016
I would like to get whose Id = 2
because that Id
do not have the WorkDate
of 4/12/2016
Upvotes: 1
Views: 81
Reputation: 16956
You could do this, use GroupBy
to group on Id
and then validate whether staff worked on that date using Any
extension..
var notInDate = workers.GroupBy(g=>g.Id)
.Where(x => !x.Any(y => DateTime.ParseExact("4/12/2016","M/d/yyyy", null) == y.WorkDate))
.FirstOrDefault(); // Get the first matching staff.
if(notInDate != null)
{
id = notInDate.Key; // StaffId
}
Upvotes: 2
Reputation: 180917
If you want all entries from people that did not work on that day, you need to group by id (to get a group per person) and filter on individual groups that don't contain the date. Something like;
var notInDate =
// Create a group per employee
workers.GroupBy (x => x.Id)
// Keep only groups that didn't work
.Where (x => !x.Any (y => y.WorkDate == Convert.ToDateTime ("4/12/2016")))
// Get only the key for each group
.Select (x => x.Key);
Upvotes: 4