Questions

PayPal in ASP.NET Core

How do I integrate with the `PayPal API` in an `ASP.NET Core` app? I have tried various libraries but none of them are compatible with `ASP.NET Core`... how do I do it?

25 Oct at 08:10

How to mock HttpContext.User

I am working on a Asp.net MVC 5 project and I am trying to setup a mock to return a custom principal within a controller. I have search and tried different approach suggested but none of them works. ...

.NET Core get connection string from appsettings.json

I develop a simple web app and, in the future, I want to do it as multi-tenancy. So I want to write the connection string straight into `OnConfiguring` method: ``` public class ApplicationContext : ...

24 Oct at 12:49

How do I insert data when the primary key column is not an identity column?

I'm trying to insert data using Dapper.Contrib, in a table where the primary key column is not an identity column. The database table is created with this script: ``` begin transaction create table...

24 Oct at 11:54

Redirect to login when unauthorized in ASP.NET Core

In the previous ASP.NET MVC, there was an option to redirect to the login action, if the user was not authenticated. I need the same thing with ASP.NET Core, so I: 1. created a ASP.NET Core project...

Why detailed error message is not passed to HttpClient?

I am using the default Web Api controller that is auto generated. I am testing the validation and error handling in the client side. But somehow I have realised that the detail error message is not pa...

24 Oct at 10:23

Connecting a client to a TCP server using TLS 1.2

I'm trying with no luck to connect a device to a .Net (4.5.2) server. It's a TCP connection opened by the device, that uses TLS 1.2. - `SslStream`[DotNetty](https://github.com/Azure/DotNetty)- Any .N...

7 Oct at 07:59

EPPlus number format

I have an Excel sheet generated with Epplus, I am experiencing some pain points and I wish to be directed by someone who have solved a similar challenge. I need to apply number formatting to a double ...

22 Nov at 07:10

How to use HttpClient without async

Hello I'm following to [this guide](https://learn.microsoft.com/en-us/aspnet/web-api/overview/advanced/calling-a-web-api-from-a-net-client) ``` static async Task<Product> GetProductAsync(string path)...

9 Aug at 05:12

How to add Roles to Windows Authentication in ASP.NET Core

I created an asp.net core project in visual studio 2015 with windows authentication. I can't figure out how to add roles to the Identity. I have a table with usernames for the windows account. And wh...

ASP.NET Core Response.End()?

I am trying to write a piece of middleware to keep certain client routes from being processed on the server. I looked at a lot of custom middleware classes that would short-circuit the response with ...

23 Oct at 18:52

Largest sum of upper-left quadrant of matrix that can be formed by reversing rows and columns

I'm working on a HackerRank problem that's finding the largest sum of the elements in upper-left quadrant of a 2N x 2N matrix after reversing rows and columns. For example, if the matrix is ``` M = [...

Where to call .AsParallel() in a LINQ query

# The question In a LINQ query I can correctly (as in: the compiler won't complain) call .AsParallel() like this: ``` (from l in list.AsParallel() where <some_clause> select l).ToList(); ``` or...

23 Oct at 16:54

Is there any danger in using ConfigureAwait(false) in WebApi or MVC controllers?

Say I have two scenarios: ``` [System.Web.Http.HttpPost] [System.Web.Http.AllowAnonymous] [Route("api/registerMobile")] public async Task<HttpResponseMessage> RegisterMobile(RegisterMod...

The instance of entity type 'BookLoan' cannot be tracked

I'm trying to update an entity and I've run into the following error: > InvalidOperationException: The instance of entity type 'BookLoan' cannot be tracked because another instance of this type wi...

Retrieve IAuthRepository from ServiceStackController

I've upgraded an old ASP.Net Mvc project that uses Servicestack from 4.0.40 to 4.5 but I've seen that when calling the base.HasRole I've to pass an IAuthRepository, I was wondering if there's a way to...

22 Oct at 19:28

How to connect to a Unix Domain Socket in .NET Core in C#

I've created a unix socket in .NET Core on Linux (Ubuntu 16.04): ``` var unixSocket = "/var/run/mysqld/mysqld.sock"; var socket = new Socket(AddressFamily.Unix, SocketType.Stream, ProtocolType.IP); `...

15 Jul at 05:18

Unable to deserialize service response when using servicestack MsgPack client

Am getting below error when trying to deserialize the response from the service while using servicestack MsgPackServiceClient. Exception: {"Cannot deserialize member 'test1' of type 'System.Int32'."...

22 Oct at 09:7

HttpClient in using statement

hi i read this article [You're using HttpClient wrong and it is destabilizing your software](http://aspnetmonsters.com/2016/08/2016-08-27-httpclientwrong/) the article is suggesting these 2 1. Make ...

22 Oct at 00:30

Compiler generates infinite loop after finally block when

I'm using standard VS2015 compiler targeted for .Net 4.6.2. Compilator emits infinite loop after failing finally block. Some examples: Debug: ``` IL_0000: nop .try { IL_0001: nop IL_0002: ...

29 Oct at 06:56

Reflection GetValue of static field with circular dependency returns null

With these classes: ``` public class MainType { public static readonly MainType One = new MainType(); public static readonly MainType Two = SubType.Two; } public sealed class SubType : MainT...

EF Core Include on multiple sub-level collections

Consider this aggregate root... class Contact { ICollection Addresses { get; set; } ICollection Items { get; set; } ICollection Events { get; set; } } ...which I have used like so......

Thread aborted exceptions in wcf service

I have a WCF service (built in .NET framework 3.5) hosted on IIS 6.0. The flow of the code is as follows 1. Client (which is another web service) calls the WCF service 2. WCF services invokes a thr...

How can I rename default session cookie names in servicestack

ServiceStack has the default cookie names "ss-id" "ss-pid" and "ss-opt" defined in SessionFeature.cs Is there a way to change the default names to something else? The configuration code in HostConfi...

Invalid zip file after creating it with System.IO.Compression

I'm trying to create a zip file that contains one or more files. I'm using the .NET framework 4.5 and more specifically System.IO.Compression namespace. The objective is to allow a user to download a ...

21 Oct at 11:21