I know this is super old, but another simple and elegant way, without changing any existing names, uses the new
keyword to hide the original element, for example:
public new IQueryable<Assignee> Assignees { get { return base.Assignees.Where(z => z.IsActive == true); } }
Just wanted to share for future visitors, hope this helps!
Nahuel prieto
source share