xuzhg / CsdlToDiagram

Simple console app and supporting library to generate PlantUML diagrams from an OData CSDL file.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CsdlToDiagram

Simple console app to generate a PlantUml diagram from an OData CSDL file. Available on nuget as a tool: CsdlToDiagram

Generate a PlantUML diagram to the console.

CsdlToDiagram <csdlFile>

Library CsdlToPlant

.Net Standard 2.1 library to create PlantUML text from a CSDL file. Available on nuget as CsdlDiagrams.Net.

Usage:

    var csdlFile = "<somefilename>";
    var csdl = File.ReadAllText(csdlFile);
    var converter = new PlantConverter();
    var plantUml = converter.EmitPlantDiagram(generator.csdl, csdlFilename);

About

Simple console app and supporting library to generate PlantUML diagrams from an OData CSDL file.

License:MIT License


Languages

Language:C# 100.0%