bassem-mf

Results 8 comments of bassem-mf

Here is how I remove the configuration sources added silently by `ConfigureWebJobs()` and add the configuration sources explicitly. ``` var hostBuilder = new HostBuilder(); hostBuilder.ConfigureWebJobs(b => { b.AddAzureStorageCoreServices(); b.AddAzureStorage(); });...

This happens to me too with VS Code on Windows. Also `@()` is auto-corrected to `@__o()`

1. Install Sortable.js and its type definitions from DefinitelyTyped `npm i sortablejs --save` `npm i @types/sortablejs --save-dev` 3. Add the esModuleInterop flag to the "tsconfig.json" file ``` { "compilerOptions": {...

This change broke a lot of my CSS. The ':last-child' CSS selector no longer applies to the elements that have the "__Invariant" input added after them.

This feature will help me copy/paste data between tables that have the same columns. It will also help me copy data from a spreadsheet and paste to insert into a...

I am seeing the same issue with version 8.0.0 Here are the steps to reproduce this issue. 1. Connect to the "postgres" database and execute this command to create a...

@craxal Sorry, yes, I meant the Storage Explorer Snap. I posted a question on the Docker forum when I was still trying to figure out the issue. It has the...

> [@roji](https://github.com/roji) what about the case when doing a First\FirstOrDefault for cases when I'm selecting by a unique id column.. > > ``` > db.Users > .Where(u => u.UserId ==...