我有一个实体框架 5 Code First DbContext
public class ProductContext : DbContext
{
public DbSet<Product> Products {get;set;}
}
public class Product
{
public int ProductId { get; set; }
public string Name { get; set; }
}
现在我必须实现一个接口,但不想污染我的模型,所以我创建了一个
public class ProductEx : Product, ISomeInterface
{
public bool ISomeInterface.SomeMethod() { return false; }
}
我知道我可以这样做:
var query = from p in context.Products
select new ProductEx { p.ProductId, p.Name };
但是由于 DbContext 已经返回了一个动态代理(因为更改跟踪/延迟加载),也许有更好的方法。我正在考虑这样的事情:
var query = from p in context.Products.As<ProductEx>()
select p;
实体应该是继承自 ProductEx 的动态代理。
有没有办法做到这一点?