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...
代码 ``` var modelInfo = OnlineFullModels.ChineseV4; var modelInfoTable = OnlineTableRecognitionModel.ChineseMobileV2_SLANET; var modelTable = await modelInfoTable.DownloadAsync(); using PaddleOcrTableRecognizer tableRec = new(modelTable); TableDetectionResult tableResult = tableRec.Run(src); ``` 异常 ``` Sdcb.OpenVINO.OpenVINOException HResult=0x80131500 Message=general...
 测试代码 ``` using FreeSql; using FreeSql.DataAnnotations; using System.Diagnostics; class Program { private static Lazy sqlserverLazy = new Lazy(() => new FreeSql.FreeSqlBuilder() .UseConnectionString(FreeSql.DataType.SqlServer, "Data Source=.;Integrated Security=True;Initial Catalog=ds_shop;Pooling=true;Max Pool Size=3") .UseAutoSyncStructure(true)...