MongoCollection 有没有类似ef 那种whereif的扩展
public static IQueryable<T> WhereIf<T>(this IQueryable<T> source, bool condition, string path) { return condition ? source.Where(path) : source; }