ServiceStack OrmLite AutoQuery Filter
Should the following work: `?OpensContains=Something` by querying the Name column on the db? It doesn't and I'm not sure why not? ``` [QueryDbField(Field = "Name")] public string OpensContains { g...
- Modified
- 2 Mar at 15:6
Show values on top of bars in chart.js
Please refer this Fiddle : [https://jsfiddle.net/4mxhogmd/1/](https://jsfiddle.net/4mxhogmd/1/) I am working on chart.js If you see in fiddle, you will notice that value which is top on bar is not p...
- Modified
- 23 May at 12:2
If (false == true) executes block when throwing exception is inside
I have a rather strange problem that is occurring. This is my code: ``` private async Task BreakExpectedLogic() { bool test = false; if (test == true) { Console.WriteLine("Hello!...
- Modified
- 12 Jul at 04:10
How do I convert encoding of a large file (>1 GB) in size - to Windows 1252 without an out-of-memory exception?
Consider: ``` public static void ConvertFileToUnicode1252(string filePath, Encoding srcEncoding) { try { StreamReader fileStream = new StreamReader(filePath); Encoding targetE...
- Modified
- 3 Mar at 05:26
How can I make Bootstrap 4 columns all the same height?
This question was asked [many](https://stackoverflow.com/questions/19695784/how-can-i-make-bootstrap-columns-all-the-same-height) times before. But since time has passed and now we are close to Boots...
- Modified
- 2 Mar at 10:5
C# Sort List by Enum
I have got a list of Entity, which has got an enum. ``` public class Car { public int CarId { get; set; } public string CarName { get; set; } public CarCategory CarCategory { get; set;...
Deconstruction in foreach over Dictionary
Is it possible in C#7 to use deconstruction in a foreach-loop over a Dictionary? Something like this: ``` var dic = new Dictionary<string, int>{ ["Bob"] = 32, ["Alice"] = 17 }; foreach (var (name, ag...
- Modified
- 2 Mar at 07:44
How to access current absolute Uri from any ASP .Net Core class?
I am trying to figure out how to access the absolute Uri -- i.e. the absolute url of the view that is currently being rendered -- from a user class in .Net Core 1.1 I found this link but it seems to...
- Modified
- 14 Aug at 11:6
How do I encode angle brackets in servicestack json response
I have a customer who wants to ensure that responses from our JSON web service do not contain HTML. So instead of returning a string containing angle brackets they want encoded angle brackets. Two...
- Modified
- 2 Mar at 05:30
ESLint with React gives `no-unused-vars` errors
I've setup `eslint` & `eslint-plugin-react`. When I run ESLint, the linter returns `no-unused-vars` errors for each React component. I'm assuming it's not recognizing that I'm using JSX or React sy...
- Modified
- 1 Mar at 20:36
.tfignore is not ignoring files
I have a .tfIgnore file like below whihc is already checked-in ``` \xx.Phoenix.Web\bower_components \xx.Phoenix.Web\node_modules *.autogen.cs ``` I would expect that everyfile which is match with ...
- Modified
- 1 Mar at 16:43
How can I check if an array index is out of range?
How can I check if an array index is out of range? Or prevent it happening.
Could not load file or assembly 'Microsoft.CodeAnalysis, version= 1.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependenc
An update occurred last night and now I find myself unable to do a ctrl + '.' for code suggestions in VS 2015. An error message comes up saying the following: > Could not load file or assembly 'Micro...
- Modified
- 22 May at 18:56
How to use forEach in vueJs?
I have a response like below from an API call, [](https://i.stack.imgur.com/lMr5I.png) Now, I have to repeat the whole arrays inside the arrays. How do I do that in VueJS? I have searched for using...
- Modified
- 1 Mar at 15:40
Generate QR code with Xamarin.Forms and Zxing
I've seen alot about this online (old posts) but nothing seems to work for me. I'm trying to generate a QR code out of a string and display it in the app. Here's what i had in the beginning ``` qrCo...
- Modified
- 23 Mar at 09:49
"Illegal characters in path" error using wildcards with Directory.GetFiles
I have a directory with multiple sub directories that contain .doc files. Example: ``` C:\Users\user\Documents\testenviroment\Released\test0.doc C:\Users\user\Documents\testenviroment\Debug\test1.doc...
- Modified
- 1 Mar at 17:39
Angular 2: Form submission canceled because the form is not connected
I have a modal that contains a form, when the modal is destroyed I get the following error in the console: > Form submission canceled because the form is not connected The modal is added to a `<moda...
- Modified
- 20 Jan at 11:47
How to update DLL with latest version in Visual Studio
I need to ask the idea about upgrading DLL with latest version without removing it from References manually. For example, In my project, I am using DLL which has version : but I want to update it w...
- Modified
- 1 Mar at 10:41
Condition check in async method
Question description: I am totally confused. Who can explain or teach me? ``` private async Task TestMethod() { bool ok = false; City city = City.BJ; await Task.Delay(100); ok = tr...
- Modified
- 1 Mar at 09:53
Center the content inside a column in Bootstrap
I Need help to fix the problem, I need to center the content inside the column in bootstrap4, please find my code below ``` <div class="container"> <div class="row justify-content-center"> ...
- Modified
- 20 Sep at 10:29
Maven build Compilation error : Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project Maven
I have a maven project forked and cloned from a git repo onto my eclipse. It is build on Java 8. The first thing i do is perform a ``` mvn clean install ``` But I get following failure message:...
- Modified
- 1 Mar at 07:46
What are React controlled components and uncontrolled components?
What are controlled components and uncontrolled components in ReactJS? How do they differ from each other?
- Modified
- 11 Apr at 01:45
ImportError: 'No module named plotly.plotly' in LinuxMint17.3
Whenever I am trying to compile the following code to get a line graph shows some errors. But I don't know how to fix it. Here is my [code](https://plot.ly/python/line-charts/) : ``` import plotly.pl...
- Modified
- 21 Dec at 21:32