I have searched for this, but still can\'t seem to get this to work for me. I have an array of Id\'s associated with a user (their Organization Id). These are placed in an
A check using the Contains method should do the job here.
Contains
var query = (from p in this.Database.Personnels where OrgIds.Contains(p.OrganisationId) select p).ToList();