We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Expression<Func<a, b, bool>> func1 = (a,b) => true; if (!string.IsNullOrWhiteSpace(name)) { //?a.name=name } return await DbContext.Mysql.Select<a,b>() .LeftJoin((a,b)=>b.Id==a.id) .Where(func1) .Page(page, pageSize) .ToListAsync();
请教一下,如上面的func1怎么拼接。。。 toListAsync里如何同时返回a,b的字段。。。