Simbarashe Mukodzani
Simbarashe Mukodzani
I found a workaround; I implemented a custom `ITempTableNameProvider` and a `ITempTableNameLease` to return a temporary table name without the integer suffix. I will provide a reproducible code when I...
How to query the data from the tempTable object?
mean, I am using something like this code ```c# // huge data from an unpivot operation IQueryable hugeData = GetCustomTempComponents(); // create temp table var tempTable = await db.CreateTempTableAsync(CreateOptions); //...
OK, thank you, I will try that.