Vahagn Yeghikyan
Results
2
issues of
Vahagn Yeghikyan
I have a parameter in C# ```{C#} var selectedUsersIds = new long[]{1,2,3}; ``` which I want to pass to a UDTF in Snowflake: ```{sql} CREATE OR REPLACE FUNCTION GetUserInfo (...
Let us have a class ```{C#} public class MyClass{ // Some methods, variables and constructors public Result OpenStream() { // Implementation } } ``` The only pattern I can think...