Is there any difference between
DataFeedManager.LoadAllDataFeeds().FirstOrDefault(d => d.ItemID == itemId);
and
DataF
Prefer the first for brevity if you're comfortable with it.
Prefer the second for clarity if you're not as familiar with the various overloads available.
(Where "you" is really "everyone working on the code" of course.)