I want to add extra "where" clause into the following expression.
public Task<IEnumerable<MyClass>> Find(Expression<Func<MyClass, bool>> predicate)
{
return _documentDbProvider.Find(predicate);
}
such as .where(t=>t.tenantId == tenant.id)
so my db provider gets two "where" clauses, thanks