OK I have Skeeted, but to add to the conversation and a little, which may be useful to others ...
The method you are looking for is DbFunctions.DiffMinutes . It gives the total number of minutes between these two values.
var publications = myEntities.Publications. .Where(p => p.CreationUserId == exampleId && DbFunctions.DiffMinutes(p.CreationDate, DateTime.Now) < 10);
source share