Hi,
In MVC5, I reference the namespace System.Data.Entity and set the type below
IDbSet<TEntity> Set<TEntity>() where TEntity : ModelEntity;
But what is the equivalent in Core? The interface IDbSet has an error "missing assembly reference". I already added Microsoft.EntityFrameworkCore but still getting the error.
Thanks,