Andrew Sutton
Andrew Sutton
Hey, @layershifter. Thanks for your response. Yes, that is correct.
> * ETA for `stable` is E.O.M. @gouttierre any updates on this component since this comment? Thanks.
> * In [stable](https://react.fluentui.dev/?path=/docs/components-searchbox--default). ✨ @gouttierre thanks for the update! I'm slightly confused, though, why it was moved out of `Preview Components` when the current version of `react-components` (9.47.5) doesn't...
@ncave Thanks for the quick response! I'll give it a shot. What namespace would `Tuple.from` be under?
No, I am not sure about browser support, but I have been successfully using tuples for functions in my project for a while now just by using partial application. Thanks...
@MangelMaxime @ncave Great, thank you guys for the responses. I really appreciate the help.
Thanks, @ken-okabe ! I'll see if I can figure out something similar for my project.
Yes, it would involve type generation. And I will get back to you as soon as possible with a code example.
This is my current code, just with the table that I'm referencing taking a parameter instead of taking no parameter. In MS SQL Server, the table being called would take...
```sql -- To get Table Functions SELECT * FROM INFORMATION_SCHEMA.ROUTINES WHERE ROUTINE_TYPE = 'FUNCTION' AND DATA_TYPE = 'TABLE' -- To get Scalar functions, same as above except filter out DATA_TYPE...