Tables with schema using SqliteDialect.Provider
In my test project I register a connection using ":memory" connection string and SqliteDialect.Provider as provider. When trying to run tests that execute arbitrary sql (I have a complex join statemen...
- Modified
- 5 Jun at 08:14
Is it ok to use "async" with a ThreadStart method?
I have a Windows Service that uses Thread and SemaphoreSlim to perform some "work" every 60 seconds. ``` class Daemon { private SemaphoreSlim _semaphore; private Thread _thread; public v...
- Modified
- 5 Jun at 07:44
Find All Capital Letter in a String - Regular Expression C#
I need to find all in a `string`. For example : `Electronics and Communication Engineering` : `ECE`
Grid control in SSMS
I notice in (SQL Server Management Studio 2016), the query results return within a blink of a second (above 10k+ rows). The result table/grid scroll perfectly smooth, and have an extremely low memory...
- Modified
- 28 Oct at 04:28
Wait for a coroutine to finish before moving on with the function C# Unity
I was working on making a unit move through a grid in Unity2d. I got the movement to work without problems. I would want the function MovePlayer to wait until the coroutine is finished before moving o...
How to exclude folders when using TFS in vscode?
I am using Visual Studio Team Services extension in VS code for check in. [https://marketplace.visualstudio.com/items?itemName=ms-vsts.team](https://marketplace.visualstudio.com/items?itemName=ms-vsts...
- Modified
- 4 Jun at 19:37
How to use c# tuple value types in a switch statement
I'm using the new tuple value types in .net 4.7. In this example I am trying to make a switch statement for one or more cases of a tuple: ``` using System; namespace ValueTupleTest { class Progra...
- Modified
- 23 Aug at 18:18
AutoMapper define mapping level
``` public class Foo { public string Baz { get; set; } public List<Bar> Bars { get; set; } } ``` When I map the class above, is there any way to define how deep I want automapper to map obje...
- Modified
- 4 Jun at 10:28
ServiceStack OrmLite: MySQL connection pool
I understand the topic is not new, I read a few posts but did not come to the answer ... Each time the connection is opened for a very long time, but the idea was to use a connection pool, is not it?...
- Modified
- 3 Jun at 22:51
Task Scheduler failed to start. Additional Data: Error Value: 2147943726
I am using windows 10 task scheduler to run tasks that require me using my personal user account (its necessary to use my user and not system user because of permission issues - I am part of an organi...
- Modified
- 3 Jun at 20:35
How to Per-Request caching in ASP.net core
My old code looks like this: ``` public static class DbHelper { // One conection per request public static Database CurrentDb() { if (HttpContext.Current.Items["CurrentDb"] == null) { ...
- Modified
- 24 Aug at 08:43
Service Stack Razor View Not Found
I added the `RazorPlugin` along with a `Test.cshtml` in the root View folder (tried wwwroot as well along with `TestGet.cshtml`). This is an donet Core project. Whenever browsing to: `/api/test` th...
- Modified
- 3 Jun at 20:28
Why does adding an extra field to struct greatly improves its performance?
I noticed that a struct wrapping a single float is significantly slower than using a float directly, with approximately half of the performance. ``` using System; using System.Diagnostics; struct Ve...
More than one file was found with OS independent path 'META-INF/LICENSE'
When I build my app, I get the following error: > Error: Execution failed for task ':app:transformResourcesWithMergeJavaResForDebug'. More than one file was found with OS independent path 'META-INF...
- Modified
- 14 Feb at 13:29
Next.js - Error: only absolute urls are supported
I'm using express as my custom server for next.js. Everything is fine, when I click the products to the list of products : I click the product Link [](https://i.stack.imgur.com/3UTd4.png) : It will...
- Modified
- 3 Jun at 09:9
Check if specific object is empty in typescript
How to check if an object is empty? ex: ``` private brand: Brand = new Brand(); ``` I tried: ``` if (this.brand) { console.log('is empty'); } ``` not working.
- Modified
- 12 May at 13:27
Text vertical align in react native (using nativebase)
I was wondering there is a way I can align vertically in React Native. I'm trying to position on the bottom but I don't think I can find a good way to do it. If anyone knows how to solve this issue,...
- Modified
- 2 Aug at 13:41
Moq IServiceProvider / IServiceScope
I am trying to create a Mock (using Moq) for an `IServiceProvider` so that I can test my repository class: ``` public class ApiResourceRepository : IApiResourceRepository { private readonly IServ...
- Modified
- 17 Jul at 16:6
Find and replace in Visual Studio code in a selection
I have the following line in a file I'm editing in VSCode: `...............111.........111.............111..` I want to replace all `.`s with `0`s. However, when I highlight the line and do a find/r...
- Modified
- 2 Mar at 20:44
ServiceStack Controllerless Razor Views - Return view without executing service
Right now we have a lot of dummy MVC controllers that return simple views with web components (vuejs). I'm trying to refactor this to see if we can use the controllerless razor plugin but I don't wan...
- Modified
- 3 Jun at 16:54
Executing JavaScript on C# with CefSharp WPF causes Error
Whenever I try to execute JavaScript through C# using CefSharp (Stable 57.0), I get an error. I am simply trying to execute the alert function, so I can make sure that works and later test it out with...
- Modified
- 5 Jun at 15:33
Entity Framework Core: Update relation with Id only without extra call
I'm trying to figure out how to deal with 'Single navigation property case' described in [this doc:](https://learn.microsoft.com/en-us/ef/core/modeling/relationships) Let's say we have 2 models. ``...
- Modified
- 2 Jun at 16:35
Using the same session for PhantomJs at each run
I'm crawling a secure website which blocks me whenever I restart my crawler application(I need to change IP as a trick). I solved this issue by using default user profile in chrome driver like this (I...
- Modified
- 11 Aug at 18:24
Explanation of a statement by its result
I know, 42 is the answer to everything but how the heck is `42` the result of this? ``` int x = -(~'+'|0xAB^1337); //42 ```
- Modified
- 2 Jun at 14:23
How to merge multiple dataframes
I have different dataframes and need to merge them together based on the date column. If I only had two dataframes, I could use `df1.merge(df2, on='date')`, to do it with three dataframes, I use `df1....
- Modified
- 2 Oct at 18:50