I have the following code:
public IQueryable<ITax> FindAllTaxes()
{
return db.Taxes;
}
I am getting the following error
Cannot implicitly convert type 'System.Data.Linq.Table<Models.Tax>' to 'System.Linq.IQueryable<Interfaces.ITax>'
I am trying to use Interface where ever I go, but not sure how to convert this, any help?