摘要:
//根据某属性获取 public async Task<AreaEntity> GetEntityByAreaCode(string areaCode) { //todo根据……获取 return await this.BaseRepository().FindEntity<AreaEntity>( 阅读全文
摘要:
因MySql没有SqlServer中的Bit,因此在查找资料后使用tinyint。但在NetCore中对应的是byte,但在取值与赋值的时候提示各种转换错误。 后经查找资料,得出以下解决方案: 在数据库的连接字符串中添加TreatTinyAsBoolean=false 如: server=.;dat 阅读全文