ServiceStack Route using array as parameters

I need to create this `URL` for request using `ServiceStack`, but I couldn't find a way to generate this as `URL` route: [http://server.com/myserver?service=2&item[0].reference=222&item[1].reference=...

Dependency Injection error: Unable to resolve service for type while attempting to activate, while class is registered

I created an .NET Core MVC application and use Dependency Injection and Repository Pattern to inject a repository to my controller. However, I am getting an error: > InvalidOperationException: Unable ...

Does C# 7 allow to deconstruct tuples in linq expressions

I'm trying to deconstruct a tuple inside a Linq expression ``` // somewhere inside another method var result = from word in words let (original, translation) = Convert(word) ...

9 Sep at 13:33

DateTime.Now retrieval speed

Is there any chance that this statement would return true DateTime.Now == DateTime.Now can a very fast machine return true for this statement, I tried on several machines and its always false ?

5 May at 14:15

ASP.NET add migration 'composite primary key error' how to use fluent API

Hello I am in the process of creating a Web Application and have already installed both the and . During the process of executing an add-migration in the package manager console I get an error "" ...

Object reference not set to an instance of an object when trying to log service exceptions servicestack

I'm getting the following message: > Object reference not set to an instance of an object When trying to log the exceptions thrown by the service, I'm using the following service exception handler i...

30 Nov at 19:48

'List' does not contain a definition for 'Where'

I am trying to create a method where I can pass a `Linq` expression as a parameter to return a new list of items. Currently I am doing this ([based off this answer](https://stackoverflow.com/question...

23 May at 12:24

Support SQL Server change tracking with Entity Framework 6

I have an Entity Framework 6 Code First model generated from an existing SQL Server database. The database is using SQL Server Change Tracking, so for all the data manipulation operations generating f...

Multiple controllers with same URL routes but different HTTP methods

I've got a following two controllers: ``` [RoutePrefix("/some-resources") class CreationController : ApiController { [HttpPost, Route] public ... CreateResource(CreateData input) { ...

.NET Core and System.Drawing

I am trying to reference System.Drawing in a .net core console app targeting net46 but the assembly is not there. According to MS if you use dotnetcore System.Drawing is not available. But if you refe...

20 Oct at 15:19

Xamarin.Forms.Color to hex value

I have a Xamarin.Forms.Color and I want to convert it to a 'hex value'. So far, I haven't found a solution to my problem. My code is as follows: ``` foreach (var cell in Grid.Children) { var pixel...

18 Aug at 18:56

Windows Defender Antivirus scan from C# [AccessViolation exception]

We are writing a code to do on-demand scan of a file from C# using Windows Defender APIs. ``` [DllImport(@"C:\Program Files\Windows Defender\MpClient.dll")] public static extern int WDStatus(...

Using an array as argument for string.Format()

When trying to use an array as an argument for the `string.Format()` method, I get the following error: > FormatException: Index (zero based) must be greater than or equal to zero and less than the s...

ServiceStack.Redis deserialization issue - sometimes JSON is corrupted

I got a service that uses ServiceStack.Redis for storing objects (serialized with JSON). There's a key that's updated with each HTTP request - the flow is simple: get value for the key, deserialize it...

Configuring Serilog RollingFile with appsettings.json

I'm trying to configure Serilog for a .NET Core project. Here's what I have in my `appsettings.json`: ``` "Serilog": { "MinimumLevel": "Verbose", "Enrich": ["FromLogContext", "WithMachineName...

4 Dec at 23:24

.NET Core Unit Testing - Mock IOptions<T>

I feel like I'm missing something really obvious here. I have classes that require injecting of options using the .NET Core `IOptions` pattern(?). When I unit test that class, I want to mock various v...

ServiceStack DateTime Deserialize Issue

It looks like ServiceStack doesn't like me using a DateTime property as an argument in my request. I'm getting a "Bad Request" message... no other helpful detail in the exception. The inner exception ...

30 Nov at 18:53

How to change object's layer at runtime in Unity?

I've got WallCreator script to place walls in Unity, and another one, WallCreatorSwitcher to turn WallCreator ON/OFF by checking the toggle. I also wanted to change wallPrefab's layer there by using `...

29 Nov at 15:25

Routes in ASP.net Core API

I read lot of topic about routes for API in Asp.net core but I cannot make it work. First, this is my controller : ``` Public class BXLogsController : Controller { //[HttpGet("api/[controller]/I...

Dependency Injection into Entity Framework seed method?

Is it possible to inject dependencies into Configuration class of Entity Framework 6? For example, like this: ``` internal sealed class Configuration : DbMigrationsConfiguration<MyBaseContext> { ...

1 Dec at 21:48

How to get title tag using HTML Agility Pack

I'm parsing an HTML file using HTML Agility Pack. I want to get: Some title As you see, title doesn't have a class. So I couldn't catch it no matter what I have tried. I couldn't find the solution o...

6 May at 18:50

Unit testing fileupload with Moq .net Core

I have a method in WebApi controller that I want to write unit tests for. This is how my controller method looks: ``` public async Task<FileUploadDto> UploadGoalDocument(Guid id) { var ...

29 Nov at 14:24

Open a new window of Google Chrome from C#

It is possible to open a new of Chrome from C#? By I mean a new separate tab, not contained in an existing chrome window. I've tried the following solutions but of them create a in an chrome ...

29 Nov at 07:39

How to get rid of Naming rule violation messages in Visual Studio?

I just installed Visual Studio 2017. When I open an existing website, I get all sorts of warning messages such as this one: > IDE1006 Naming rule violation: These words must begin with upper case c...

10 Apr at 16:22

How to use nameof to get the fully qualified name of a property in a class in C# Attributes?

I am using Foolproof library in ASP.Net MVC project and in some cases I need to check a property within a member class of my model using attribues . For example I have a user class which has a proper...

27 Oct at 19:12