I have two lists
List<clsEntity> usersWithNPIRCodingPermission // It has count 159
List<clsEntity> usersWithRaiseReq // It has count 219
When doing intersect on these (there are 55 records but my below line getting empty list)
List<clsEntity> users = usersWithRaiseReq.Intersect(usersWithNPIRCodingPermission).ToList();
Why is the resulting users
list empty?