v0.0.11 实现分表

This commit is contained in:
28810
2019-03-05 22:16:44 +08:00
parent 90f69f1b57
commit e66bca2fe7
14 changed files with 131 additions and 122 deletions

View File

@ -6,7 +6,7 @@ using System.Linq;
using System.Threading.Tasks;
namespace repository_01.Repositorys {
public class SongRepository : BaseRepository<Song, int> {
public class SongRepository : DefaultRepository<Song, int> {
public SongRepository(IFreeSql fsql) : base(fsql, null) {
}
}