Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
-
- //
-
-
-
-
-
-
-
-
- namespace SafeCampus.SqlSugar;
-
- /// <summary>
- /// 实体种子数据接口
- /// </summary>
- /// <typeparam name="TEntity"></typeparam>
- public interface ISqlSugarEntitySeedData<TEntity> where TEntity : class, new()
- {
- /// <summary>
- /// 种子数据
- /// </summary>
- /// <returns></returns>
- IEnumerable<TEntity> SeedData();
- }
|