Receive file with servicestack from multipart/form-data

I'm submitting a form as a multipart/form-data from a react app to .net backend. I use FormData on react to post data using axios. On the serverside I'm using servicestack to process the data, text in...

14 Feb at 14:36

Swagger C# Enum generation - underlying int values do not match the original enum

I created an enum on my server with integer values set manually rather than the default increment up from 0 ``` public enum UserType { Anonymous = 0, Customer = 10, Technician = 21, Ma...

Cognito - Client is not enabled for OAuth2.0 flows

I've successfully set up an AWS Cognito environment that runs on Localhost following [this tutorial](https://developerhandbook.com/aws/how-to-use-aws-cognito-with-net-core/). For the next step, I p...

Process sometimes hangs while waiting for Exit

What may be the reason of my process hanging while waiting for exit? This code has to start powershell script which inside performs many action e.g start recompiling code via MSBuild, but probably th...

24 Feb at 14:41

Conventional Routing in ASP.NET Core API

I'm creating an API Application with NET Core 3.1. I'd like to avoid to set route attribute over every `ApiControllers` and Actions. I tryed a lot of combinations over `UseEndpoints` to set a conven...

Azure Functions using Cancellation Token with Http Trigger

I am developing a Function in Azure with Cancellation Token. Its an Http Trigger. I pass in a Cancellation Token in in the method parameters. Its long running function. And I cancel the request in b...

how to reslove Each Request DTO can only be handled by 1 service in service stack

I have two services which wil be having both the service will be having the same DTO. ``` [Route("service1\GetData","Get")] [Route("service2\GetData","Get")] public class GetData { ...

13 Feb at 07:6

How to use both Azure AD authentication and Identity on ASP.NET Core 3?

The web application should allow internal employees with AD accounts to authenticate in the app using Azure AD Authentication. External users should be able to register and sign in using ASP.NET Core ...

JsonException: A possible object cycle was detected which is not supported. This can either be due to a cycle or if the object depth is larger than

In my web API when I run project to get data from the database got this error .net core 3.1 > JsonException: A possible object cycle was detected which is not supported. This can either be due to a cy...

15 May at 18:9

IIS Express vs dotnet run

Actually I understand that is lightweight development server. From the other side runs the application as a console application and binds it to random port. But what is the actual difference? I can...

12 Feb at 21:27

Could not load file or assembly 'System.Threading.Tasks.Extensions, Version=4.2.0.0

I recently installed CsvHelper ([https://joshclose.github.io/CsvHelper/](https://joshclose.github.io/CsvHelper/)) when i try to use the library I get the following error: > Could not load file or ass...

Why is StringValues assignable to String

I don't understand why the following compiles: ``` StringValues sv = httpContext.Request.Query["param"]; string s = sv; ``` My knowledge says that `a` is assignable to `b` only if `a` is of type `b...

12 Feb at 15:32

TimeoutException: The Angular CLI process did not start listening for requests within the timeout period of 0 seconds

I'm getting this error after upgrading to angular 9. I'm using visual studio 2019, ASP .NET core with angular. Even if I create new project and update angular to 9 version, It stops working. Complete...

Blazor TypeError: Cannot read property 'removeChild' of null at Object.e [as removeLogicalChild]

I created a component for a dual list box. Everything is fine but when I submit I get an error. ``` <EditForm Model="Model.Report" class="kt-form" OnValidSubmit="Model.OnSearch"> <div ...

Should I check the dotnet-tools .config directory into source control?

Recently I've noticed a `.config` directory being created by Visual Studio with a `dotnet-tools.json` file in. Should this be `.gitignore`d or checked into source control?

.NET Core 3.1 CreateHostBuilder Cannot parse JSON file

I am experiencing an error when trying to run my ASP.Net Core 3.1 project. The error is at `CreateHostBuilder` within `Program.cs` ``` public class Program { public static void Main(string[]...

Azure Cosmos DB - check if item not exists without throwing error to Application Insights

I built a simple player-tracking API app in ASP.NET Core 3.1 that uses Azure Cosmos DB as its back end. The API to create a new player entry first checks if an entry with the same ID under a given par...

ServiceStack ORMLite: Mutliple Column GroupBy With Table Aliases

I wish to use ORMLite to group by multiple aliased tables but I seem to have hit an issue. When using Sql.TableAlias with an anonymous type in the GroupBy of an SqlExpression the SQL generated for th...

11 Feb at 03:42

Docker - The framework microsoft.AspNetCore.App, version '3.1'0 was not found on build

I'm attempting to learn about docker and how to containerize a .NET core Web app. I've been following the tutorial below and have made good progress except when I actually run my project. ``` https:/...

Strongly Typed Ids in Entity Framework Core

I'm trying to have a strongly typed `Id` class, which now holds 'long' internally. Implementation below. The problem I'm having the using this in my entities is that gives me a message that the prope...

.net core 3.1: 'IAsyncEnumerable<string>' does not contain a definition for 'GetAwaiter'

I have a .net core 3.1 console app. I have a method with the following signature: ``` public async IAsyncEnumerable<string> GetFilePathsFromRelativePathAsync(string relativePath) ``` If I call it:...

Private methods vs local functions

To my understanding, both local functions and private methods serve merely as implementation details - helpers for public methods. Why would I want to choose one over the other? When using a private ...

9 Feb at 14:54

Ajax passing empty value but Controller get null in ASP.NET MVC

I'm working with `ASP.NET MVC` and have a problem with the value sent from `Ajax` to my controller. Let's say I have `SampleViewModel` like this: ``` public class SampleViewModel { private strin...

15 Feb at 05:6

JsonSerializer.Deserialize fails

Consider the code... ``` using System; using System.Text.Json; public class Program { public static void Main() { int id = 9; string str = "{\"id\": " + id + "}"; var...

How can I POST a file using ServiceStack IRestGateway

I'm currently accessing a 3rd party restAPI using ServiceStacks IRestGateway with my own backing class. It's basically the same as the ServiceStack.Stripe [gateway](https://github.com/ServiceStack/Str...

7 Feb at 16:21