You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
383 B

2 years ago
  1. namespace SqlSugar
  2. {
  3. public partial class SqlServerExpressionContext : ExpressionContext, ILambdaExpressions
  4. {
  5. public SqlSugarClient Context { get; set; }
  6. public SqlServerExpressionContext()
  7. {
  8. base.DbMehtods = new SqlServerMethod();
  9. }
  10. }
  11. public partial class SqlServerMethod : DefaultDbMethod, IDbMethods
  12. {
  13. }
  14. }