LinqToXsdCore icon indicating copy to clipboard operation
LinqToXsdCore copied to clipboard

LinqToXsd ported to .NET Core (targets .NET Standard 2 for generated code and .NET Core 3.1, .NET 5+ for the code generator CLI tool).

Results 24 LinqToXsdCore issues
Sort by recently updated
recently updated
newest added
trafficstars

XML.xsd are very commonly referenced in other schemas, such as http://docs.oasis-open.org/legaldocml/akn-core/v1.0/os/part2-specs/schemas/xml.xsd Including them as built-in schema mapping in the library would obviate the need for client code to be generated...

enhancement

Generates: ``` private static void BuildWrapperDictionary() { wrapperDictionary.Add(typeof(OurClientMatters.Models.OurClientMatters.Contracts.ReviewPeriod), typeof(global::OurClientMatters.Models.OurClientMatters.Contracts.periodType)); } ``` When it should be: ``` private static void BuildWrapperDictionary() { wrapperDictionary.Add(typeof(global::OurClientMatters.Models.OurClientMatters.Contracts.ReviewPeriod), typeof(global::OurClientMatters.Models.OurClientMatters.Contracts.periodType)); } ```

bug

When adding a second `Document` element to a `MsgHead` element defined in the following schema: ``` xxx ``` the previous entry is removed. This is happening in `.\LinqToXsdCore\XObjectsCore\API\ChoiceContentModelEntity.cs` when a...

Thanks for updating LINQToXsdCore. We used it to generate the C# file. In my scenario, we have to create WCF Service Contract based on C# generated code (Because client requirement...

```linqtoxsd config -e``` seems to ignore the empty namespace in the XSD file. It does not explicitly create a `````` configuration element to map an empty namepsace to a CLR...

Implement generating a `FileInfo` property on generated types (the ones that map to global elements or complex types or have `static Load()` methods). Also add a new public static Load...

enhancement

When linqtoxsd gen is invoked and passed the file path to an XSD which has no configuration file that matches `$"{filename}.config"` and `-a` argument is also passed then no output...

bug

Hello, According to the help function of the tool, when there are multiple includes/imports are detected, they only get included once. This doesn't seem to be working. Is there any...

bug

After the enum generation is completed I would be willing to make this change. I have to work with XML files provided by vendors that define the enumeration restriction for...

enhancement

When XSD's are authored following the ['salami slice'](https://www.oracle.com/technical-resources/articles/java/design-patterns.html) pattern, determining the ultimate root element(s) requires manually inspecting the schema which is annoying and tedious, but brute forcing it is possible...

enhancement