Ejemplo n.º 1
0
 private string Distinct(UnaryExpression exp) => $"SELECT DISTINCT * FROM ({Serialize(exp.Sub)}) AS this";
Ejemplo n.º 2
0
 private string Count(UnaryExpression exp) => $"SELECT COUNT(*) FROM ({Serialize(exp.Sub)}) AS this";