Create OpenAPI Datasource Fails with Exception

I am new to Blazor Studio and I am attempting to follow the walkthrough (Consuming OpenAPI (Swagger) services | Radzen Blazor Studio), which did work - but using my own OpenAPI Spec instead which, when I went with the defaults, threw an exception (below). Is this a bug in Radzen Blazor Studio or am I doing something wrong?

Steps: New Application -> Blazor Web Application --> .NET 9 / WebAssembly --> Add New Data Source --> OpenAPI --> here --> default settings --> Exception.

Blockquote C:\Users\adamh\source\repos\AdventureWorks\Client\Services\AdventureWorksService.cs(96,153): error CS0234: The type or namespace name 'SalesOrderDetailNoAutoPK' does not exist in the namespace 'AdventureWorks.Server.Models.AdventureWorks' (are you missing an assembly reference?) ...
at Radzen.Server.ProjectContext.Compile(Compilation compilation, AssemblyLoadContext context)
at Radzen.Server.ProjectContext.CompileIn(LoadContext context)
at Radzen.Server.LoadContext.LoadFromSolution(AssemblyName assemblyName)
at Radzen.Server.LoadContext.Resolve(AssemblyLoadContext context, AssemblyName assemblyName)
at System.Runtime.Loader.AssemblyLoadContext.GetFirstResolvedAssemblyFromResolvingEvent(AssemblyName assemblyName)
at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingEvent(AssemblyName assemblyName)
at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingResolvingEvent(IntPtr gchManagedAssemblyLoadContext, AssemblyName assemblyName)
at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor)
at System.Reflection.MethodBaseInvoker.InvokeDirectByRefWithFewArgs(Object obj, Span`1 copyOfArgs, BindingFlags invokeAttr)

This suggests that Radzen generated code that tries to reference a property called SalesOrderDetailNoAutoPK, but that field wasn't generated—or wasn’t placed in the namespace it expected.

Ok thanks for this. I did some digging and found that all the classes were generated and in the correct namespace, but with different naming conventions so this class was called SalesOrderDetail_NoAutoPK. I manually corrected all the references to this and all the others tht broke for the same reason, and the code compiled. This suggests to me a bug as it is quite reproducible using the AdventureWorks schema (but not using the PetStore example).