It is possible to to specify with Request should be used for on blazor auto Edit Forms?
Let says i have the following example
class MyEntity {
....
[References(typeof(Person))]
public int PersonId {get;set;}
}
class QueryPerson: QueryDb<Person> {}
class QueryPerson2: QueryDb<Person, CustomResponse> {}
When i try to select a person from the auto edit form generated by blazor AutoQueryGrid, it try use QueryPerson2
causing and exception because it can’t cast CustomResponse
to Person.
It is possible to specify somewhere to use only QueryPerson
?
thanks