If I have a query like this:
String Category = HttpContext.Current.Request.QueryString["Product"].ToString();
IQueryable<ItemFile> pressReleases = from file in connection.ItemFile
where file.Type_ID == 8
&& file.Category == Category
select file;
Is there a way to make this LINQ Query so that I do no use the line file.Category == Category
if Category is null or empty?