Difference between ASP.NET Core (.NET Core) and ASP.NET Core (.NET Framework)
What is the difference between ASP.NET Core Web (.NET Core) vs ASP.NET Core Web (.NET Framework)? and does .NET Framework provide [similar performance](http://web.ageofascent.com/asp-net-core-exeeds-...
- Modified
- 7 Jun at 16:32
Skip and Take in Entity Framework Core
I have simple POCO classes: ``` public class Library { [Key] public string LibraryId { get; set; } public string Name { get; set; } public List<Book> Books { get; set; } } public c...
- Modified
- 8 Jun at 14:6
Why Visual Studio 2015 freezes crashes hangs on Designer view?
I go to the designer Visual Studio freezes(Not Responding) for 30+ seconds and once I click on any element/widget after that, it freezes again for 30+. Does that for 5 times maybe then I will be able...
- Modified
- 10 Oct at 23:54
Swashbuckle parameter descriptions
I'm using SwaggerResponse attributes to decorate my api controller actions, this all works fine, however when I look at the generated documentation the description field for parameters is empty. Is a...
- Modified
- 7 Jun at 13:50
Load test doesn't show more than 4GB for Working Set PerformanceCounter
I'm trying to create [load test](https://www.visualstudio.com/docs/test/performance-testing/run-performance-tests-app-before-release) to some application. . To do so I added `Process / Working Set` to...
- Modified
- 9 Jun at 14:11
Entity Framework Core - Customise Scaffolding
In Entity Framework 6 we can add the T4 templates the scaffolding uses by running ``` Install-Package EntityFramework.CodeTemplates.CSharp ``` But in Entity Framework Core the scaffolding system do...
- Modified
- 7 Jun at 12:25
Project not selected to build for this solution configuration
The error: ``` >------ Skipped Deploy: Project: DrawShape.Android, Configuration: Debug Any CPU ------ >Project not selected to build for this solution configuration ``` The configuration in Config...
- Modified
- 7 Jun at 09:7
Bold or italic in C# or VB documentation comments?
Is there a way to use or inside documentation comments? Something like: ``` /// <summary>Cleanup method. This is <b>recommended</b> way of cleanup.</summary> public void CleanAll(); ``` The [list...
- Modified
- 4 Feb at 06:50
DOMException: Failed to load because no supported source was found
I'm getting in video.play(); line. I'm getting this issue only after adding video.setAttribute('crossorigin', 'anonymous'); I'm developing app in mobile so for cross origin i need to add this line. A...
- Modified
- 7 Jun at 08:43
How to create a nuget package with both release and debug dll's using nuget package explorer?
I'm using the Nuget Package Explorer to create some nuget packages. I've managed to do so just building a project in Release mode in VS and adding both the dll and pdb files to the package. So far s...
- Modified
- 7 Jun at 07:59
JavaScript iterate key & value from json?
I am trying to iterate the following json: ``` { "VERSION" : "2006-10-27.a", "JOBNAME" : "EXEC_", "JOBHOST" : "Test", "LSFQUEUE" : "45", "LSFLIMIT" : "2006-10-27", "NEWUSER" : "3", "NEWGROUP" : "2", ...
- Modified
- 19 Sep at 09:11
Should I implement business logic on a Model or a ViewModel
When I'm processing business logic in an MVVM app. Should I do this on the Model or the ViewModel? For example, if I want to re-calculate costs after an Asset has been re-valued, should I operate on ...
What is FCM token in Firebase?
In the new Firebase, under Notification, they have mentioned that developer can send notification to a particular device. For that, in console it asks for an FCM token. What is it exactly and how can ...
- Modified
- 7 Jun at 06:25
How to load image files with webpack file-loader
I am using to manage a project. I want to load images in javascript by webpack `file-loader`. Below is the : ``` const webpack = require('webpack'); const path = require('path'); const NpmInstallPlu...
- Modified
- 30 Jun at 13:48
How to configure Spring Security to allow Swagger URL to be accessed without authentication
My project has Spring Security. Main issue: Not able to access swagger URL at [http://localhost:8080/api/v2/api-docs](http://localhost:8080/api/v2/api-docs). It says Missing or invalid Authorization ...
- Modified
- 21 Jun at 20:9
How do you make gRPC client Timeout in C# if the server is down?
I am writing a connection back to a TensorFlow Serving system with gRPC from a C# platform on MS Windows 10. I have seen many references to Time-out and Dead-line with the C++ API for gRPC, but can't...
Using an array from Observable Object with ngFor and Async Pipe Angular 2
I am trying to understand how to use Observables in Angular 2. I have this service: ``` import {Injectable, EventEmitter, ViewChild} from '@angular/core'; import {Observable} from "rxjs/Observable"; ...
- Modified
- 7 Jan at 17:26
How to get rid of underline for Link component of React Router?
I have the following: [](https://i.stack.imgur.com/Od7Ho.png) How do I get rid of the blue underline? The code is below: ``` <Link to="first"><MenuItem style={{paddingLeft: 13, textDecoration: 'none'}...
- Modified
- 30 Jun at 19:6
How to install JQ on Mac on the command line?
I need to know the most efficient way of installing JQ on Mac (El Capitan). The code is downloaded to my Mac but I would like to know how I can install and operate it via the command line.
- Modified
- 21 Jun at 06:17
ServiceStack Custom User Authentication
Does anyone have an actual example of how to use int RefId as proposed in this [question](https://stackoverflow.com/questions/11117469/how-can-i-extend-servicestack-authentication/37667766#37667766)? ...
- Modified
- 23 May at 12:24
async await: is the main thread suspended?
I was reading about `async/await` keywords and I've read that: > When the flow of logic reaches the await token, the calling thread is > suspended until the call completes. Well, I've created a simple...
- Modified
- 6 May at 01:3
ServiceStack: How do I use custom OAuthProvider to get access to Azure resources
1. Created custom provider that implements: OAuthProvider, IAuthWithRequest. 2. Created AuthenticateAttribute that calls PreAuthenticate() method of the provider. 3. Configured CorsFeature: Plugins.A...
- Modified
- 6 Jun at 18:52
Laravel migration default value
I didn't understand what is the effect of the `default` option in the migrations. I can see that the column in the database is defined with default value, but the models are ignore it completely. Say...
python mpl_toolkits installation issue
After command `pip install mpl_toolkits` I receive next error: > Could not find a version that satisfies the requirement mpl_toolkits (from versions: )No matching distribution found for mpl_toolkits ...
- Modified
- 28 Dec at 02:24
Can I configure an interceptor in EntityFramework Core?
In the old (pre .net core) era's entity framework 6 as shown in this [blog post](https://romiller.com/2016/02/11/ef6-x-correlating-poor-performing-sql-to-application-code/) there is a way to configure...
- Modified
- 31 Mar at 19:2