Conventions
Conventions used by Konstrukt, the back office UI builder for Umbraco.
Fluent Conventions
// Chaining example
config.AddSection("Repositories").Tree().AddCollection<People>(p => p.Id, "Person", "People");
// Delegate example
config.AddSection("Repositories", sectionConfig => {
sectionConfig.Tree(treeConfig => {
treeConfig.AddCollection<People>(p => p.Id, "Person", "People");
});
});Naming Conventions
Last updated