Adaptive CRUD for ASP.NET Core. With EasyData you can get both API endpoints and client-side UI for all CRUD operations in a matter of minutes using just your DbContext and a few lines of code.
MIT License
594
stars
63
forks
source link
Show a specific column when referencing another entity #158
I have a One-to-One entity that has the following representation: {Id;Cost;Collaborator;CollaboratorId}
The Id is obviously the foreign key and the Collaborator is the foreign entity. When adding or editing the entity, I'd like to show the Collaborator.Name rather than the Collaborator.Id. Is it possible?
Hello,
I have a One-to-One entity that has the following representation:
{Id;Cost;Collaborator;CollaboratorId}
The Id is obviously the foreign key and the
Collaborator
is the foreign entity. When adding or editing the entity, I'd like to show the Collaborator.Name rather than the Collaborator.Id. Is it possible?