The name WebHost does not exists in current context
I'm migrating from ASP.NET Core 1.x to v2.0 with the help of following post on docs.microsoft: [https://learn.microsoft.com/en-us/aspnet/core/migration/1x-to-2x/](https://learn.microsoft.com/en-us/asp...
- Modified
- 21 Nov at 15:17
C# BeforeFieldInit explanation confusion
I read through Jon Skeet's [article][1] about `beforefieldinit` and I stumbled upon a question. He mentions that the type initializer can be invoked at any time before the first reference to a static ...
- Modified
- 6 May at 00:56
Why caching access token is consider bad in oauth2?
I am following this article for revoking user access : [http://bitoftech.net/2014/07/16/enable-oauth-refresh-tokens-angularjs-app-using-asp-net-web-api-2-owin/](http://bitoftech.net/2014/07/16/enable...
- Modified
- 23 Nov at 13:25
How to "Add Service Reference" in .NET Standard project
I would like to do "Add Service Reference" in .NET Standard project.(Visual Studio 2017) I installed "System.ServiceModel.Http" and "System.ServiceModel.Security" on NuGet in order to make WCF access ...
- Modified
- 11 Jan at 13:29
How to prevent HttpClient from sending the Connection header
HttpClient includes this as 'Keep-Alive' by default. I've been able to set it to 'Close' using `httpClient.DefaultRequestHeaders.ConnectionClose = true;` but how do I omit it altogether?
- Modified
- 21 Nov at 11:57
AWSSDK Got error `Unable to load DLL 'Crypt32.dll'` in macos
I don't know the reason but it might be because macOS was recently updated to `10.13.1 (17B48)`. The code that used to worked some weeks ago just crash with this error > "Unable to load DLL 'Crypt32...
- Modified
- 8 Mar at 07:26
ServiceStack Text - Serialize to JSON with CamelCase on a Dynamic variable
``` var results = await db.SelectAsync<dynamic>(q); ``` If I do `ToJson()` on the results, the names stay in PascalCase and not in CamelCase even if I use `ToCamelCase()` ``` var results = await db...
- Modified
- 21 Nov at 05:15
JwtAuthProvider issue bearToken in response header that is not httpOnly - ServiceStack
I have set ServiceStack AllowNonHttpOnlyCookies to true: ``` Config.AllowNonHttpOnlyCookies = true; ``` This did remove httponly from some Set-Cookie in the response header: [](https://i.stack.img...
- Modified
- 21 Nov at 02:5
RefreshToken undefined after successful Authentication ServiceStack
- - The following code calls my Auth microservice and successfully authenticates a user and returned there bearer token: ``` var request = new Authenticate(); request.provider = "credentials"; requ...
- Modified
- 21 Nov at 00:57
OpenCV + Android + Unity
I am looking for a way to use OpenCV in a Unity project and my target platform is an Android device. I know that some assets exists on Unity asset store but I want to use them as I find them way too...
Entity Framework Scaffold-DbContext Login failed for user
I am trying to build an API using Visual Studio 2017 and .NET Core 2 with Entity Framework Core. I am following the directions from [This Link](https://learn.microsoft.com/en-us/ef/core/get-started/a...
- Modified
- 20 Nov at 19:31
Autofixture and read only properties
Let's consider two version (one with read only properties) of the same very simple entity: ``` public class Client { public Guid Id { get; set; } public string Name { get; set; } } ``` vs ...
- Modified
- 20 Nov at 15:54
Can I execute npm commands directly from the visual studio
Can I execute npm commands (e.g. npm init, npm install) directly from Visual Studio 2017 on Asp.Net Core 2.0 project? May be from command line or context menu? Now I have context menu command for Bowe...
- Modified
- 20 Nov at 08:56
System.PlatformNotSupportedException: 'Operation is not supported on this platform.' when upgrading ServiceStack to .netcore 2.0
We are using ServiceStack(.netcore) as our web services layer, in an open source project yet to go-live. We are planning to migrate to .netcore2.0. We downloaded servicestacks's master branch on Nov 1...
- Modified
- 20 Nov at 13:44
How are primitive data types made in C#?
How do `System.float`, `System.int` and other primitives types work? I never understood how it was possible to make primitives structs and I wonder if I could make my own numeric type.
- Modified
- 20 Nov at 22:28
$project or $group does not support <document>
I'm trying to run aggregate with projection but i get `NotSupportedException: $project or $group does not support <document>`. I am running version 2.4.4 of driver with mongodb v3.4. ``` var filter =...
- Modified
- 28 Dec at 10:1
Entity framework Core : property setter is never called (Violation of encapsulation?)
In both EF Core and EF6, invoking the getter of the property 'Date' (see below) gives the correct value, however notice the slight difference between the two : in EF Core the setter is never called! ...
- Modified
- 19 Nov at 22:44
How does deferred LINQ query execution actually work?
Recently I faced such question: `What numbers will be printed considering the following code:` ``` class Program { static void Main(string[] args) { int[] numbers = { 1, 3, 5, 7, 9 };...
Servicestack include _Layout.cshtml in Razor Content Page
How can I include _Layout.cshtml in Razor Content Page ? For example I created two cshtml files in root of my project. First file is _Layout.cshtml ``` <!DOCTYPE html> <html> <head> <meta char...
- Modified
- 19 Nov at 05:48
ServiceStack AppHost().Init() throws ArgumentException
my problem is that `AppHost().Init()` throws `System.ArgumentException` with `Expression of type 'System.Int32' cannot be used for return type 'System.Object'`. Stack trace says ``` at System.Linq.Ex...
- Modified
- 18 Nov at 22:21
Dependency injection duplication in Controller and BaseController in .Net Core 2.0
If I create a BaseController in my Asp.Net Core 2.0 web application that capsulizes some of the common dependencies are they still necessary in the actual controllers. For Example, the standard Accou...
- Modified
- 19 Nov at 02:55
kubectl apply vs kubectl create?
What I understood by the documentation is that: - ``` kubectl create ``` - ``` kubectl replace ``` - ``` kubectl apply ``` [Reference](https://kubernetes.io/docs/user-guide/kubectl-overview/) 1. Why...
- Modified
- 19 Jan at 07:59
Deserialize CSV with CustomHeaders using ServiceStack.Text: not working?
consider following class: ``` class Foo { public string bar { get; set; } public string rab { get; set; } public override string ToString() { return string.Format("[Foo bar={...
- Modified
- 17 Nov at 23:52
HttpContext in .net standard library
I am working on couple of projects one of which is an `ASP.NET 4.5` application and other one is `.Net Core API 1.1` project. The asp.net application is using `HttpContext` classes to read cookies and...
- Modified
- 17 Nov at 19:23
How do I format {{$timestamp}} as MM/DD/YYYY in Postman?
In Postman, the [dynamic variable](https://www.getpostman.com/docs/postman/environments_and_globals/variables#dynamic-variables) `{{$timestamp}}` inserts the current [Unix Time Stamp](https://www.unix...