Michael Ganss

Results 275 comments of Michael Ganss

There are two issues in 1.0.0 that cause tests to fail: https://github.com/AngleSharp/AngleSharp/issues/1083 and https://github.com/AngleSharp/AngleSharp/issues/1070 Ironically, https://github.com/AngleSharp/AngleSharp/issues/1083 is caused by a breaking change in the public API 😄

AngleSharp 1.0.1 has been released and tests pass now. I'm still hesitant to unpin the AngleSharp dependency because of possible interaction issues with AngleSharp.Css which is still below 1.0. What...

Strange. Have you executed the command from an elevated shell? Is the `SyncChanges.Service.exe` file in that location? Perhaps you can try also using Powershell as described here: https://learn.microsoft.com/en-us/dotnet/framework/windows-services/how-to-install-and-uninstall-services

Can you provide a code snippet that shows the issue?

I can't repro. In your example the Func variable is called `parser` but you're passing a different variable named `converter` to the `Save` method. Could that be the cause?

I can't repro. Can you provide the log output with the log level set to Debug?

Works for me. Had to make `NUM_TRF` a primary key though, otherwise change tracking can't be enabled on the table. Do you have change tracking enabled on the table?

You can set the `CustomFormat` and `BuiltinFormat` properties on the `ColumnInfo` object returned by `AddMapping()`. Does that work for your use case?

Try the `SetCellUsing()` method, see https://github.com/mganss/ExcelMapper?tab=readme-ov-file#custom-mapping. This allows you to style each individual cell.

Here's the code that sets the default column format: https://github.com/mganss/ExcelMapper/blob/681546d8d6c78d1a58fb78e48d49657ea39bed37/ExcelMapper/ColumnInfo.cs#L283-L298 And here's an example on how to set cell color: https://github.com/mganss/ExcelMapper/issues/144#issuecomment-913193871 Perhaps you can work from there.