Category: DocumentorDatabaseExtensionsAspire

  • DocumentorDatabaseExtensionsAspire–part 3–usage

    The usage is pretty simple : add  the package https://www.nuget.org/Packages/DocumentorDatabaseExtensionsAspire to the Aspire host project.  Add an SqlServer database and write //accepts also relative paths var res = db.AddDocumentationOnFolder(@”D:\documentation”); That will be all ! And here it the Aspire Dashboard with documentation for Pubs database And the diagram Here you will find a video about…

  • DocumentorDatabaseExtensionsAspire–part 2–implementation

    The Aspire project as already a database resource  – and a executing one ( sqlpad or dbgate or adminer ) So the answer to the several problems to be solved: 1. How to obtain the tables definition  ? We can obtain the definition by handling ourselves the tables- but why do not profit from the…

  • DocumentorDatabaseExtensionsAspire–part 1–idea

    The Aspire project as already a database resource  – and a executing one ( sqlpad or dbgate or adminer ) What if we can generate documentation for the database  ? There are several problems to be solved: 1. How to obtain the tables definition  ? 2. How to generate documents for the site ? 3.…