MongoCollection 有没有类似ef 那种whereif的扩展
微信里点“发现”,扫一下
二维码便可将本文分享至朋友圈。
public static IQueryable<T> WhereIf<T>(this IQueryable<T> source, bool condition, string path) { return condition ? source.Where(path) : source; }