DmInserttable.cs 275 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Linq.Expressions;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace SqlSugar
  8. {
  9. public class DmInserttable<T> : InsertableProvider<T> where T : class, new()
  10. {
  11. }
  12. }