I\'m trying to do something which should be relatively easy, but i just dont know how to construct it.
I have a Generated Entity which I\'d like to override by adding a
I know this is super old, but another simple and elegant way, without changing any existing names, is using the new
keyword to hide the original member, like this:
public new IQueryable Assignees
{
get
{
return base.Assignees.Where(z => z.IsActive == true);
}
}
Just wanted to share for any future visitors, hope it helps!