Signum Documentation

The documentation comes from the Markdown files in the source code, so is always up-to-date but available only in English. Enjoy!

Paste your Framework commit SHA

Entity URLs

To navigate to a specific entity, use the following local URL format:

<UrlLeft>/view/MyTypeName/Id

Where:

  • MyTypeName is the entity type name without the Entity suffix (e.g. Order, Customer, Product)
  • Id is the primary key of the entity β€” can be a number or a GUID

Examples:

  • <UrlLeft>/view/Order/42 β€” opens Order with numeric Id 42
  • <UrlLeft>/view/Product/a3f1c2d4-85e6-4b2a-9f0d-123456789abc β€” opens Product with a GUID Id

Important: Local URLs must never include a host prefix. Do not add http://, https://, or any domain name. Always use the path only, starting with /.

You can present these to the user as markdown links:

[Order #42](<UrlLeft>/view/Order/42)
[Product X](<UrlLeft>/view/Product/a3f1c2d4-85e6-4b2a-9f0d-123456789abc)