-
Hello, is it possible to process more than one table in output ? |
Beta Was this translation helpful? Give feedback.
Answered by
fw2568
Jan 15, 2024
Replies: 1 comment 2 replies
-
Sure, you can call GetField, MapStructure and MapTable as often as you need. However, you are probably struggling with the fact that you can only return one type. The concept is, that you can build your output type within the output method. Example: In this example, we call both MapStructure and MapTable and create the output type from their results. Of course, you can do this for multiple tables. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Transparent identifier members are automatic fields generated in linq statements (see https://ericlippert.com/2014/07/31/transparent-identifiers-part-one/). As your field docData is now a IEnumerable<> it contains no fields description and status.
A working code: