mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-23 19:22:50 +08:00

- 增加 IsSyncStructureToUpper 参数,以便适应 Oracle 大小写使用习惯; - FreeSql.Repository 增加 GuidRepository 类,适用 Insert 方法无须返回插入的数据; - FreeSql.Repository 增加 IFreeSql 扩展方法 GetRepository、GetGuidRepository;
15 lines
295 B
C#
15 lines
295 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FreeSql {
|
|
public class DefaultRepository<TEntity, TKey> :
|
|
BaseRepository<TEntity, TKey>
|
|
where TEntity : class {
|
|
|
|
public DefaultRepository(IFreeSql fsql) : base(fsql) {
|
|
}
|
|
}
|
|
}
|