How find bin directory in ASP.NET Core 3.1?
My EF project is in one project and my ASP.NET Core project in another project , D:\AspProjects\DatabaseHafez> D:\AspProjects\DatabaseHafez\bin\Debug\netcoreapp3.1\ap...
- Modified
- 3 May at 07:39
How to add values through user secrets to an array of objects in C#
So I'm having issues trying to get Visual Studio to add user secrets to a property that is an array. I have a feeling this sort of thing can't be done but I really need to have a way of iterating thro...
- Modified
- 14 Sep at 08:6
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...
- Modified
- 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...
- Modified
- 15 Jun at 15:35
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...
- Modified
- 13 Feb at 13:58
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...
- Modified
- 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...
- Modified
- 19 Feb at 08:19
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...
- Modified
- 13 Feb at 07:24
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 { ...
- Modified
- 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 ...
- Modified
- 12 Feb at 23:57
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...
- Modified
- 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...
- Modified
- 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...
- Modified
- 12 Feb at 17:53
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...
- Modified
- 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...
- Modified
- 12 Feb at 14:20
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 ...
- Modified
- 25 Jul at 07:22
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?
- Modified
- 11 Feb at 17:14
.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[]...
- Modified
- 12 Feb at 01:9
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...
- Modified
- 16 May at 18:29
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...
- Modified
- 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:/...
- Modified
- 10 Feb at 21:24
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...
- Modified
- 12 Feb at 07:37
.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:...
- Modified
- 22 Dec at 16:56
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 ...
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...
- Modified
- 15 Feb at 05:6