Coldairarrow / EFCore.Sharding

Database Sharding For EFCore
Apache License 2.0
693 stars 143 forks source link

请问项目还继续维护吗? #131

Open rennner opened 2 years ago

rennner commented 2 years ago

请问项目还继续维护吗?多个表分表只有一个有效的问题还打算修复吗?

xuejmnet commented 2 years ago

@rennner 目测不维护了 可以试试我这个项目 https://github.com/dotnetcore/sharding-core

maikebing commented 1 year ago

我 这个项目 https://github.com/IoTSharp/IoTSharp @xuejmnet 移植到你的项目容易吗?

xuejmnet commented 1 year ago

我 这个项目 https://github.com/IoTSharp/IoTSharp

@xuejmnet 移植到你的项目容易吗?

可以我等会看看大佬的项目原则上来说是可以的只需要startup修改一下然后把他的代码批量替换掉原则上就可以了,去掉他的ishardingqueryable改成原生的,原则上只需要批量替换就可以了

maikebing commented 1 year ago

@xuejmnet 感谢, 帮忙给看看,

chbacheng commented 1 year ago

@rennner 目测不维护了 可以试试我这个项目 https://github.com/dotnetcore/sharding-core

你这个项目,能增加一个WebApi DB First的调用示例吗?

xuejmnet commented 1 year ago

@rennner 目测不维护了 可以试试我这个项目 https://github.com/dotnetcore/sharding-core

你这个项目,能增加一个WebApi DB First的调用示例吗?

非分片的对象支持,分片对象不支持dbfirst,支持code first,分片对象不支持dbfirst的情况可以自行创建对象和映射关系

chbacheng commented 1 year ago

@rennner 目测不维护了 可以试试我这个项目 https://github.com/dotnetcore/sharding-core

你这个项目,能增加一个WebApi DB First的调用示例吗?

非分片的对象支持,分片对象不支持dbfirst,支持code first,分片对象不支持dbfirst的情况可以自行创建对象和映射关系

是非分片的项目,对象和映射关系可以自己写代码生成器生成,就是缺少一个WebApi DB First整体的调用示例,例如这个项目,简单直观拿过来就用:https://github.com/Coldairarrow/Colder.Admin.AntdVue

xuejmnet commented 1 year ago

@chbacheng dbfirst 不就是通过数据库来生成对象模型吗,那你就直接生成就好了,生成好对象模型后就和普通的efcore一样啊没区别了