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.

13 lines
406 B

2 years ago
  1. using System;
  2. namespace SqlSugar
  3. {
  4. public partial interface ICodeFirst
  5. {
  6. SqlSugarClient Context { get; set; }
  7. ICodeFirst BackupTable(int maxBackupDataRows=int.MaxValue);
  8. void InitTables(string entitiesNamespace);
  9. void InitTables(string [] entitiesNamespaces);
  10. void InitTables(params Type [] entityTypes);
  11. void InitTables(Type entityType);
  12. }
  13. }