Thomas Barnekow
Thomas Barnekow
Looking at option 4, how would that work with SQL Server, where the `rowversion` is a `binary(8)` (or `varbinary(8)` if it is nullable)? Further, could you provide an example of...
@bart-degreed, thanks for documenting this so nicely. I've run into the same issue. The reported error was like your second bullet (invalid column name). I've successfully used the first workaround.
@twsouthwick, as noted in PR #997, setting the `OpenXmlPart` in the `LoadFromPart` leads to a failed unit test.
My recommendation in cases like this is to: 1. manually create a correct Word document using Microsoft Word; 2. check out the package structure and Open XML markup; and 3....
@Yanal-Yves, there is no bug in the Open XML SDK. What everybody needs to understand is that the Open XML SDK provides a super-low level API for creating Open XML...
@Yanal-Yves, the `SetXElement` method is one of the extension methods provided by the `DocumentFormat.OpenXml.Linq` project in this repository. It should have been published as a NuGet package together with `DocumentFormat.OpenXml`...
Yes, `SaveAs` does save the original. Unless deeper architectural changes are made, it must work that way. The main purpose is basically to create a copy, or clone, of the...
@atrauzzi, yes, this would definitely warrant some explicit documentation or even a "warning". @AlfredHellstern, I'd say this is a "feature" and not a "bug". It might also be very complicated...
@twsouthwick, what are your thoughts on this? Is it possible to add an `SdtContentElement` class from which `SdtContentBlock`, `SdtContentRun`, `SdtContentRow`, and `SdtContentCell` derive? If so, we should also add the...
We'd not have multiple inheritance issues here. For example, `SdtContentBlock` directly inherits from `OpenXmlCompositeElement`. The change I am talking about would mean that `SdtContentBlock` would inherit from the new `SdtContentElement`,...