Provides additional LINQ functionality to the Open XML SDK to allow operations using XLINQ.
$ dotnet add package DocumentFormat.OpenXml.LinqLINQ-friendly extensions for the Open XML SDK, providing XLINQ-based APIs for querying and transforming Open XML documents.
Basic usage with LINQ to XML:
using (var doc = WordprocessingDocument.Open("example.docx", false))
{
var xDoc = doc.MainDocumentPart!.GetXDocument();
var paragraphs = from p in xDoc.Descendants(W.p)
select p;
}