I\'m getting an exception whenever I fetch like this
Feature f = o.Features.SingleOrDefault(e => e.LinkName == PageLink);
because this can r
If you are using SingleOrDefault if the condition satisfy more than result it will throw error.
you can achieve your result by using FirstOrDefault