rifftheraff
❔ Add app to share menu
Check following solution: https://stackoverflow.com/questions/75120980/vs2022-net-maui-blazor-start-with-without-debugging-causes-devenv-exe-to-cra
49 replies
Compressing JSON data for SQL server, best way?
I would try not compress the JSON data. Insert it as it is as JSON. SQL server has built in JSON support to query that data. If you compress the data before inserting it, SQL server is not able to query information out of the JSON data structure. It can only retrieve the full compressed blob.
This fully depends on your requirements.
Example (from https://learn.microsoft.com/en-us/sql/relational-databases/json/json-data-sql-server?view=sql-server-ver16):
SQL server also has build in support for compress/decompress. Check article https://techcommunity.microsoft.com/t5/sql-server-blog/storing-json-in-sql-server/ba-p/384576
What is your requirement for compression? Faster transport, DB space, ...?
18 replies
❔ Add app to share menu
Yes it is possible. But their is no good documentation how to do it. I have done it a few weeks ago and it somehow works. But I also needed Explorer context menu integration ....
What I can tell in short is you have to create a App package for your application (MSIX) that has do be installed. The app package tells Windows the extensions your app supports (ex. uap:Extension Category="windows.shareTarget" that your app supports sharing).
I can tell you more later if you wish.
49 replies