Eu tenho o seguinte método de extensão genérico:
public static T GetById<T>(this IQueryable<T> collection, Guid id)
where T : IEntity
{
Expression<Func<T, bool>> predicate = e => e.Id == id;
T entity;
// Allow reporting more descriptive error messages.
try
{
entity = collection.SingleOrDefault(predicate);
}
catch (Exception ex)
{
throw new InvalidOperationException(string.Format(
"There was an error retrieving an {0} with id {1}. {2}",
typeof(T).Name, id, ex.Message), ex);
}
if (entity == null)
{
throw new KeyNotFoundException(string.Format(
"{0} with id {1} was not found.",
typeof(T).Name, id));
}
return entity;
}
Infelizmente, o Entity Framework não sabe como lidar com o, predicate
já que C # converteu o predicado para o seguinte:
e => ((IEntity)e).Id == id
Entity Framework lança a seguinte exceção:
Não é possível lançar o tipo 'IEntity' para 'SomeEntity'. O LINQ to Entities só oferece suporte à conversão de tipos primitivos ou de enumeração de EDM.
Como podemos fazer o Entity Framework funcionar com nossa IEntity
interface?