I am trying to use Radzen Studio to create a demo application with just CRUD pages from an OpenAPI spec.
I have created a new example application, added a data source using my OpenAPI schema successfully. When I try and add a new Page by right clicking on the client, I select CRUD, select all entities and everything else default and Radzen Studio fails with an error I couldn't cut and paste so here is a screenshot:
The source code used for this example solution is here:
Source Code
Any insight would be welcome.
Hi @Adam_Hems,
The Entities not shouldn't be selectable in this case which is the problem. Radzen Blazor Studio cannot create CRUD pages automatically for OpenAPI data sources - you need to pick the methods that return entities etc. Normally this happens when you check entities one by one.
Also I don't think that Radzen Blazor Studio can currently create a CRUD page for something like this:
public partial class inline_response_200_15
{
[JsonPropertyName("value")]
public IEnumerable<ProductCategory> Value { get; set; }
[JsonPropertyName("nextLink")]
public string NextLink { get; set; }
}