d4ilys
d4ilys
Note that the insertion of array types needs to be unparameterized ~~~c# _fsql.Insert(new table { tags1 = new[] {"a", "b" }}).NoneParameter().ExecuteAffrows(); //or _fsql.Insert(new table { tags1 = new[] {"a", "b"...
QuestDb在分表时BulkCopy,要加上Id作为唯一标识 ```c# public class Books2 { public string Id {get;set;} public string Name { get; set; } public string Sex { get; set; } [AutoSubtable(SubtableType.Day)] public DateTime? tim1 { get;...
扩展方法的命名和表达式函数表示的 SQL 字符串没有啥关联 命名可以有个规范 比如 FormatDateTimeForSqlFun 另外FreeSql经历了这么多版本的迭代肯定不会去修改 **自定义解析** 的逻辑
```c# public class Table { [Column(IsPrimary = true, IsIdentity = true)] public int Id { get; set; } public string Name { get; set; } [ClickHousePartition("toYYYYMM({0})")] //partition attribute , toYYYYMM({0})...
我们这边没有复现,请提供详细信息 Redis单机/集群 FreeRedis版本 具体Demo @aetforviolet @Cyaim
等下 发个测试版,再试一下,优化了一下HttpClient相关逻辑,我在本地通过Questdb8.2.2版本没有复现
暂时只能Insert Update使用RestApi ,因为Select处理相当复杂 需要适配ToList中的绑定和动态绑定构建
~~~C# var eventStream = kubeApiClient.PodsV1() .WatchAll(kubeNamespace: kubeNamespace); eventStream.Select(resourceEvent => resourceEvent.Resource).Subscribe(subsequentEvent => { // do .... }, error => LogError($"Listening to pod fail."), () => { LogInfo("Listening to pod completed."); });...
> Kubernetes version Kubernetes v1.23.6 > Does the OnError handler ever get called? Are there any events in that time? No OnError events were raised, and the connection should be...
@tintoy This is the scenario I was debugging locally, and nothing unusual happened. ** **