Equivalent of SqlFunctions in EF Core

What is the equivalent of `SqlFunctions` in Entity Framework (EF) Core 2.0? I am trying to convert this to EF Core ``` private static readonly MethodInfo StringConvertMethodDouble = typeof(SqlFuncti...

21 Feb at 05:59

What is the .vs folder used for in Visual Studio solutions?

What is the .vs folder used for exactly? It gets created at the base folder of my solution. I can see some hidden files and different files appear for different projects. I'm having a hard time chasin...

21 Feb at 02:16

Jenkins not restoring NuGet packages with new MSBuild restore target

We have a .net full framework WPF application that we've moved from along with changing to in the csproj file instead of packages.config. Building on the development machines appears to be fine and...

21 Feb at 00:46

How can I remove the debug banner in Flutter?

I'm using `flutter screenshot` and I expected the screenshot to not have a banner, but it has. Note that I get a `not supported for emulator` message for profile and release mode.

Visual Studio 2017 Localization Publish Settings

This should be simple, but I haven't found a way to make this stop happening. Visual Studio publishes a lot of localized DLLs - It appears there is German localization, Spanish localization, Italian l...

How do I log authorization attempts in .net core

I'm trying to write to a log when I person tries to access a method under an Authorize Attribute. Basically, I want to log if a person uses an invalid token or an expired token. I'm using basic Authen...

20 Feb at 17:37

Dynamic lambda expression with dynamic parameter

Given this class ``` public class Foo { public string Name { get; set; } } ``` This method (in some other class)... ``` private Func<Foo, string> Compile(string body) { ParameterExpression...

10 Apr at 06:23

Why do I get the error "expressions must have one parent element", how do I fix this?

I'm relatively new to React and I'm wondering what's the standard here. Imagine I have a react-router like this one: ``` <Router history={history}> <Route path="/" component={App}> <Route ...

17 Feb at 16:25

How to test .NET Standard 2 library with either NUnit, xUnit or MSTest from either Rider or VS 2017?

I have a project where I use [Azure Durable Functions](https://github.com/Azure/azure-functions-durable-extension), and they are available only on .NET Standard 2. So, it defines which class library c...

ModelState validation in Web Api when default formatter is servicestack

I have WEB.API controller which use attribute for modelstate validation, when I use default serializer of WEB API every thing works fine, but when I change it to servicestack required attribute for bo...

Force retesting or disable test caching

When I run the same go test twice the second run is not done at all. The results are the cached ones from the first run. ``` PASS ok tester/apitests (cached) ``` I already checked [...

20 Feb at 10:13

Unable to debug and publish Azure Function from Visual Studio 2017

I used to debug and publish my Azure Function Project using Visual Studio 2017. However suddenly everything stopped working. When i tried to debug the project i got the error "A project with an Out...

Deserialize Root Object in ServiceStack Explicit Response DTO

I'm consuming a third party WebApi using ServiceStack. Imagine this API has the following route. `https://api.example.com/v1/people/{id}` returns the person with the specified ID. JSON: ``` { ...

21 Feb at 11:14

Passing props to MUI styles

Given the `Card` code as in [here](https://mui.com/components/cards/#main-content). How can I update the card style or any material UI style as from: ``` const styles = theme => ({ card: { minWid...

22 Oct at 15:3

Update Identity User Claims in Web API

I'm currently trying to update the user's email/username from a mobile app to a Web API project. I'm currently using oauth and token authentication. When updating the identity user, the user becomes u...

4 Apr at 06:6

How do I write implementations for an application that uses ServiceStack?

I've been tasked with integrating an existing application with another application that uses ServiceStack to expose its API's to the outside world. I can get to the metadata page (at /metadata) and i...

19 Feb at 23:52

ServiceStack squirrel

I am using the starter (free) version of ServiceStack to develop an Open Source Windows Service. I have been looking for a means to have the running Windows Service regularly poll a URL for newer vers...

19 Feb at 19:49

How can I figure out which tiles move and merge in my implementation of 2048?

I am building a little 2048 WinForms game just for fun. Note that this is not about a [2048 AI](https://stackoverflow.com/questions/22342854/what-is-the-optimal-algorithm-for-the-game-2048). I am jus...

19 Feb at 18:11

ASP.NET Core deployed on IIS returns 502 Error for long running requests

I have an ASP.NET Core 2 web application which is hosted on IIS 10 on Windows Server 2012 without any load balancing and special configurations. For some MVC actions which takes too long we get a 502 ...

19 Feb at 15:41

Get Sheet By Name

I'm trying to get the following formula to work: ``` function setDataValid(range, sourceRange) { var rule = SpreadsheetApp.newDataValidation().requireValueInRange(sourceRange, true).build(); rang...

13 Mar at 13:8

Found conflicts between System.Net.Http

I have several projects in my VS solution. Whenever I add "System.Net.Http" NuGet package to one it shows as version 4.2.0.0. Then I do the same and add same NuGet Package, however, the other says ver...

Data Protection provider across Asp.NET Core and Framework (generate password reset link)

I am running into this problem relating to the [DataProtectionProvider](https://learn.microsoft.com/en-us/uwp/api/windows.security.cryptography.dataprotection.dataprotectionprovider), first we only ha...

VSCode single to double quote automatic replace

When I execute a `Format Document` command on a Vue Component.vue file VSCode replace all single quoted string with double quoted string. In my specific case this rule conflicts with electron-vue lin...

27 May at 06:39

Authorization header requires 'Credential' parameter

We are using Identity Server4 with .NET Core and deploy the application as AWS Serverless lambda function. When are calling the token endpoint to generated access token we got the following error mess...

9 Dec at 15:57

Error `Async test method must have non-void return type` when upgrading from NUnit 2 to NUnit 3

I have to refactor am unit test from NUNIT 2 to NUNIT 3 and the following syntax throws an error: ``` var expectedResponseMessage = new HttpResponseMessage(); Func<Task<HttpResponseMessage>> continua...

18 Apr at 13:47