QueryableAccessory.cs 343 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 QueryableAccessory
  9. {
  10. protected ILambdaExpressions _LambdaExpressions;
  11. protected bool _RestoreMapping = true;
  12. protected int _InQueryableIndex = 100;
  13. }
  14. }