Conventions
Guidelines for fluent configuration and naming conventions in Umbraco UI Builder.
Fluent Conventions
Chaining Example
config.AddSection("Repositories")
.Tree()
.AddCollection<People>(p => p.Id, "Person", "People");Lambda Expression Example
config.AddSection("Repositories", sectionConfig => {
sectionConfig.Tree(treeConfig => {
treeConfig.AddCollection<People>(p => p.Id, "Person", "People");
});
});Naming Conventions
Last updated
Was this helpful?