BlockExpressionResolve.cs 315 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Linq.Expressions;
  5. using System.Text;
  6. namespace SqlSugar
  7. {
  8. public class BlockExpressionResolve:BaseResolve
  9. {
  10. public BlockExpressionResolve(ExpressionParameter parameter) : base(parameter)
  11. {
  12. }
  13. }
  14. }