Alex chow

Results 5 issues of Alex chow

l例如这个情况,不写 [ExporterHeader(DisplayName = "备注", IsAutoFit = false)] 导出会显示Remark作为列名. ``` [ExporterHeader(IsAutoFit = false)] [JsonProperty, Column(StringLength = -1)] [DisplayName("备注")] public string Remark { get; set; } ``` 以下写法是ok的,导出能显示"备注"作为列名 ``` [ExporterHeader(DisplayName = "备注",...

bug
area-excel

## 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)...

os:iOS

### Actual behaviour 可空字段数据为 null , 以前版本都顺利能导出 PDF, 新版报错 ``` System.ArgumentException:“Cannot set Column 'UnitPrice2' to be null. Please use DBNull instead.” ``` ### I'm seeing this behaviour on - [...

bug

### 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...

enhancement