What is the best (fastest) way to check if a linq object is referenced from another table. Normaly i do this way but i guess this might be slow on bigger tables.
CurrentObject.ReferencingObjects.Count != 0
This might be faster.
CurrentObject.ReferencingObjects.FirstOrDefault() != null
Is there a better way?