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 ?