loveyeguo

Results 14 issues of loveyeguo

### Summary 简述 我有n组数据,是n个传感器在特定时间采集的值,但是每个传感器的采集时间都是不一致的。怎么使得传感器形成的折线图能够连接起来 ### Expect 期望结果 我设置 connectnulls=true 没有用 ### Reproduce 重现示例

在1.6版本中自带了封包拆包处理,怎么到了2.0反而取消没有了?

In the method "DeserializeValue", once the nullable type is encountered. For example "datetime?", the conversion will fail. Need to add a method ``` public static class ConvertHelper { #region =...

启动服务后,直接运行官方示例,报错 ,是什么原因? ![image](https://user-images.githubusercontent.com/7542451/95649903-c2c5ec80-0b12-11eb-9df1-872c6931b644.png)

1.6版本中,有这个配置: maxConnectionNumber: 可允许连接的最大连接数; 请问在2.0中如何配置?还是根本没有限制?

在net7中,我在ConfigureServices中注册了服务: `services.AddSingleton(); ` 然后使用服务: `public class MyCommand : ICommand { private readonly IService _service; public MyCommand(IService service) { _service = service; } public async Task ExecuteAsync(IAppSession session, StringPackageInfo package) {...

写在哪个地方比较好? 怎么写? 我是这么写的,但感觉不太好,有没有官方推荐写法?