We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
dotnet tool install -g --add-source https://api.nuget.org/v3/index.json --ignore-failed-sources Enigmatry.Entry.CodeGeneration.Tools
dotnet add package Enigmatry.Entry.CodeGeneration.Configuration
public class Project { public int Id { get; set; } public string Name { get; set; } } public class ProjectConfiguration : IFormComponentConfiguration<Project> { public void Configure(FormComponentBuilder<Project> builder) { _ = builder .Component() .IncludeUnconfiguredProperties(false) .HasName("ProjectEdit") .BelongsToFeature("Project"); _ = builder.InputFormControl(x => x.Name) .WithLabel("Project name"); } }
entry-codegen --source-assembly .\Customer.Project.CodeGeneration.Setup\bin\Debug\net6.0\Customer.Project.CodeGeneration.Setup.dll --destination-directory .\customer-project-app\src\app\features