Is this the best way to select the Fruit object I need from the ID?
So I'm taking the ID and returning its name, id being unique, so there will only ever be one result.
If I don't use .Single() I get IQueryable but I just want the single object
var fruitName = (from p in fruitDB.Fruits
where p.FruitID == id
select p.FruitName).Single();