Salvatore

Results 5 comments of Salvatore

I've determined that a cast from any custom object to object, then to dictionary will achieve the first functionality. ``` csharp CustomFancyObject realObject=new CustomFancyObject(); Dictionary item=((Dictionary)((object)realObject)); item["foo"]=bar+1; ``` will compile...

I am having a similar issue with casting between implicit casting with ints. ``` csharp int port = 10 + Math.Random() * 4000; ``` compiles into ``` javascript var port=10...

Ran across this issue today. The reasoning makes sense but it still threw me for a bit of a loop. For any future googlers, I added a simple debounce to...

@medelman17 Yes, and its been a bit of a struggle. I have had to move away from prisma migrate for the time being and use a different solution.