The program '[13492] dotnet.exe' has exited with code -2147450749

When trying to build and run a hello world dotnetcore console app the app closes without any exceptions. On the debug output I see the following. > The program '[13492] dotnet.exe' has exited with co...

3 Jul at 23:30

Injecting Service in Middleware in ASP.NET Core

I want to inject a service based on the HTTP header value. So I have 2 classes - DbDataProvider and InMemDataProvider, both are implemented from IDataProvider. Whenever an API call is made, a header i...

Group dataframe and get sum AND count?

I have a dataframe that looks like this: ``` Company Name Organisation Name Amount 10118 Vifor Pharma UK Ltd Welsh Assoc for Gastro & Endo 2700.00 10119 Vifor Pharma UK Ltd Welsh ...

"No ESLint configuration found" error

Recently, we've upgraded to [ESLint 3.0.0](http://eslint.org/blog/2016/07/eslint-v3.0.0-released) and started to receive the following message running the `grunt eslint` task: ``` > $ grunt eslint Ru...

How to select specific columns in laravel eloquent

lets say I have 7 columns in table, and I want to select only two of them, something like this ``` SELECT `name`,`surname` FROM `table` WHERE `id` = '1'; ``` In laravel eloquent model it may looks ...

28 Apr at 16:39

static property in c# 6

I'm writing a small code to more understand about `property` and `static property`. Like these: ``` class UserIdentity { public static IDictionary<string, DateTime> OnlineUsers { get; set; } ...

3 Jul at 14:37

HttpContext.Current is null when unit test

I have following web Api controller method. When I run this code through web, `HttpContext.Current` is `never null` and give desired value. ``` public override void Post([FromBody]TestDTO model) { ...

3 Jul at 14:26

Cross-platform file name handling in .NET Core

How to handle file name in `System.IO` classes in a cross-platform manner to make it work on Windows and Linux? For example, I write this code that works perfectly on Windows, however it doesn't crea...

1 Mar at 17:1

C# bool is atomic, why is volatile valid

In , we know that a `bool` is atomic - then why is it valid to mark it as `volatile`? what is the difference and what is a good (or even practical) use-case for one versus the other? ``` bool _isPend...

C#: ASP.NET WebApi default route to index.html

I am trying to create an Asp.net WebApi / Single Page Application. I would like my server to dispense index.html if no route is given. I would like it to use a controller when one is specified in the ...

16 May at 18:42

Python regex match space only

In python3, how do I match exactly whitespace character and not newline \n or tab \t? I've seen the `\s+[^\n]` answer from [Regex match space not \n](https://stackoverflow.com/questions/14190038/re...

23 May at 11:58

ASP.NET Core EF Add-Migration command not working

Following this [Microsoft Tutorial](https://docs.efproject.net/en/latest/platforms/aspnetcore/new-db.html#create-your-database) when I run the `PM> Add-Migration MyFirstMigration` command in VS2015 pr...

one of the parameters of a binary operator must be the containing type c#

``` public static int[,] operator *(int[,] arr1, int[,] arr2) { int sum; int[,] res = new int[arr1.GetLength(0), arr2.GetLength(1)]; for (int i = 0; i < arr1.GetLength(0); ...

What is the purpose of casting into "object" type?

I have found code on a website which is as follows. ``` string a = "xx"; string b = "xx"; string c = "x"; string d = String.Intern(c + c); Console.WriteLine((object)a == (object)b); // True Con...

How to set the content-type of request header when using Fetch APi

I am using npm 'isomorphic-fetch' to send requests. The problem I am experiencing is I am unable to set the content-type of the request header. I set a content type of application/json , however the ...

StatusStrip label not visible when text too long

I have a `StatusStrip` docked to the bottom of a C# Form, it contains a label, the text in it displays fine, except when there is longer length of text then it does not display at all, and I have to w...

3 Jan at 16:36

How do I move my ServiceStack API from HTTP to HTTPS selectively

I followed the tutorial [deploy and run Service Stack application on Ubuntu Linux](https://github.com/ServiceStackApps/mono-server-config) and I got my API quickly up and running. So far it's all tho...

1 Jul at 18:43

UWP update UI from Task

I have application, which is checking network ranges (for running http service) in local network. So it means, that I am checking f.e. from 10.0.0.1 to 10.0.0.255. And here is the problem, when runni...

1 Jul at 18:34

Stored procedure with default parameters

I am trying to create a stored procedure based on a query I wrote with parameters that are predefined. When restructuring to a create stored procedure and I execute the stored procedure it states that...

How do I reference a .NET Framework project in a .NET Core project?

I'd really like to start using .NET Core and slowly migrate applications and libraries to it. However, I can't realistically upgrade my entire code base to use .NET Core and then go through the proce...

20 Jun at 09:12

Shell script to open a URL

How do I write a simple shell script (say script.sh), so that I can pass a URL as an argument while executing? I want a browser to start with the page opened on that URL. I want to write the command ...

16 Jul at 21:2

CSS: Workaround to backdrop-filter?

`backdrop-filter` is a recent CSS feature, that is not yet available in modern browsers (at least as of July 1, 2016). - `backdrop-filter`- `-webkit-`- Being in such an unusable state, I would lik...

28 Apr at 16:51

C# OPENXML XLSX Custom Column width

C# newbie here! I need to create a small console application to convert CSV files into XLSX files. I have all my styles and data working, but I want to set a different (from default) width on some c...

1 Jul at 11:37

Covariance and contravariance on Tasks

Given the followin snippet, i quite dont understand what im going to achieve is not possible: Interface: ``` public interface IEntityRepository<out T> : IRepository<IEntity> { void RequeryData...

asp.net core 1.0 web api use camelcase

On `RC2` the same code returns json format with camel case. After netcore 1.0 release i started new project and the same code is returning json in lowercase. [](https://i.stack.imgur.com/vjPkQ.png) ...