SQLKata - select query results into temp table. Do we have any option? I tried to search documentation and looks like we dont have any option to store into temporary table.
Any suggestions would really help.
select a.name, a.id into #tmp_table from table1 a join table b on a.id =b.tid
Have you tried using ".AsInsert"? Maybe I have to change the way of doing it a little bit but I think it works.
Something like this....