I am working on an application which contains a 'Kanban' board (Some will know what it is). I am trying to return a C # object, which contains other objects (which would be the tasks that the user has created on that board). What I want to do is that at the moment of returning the data to the view, I am only listing the 'Task' field of each one of those objects.
This is the way I am returning the data and it works for me. But as you can see the part I have commented is what does not work, I guess because I must do some conversion to that object 'kanban'.
What should I do or how can you help me?
Thanks