Is it possible with Generics to get an object from my EntityFramework without knowing the type?
I\'m thinking of something along the lines of:
public
I think the Find() method may be able to do what you're looking for (DbSet.Find Method).
Find()
var someEntity = dbSet.Find(keyValue);