Lukas Antanavičius

Results 9 comments of Lukas Antanavičius

@samcov I had this problem as well, everything works but throws these errors. **I got it fixed simply by editing the connection string's password** from `password=` to `password=''`, notice two...

Hey @khellang. On a Ubuntu 20.04 64bit-based VPS: ``` $ locale -a C C.UTF-8 ``` ``` $ locale LANG= LANGUAGE= LC_CTYPE="POSIX" LC_NUMERIC="POSIX" LC_TIME="POSIX" LC_COLLATE="POSIX" LC_MONETARY="POSIX" LC_MESSAGES="POSIX" LC_PAPER="POSIX" LC_NAME="POSIX" LC_ADDRESS="POSIX" LC_TELEPHONE="POSIX"...

the locale problem is not related with my original issue.

a day later I noticed, that `new DefaultAzureCredential()` returns credentials for the running application, not for a logged-in user. But this does not change the fact that the Subscriptions call...

Sorry, @ArthurMa1978, but I don't work with this project any more so I can't answer you. But the idea was that without a subscription ID and only having the user...

Thank you for a detailed response! Unfortunately, I cannot change the path in any way or I would need to change the content in blocks for each appearance. Can't I...

Thanks, turns out in my case there was no real issue, since, I think, etag is handled by a browser when a new file is uploaded and accessed via the...

hey @zeug-it sadly, after two years nothing has changed. I had managed to calculate the percent on my own from the total amount and discounted amount with various functions in...

oh yeah maybe, in my solution I got it like this: ```C# var taxlist = await wc.TaxRate.GetAll(); double tax = 0; if (taxlist.Count == 1) { tax = double.Parse(taxlist.SingleOrDefault().rate, System.Globalization.CultureInfo.InvariantCulture);...