Schemata.DSL
1.0.0-preview.24180.84
This is a prerelease version of Schemata.DSL.
There is a newer prerelease version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Schemata.DSL --version 1.0.0-preview.24180.84
NuGet\Install-Package Schemata.DSL -Version 1.0.0-preview.24180.84
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Schemata.DSL" Version="1.0.0-preview.24180.84" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Schemata.DSL --version 1.0.0-preview.24180.84
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Schemata.DSL, 1.0.0-preview.24180.84"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Schemata.DSL as a Cake Addin #addin nuget:?package=Schemata.DSL&version=1.0.0-preview.24180.84&prerelease // Install Schemata.DSL as a Cake Tool #tool nuget:?package=Schemata.DSL&version=1.0.0-preview.24180.84&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Schemata DSL (Schemata Modeling Language, aka SKM)
Writing Schemata DSL for business entities, and generate database models, view models, mapping, validation, and so on.
Quick Start
dotnet add package --prerelease Schemata.DSL
Basic Grammar
Namespace Example
Trait Identifier {
long id [primary key]
}
Trait Timestamp {
timestamp? creation_date
timestamp? modification_date
}
Trait Entity {
Use Identifier, Timestamp
}
Entity User {
Use Entity
string email_address [b tree]
string phone_number [b tree]
string password
string nickname
Object response {
id
nickname
email_address [omit]
obfuscated_email_address [omit] = obfuscate(email_address)
phone_number [omit]
obfuscated_phone_number [omit] = obfuscate(phone_number)
}
}
There are no supported framework assets in this package.
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.