Hi,
I have multiple tables with values I want to make appear in dropdown menus in the client during creation or update of entities. Typical case is phonetype for phones. Practically, I should not send anything from the client, just retrieve the complete list of items. I was thinking to use GetAll() or GetAllList() or GetAllListAsync(), but there is no way. I have to give an input and the input it is not to be null.
Can you help me? This is a requirement I have for a lot of items.
Thanks
2 Answer(s)
-
0
Just use GetAllList/GetAllListAsync in your application service method. Your application service method should not get any parameters. Can you send your application service method to see how did you implement it.
-
0
I was using those, but probably I had issues with my Dtos. Now Everything is working fine. Thanks!