Alex chow
Alex chow
l例如这个情况,不写 [ExporterHeader(DisplayName = "备注", IsAutoFit = false)] 导出会显示Remark作为列名. ``` [ExporterHeader(IsAutoFit = false)] [JsonProperty, Column(StringLength = -1)] [DisplayName("备注")] public string Remark { get; set; } ``` 以下写法是ok的,导出能显示"备注"作为列名 ``` [ExporterHeader(DisplayName = "备注",...
## Steps to reproduce 1. code ``` adapter.DeviceAdvertised += OnDeviceAdvertised; await adapter.StartScanningForDevicesAsync(); ``` OnDeviceAdvertised handler have a look at the advertisement records: ``` private async void OnDeviceAdvertised(object sender, DeviceEventArgs args)...
### Actual behaviour 可空字段数据为 null , 以前版本都顺利能导出 PDF, 新版报错 ``` System.ArgumentException:“Cannot set Column 'UnitPrice2' to be null. Please use DBNull instead.” ``` ### I'm seeing this behaviour on - [...
### Is there an existing issue for this? - [X] I have searched the existing issues ### Is your feature request related to a problem? Please describe the problem. _No...