Randzen Angular 11 Beta Routing issue

Hi everyone,

I'm using radzen beta (angular 11).
I faced an error when editing any row. F12 > Network shows a 404 error.
Diggind deeper, i compared controllers generated with beta and non beta, results are :
// How it's generated in beta => error 404
[HttpPatch("{keyx},{keyy}")]

// How it's generated in main version => Works fine
[HttpPatch("/odata/mydb/MyEntity(x={keyx},y={keyy})")]

Am I missing sth ? if not, could you please provide a patch ?
Otherwise, is generator's code opensource so that one can fix issues by oneself ?

Many thanks.

I just tested the latest beta and it generates this code:

[HttpPatch("/odata/Sample/Orders(Id={Id})")]
[EnableQuery(MaxExpansionDepth=10,MaxAnyAllExpressionDepth=10,MaxNodeCount=1000)]
public IActionResult PatchOrder(int key, [FromBody]Delta<Models.Sample.Order> patch)

I must have grabbed an old file.
Can you please confirm that this thread is the source for fiding latest builds :
https://forum.radzen.com/t/important-radzen-and-angular-11/4693 ?

Yes, it is. The latest beta is 2.90.beta-0

Yes that was it, I was using 2.70.0-beta-1.
It's working fine now.
Many thanks