Zev_Fung
Zev_Fung
> 那个蓝奏云下载地址就是打包好的jar包文件。。 编译可执行文件。。
> 关于编码,需要检查数据库,数据库表,连接字符串。 var ss = await _articuloRepository.Orm.Ado.ExecuteNonQueryAsync(@"INSERT INTO `articulo`(`ID`, `CN`) VALUES('1', 'Ь×Ó')");也正常执行,为啥var ss = await _articuloRepository.Orm.Insert(entity).ExecuteAffrowsAsync(); 或者 await _articuloRepository.InsertAsync(entity);就不正常执行?
谢谢提供思路,我看了Interceptors相关的,这样写拦截key动态修改。 ``` public class TenantInterceptorTests { public static RedisClient CreateClient() => new RedisClient(RedisEnvironmentHelper.GetHost("redis_interceptor")); [Fact] public void Interceptor() { using (var cli = CreateClient()) { cli.Interceptors.Add(() => new RedisCacheAop()); cli.Set("Interceptor01_{tenantId}", "123123");...