torbonde
torbonde
I'm also curious about the possibility of adding support for table-valued functions. Not having worked with type providers in general or this project in particular, is there any way I...
@Thorium, sorry to pull you into this, but I noticed you are active on this repository. Do you know which challenges needs to be overcome, in order to be able...
I haven't really used PostgreSQL or MySQL, but a quick googling tells me PostgreSQL supports table valued functions, while MySQL doesn't. Is that an issue? In order for it to...
@pezipink I think the solution you propose is far bigger than what is required to resolve the current issue, which is basically to support functions returning tables. The return tables...
Well, you can cross apply, but you can also do regular joins. Both of the below are valid (T-SQL) queries ``` select * from (values (1), (2), (100)) as Vals(v)...