Temporary Value Error During Entity Framework Core Modify
I was following along in a tutorial for ASP.NET Core and Entity Framework Core. I am able to connect to my Microsoft SQL Server database and get and add rows, but I cannot update them. My update metho...
- Modified
- 30 Apr at 03:57
String.Format() doesn't work, but string.Format() does
I would not believe this if I wasn't seeing it with my own eyes. ``` string test = String.Format( "{0} test {1}", "Mark", 13 ); ``` Results in a value of `"{0} test {1}"` for variable `test` ``` s...
- Modified
- 29 Apr at 19:54
How do I decode the response stream correctly in ServiceStack ProxyFeature?
I am trying to replace URLs in the body of a response in ProxyFeature, but I am getting an encoded body. Here is the code: ``` Plugins.Add(new ProxyFeature( matchingRequests: req => ...
- Modified
- 29 Apr at 21:23
update dart sdk for flutter
I would like to use dart SDK >= 2.2.0 with flutter. But my current version used BY Flutter is 2.1.2 ``` flutter --version Flutter 1.2.1 • channel stable • https://github.com/flutter/flutter.git Frame...
What is the incentive for curl to release the library for free?
I recently started using libCurl for my VC++ project. I've been wondering: what is the incentive for the curl creators to release the entire library for free? Is it purely to help their fellow develo...
Vue Axios CORS policy: No 'Access-Control-Allow-Origin'
I build an app use vue and codeigniter, but I have a problem when I try to get api, I got this error on console ``` Access to XMLHttpRequest at 'http://localhost:8888/project/login' from origin 'htt...
Entity Framework Core: `SqlNullValueException: Data is Null.` How to troubleshoot?
I am using Entity Framework Core in an ASP.NET Core application and Controller action and I haven't changed something to the working code nor to the database but I can't tell what is the query perform...
- Modified
- 27 Apr at 21:2
ConfigurationErrorsException is found in both ServiceStack and System.Configuration.ConfigurationManger assemblies (netstandard)
I use both the ServiceStack and System.Configuration.ConfigurationManager package in my .NET Standard library. I reference the `ConfigurationErrorsException` class specifically. My Visual Studio doesn...
- Modified
- 29 Apr at 15:35
Access Payload in JWT token in Servicestack Request and Response Filter Attributes
I am programming a Service and ERP Software with an API that is Servicestack based. In an Request Filter Attribute I want to check if the current user has permission to use a specific service by evalu...
- Modified
- 25 Apr at 20:15
Check if hosting server is IIS or Kestrel at runtime in aspnet core
I'm currently running my application under either Kestrel (locally) or IIS InProcess (production). ``` return WebHost.CreateDefaultBuilder(args) .ConfigureKestrel(options => options.AddServerHead...
- Modified
- 25 Apr at 15:33
How can I read a file which will be upload from a form in .Net Core API?
I create a method in my .Net Core API which will upload a file. ``` [HttpPost] public async Task<IActionResult> ReadFile(IFormFile file) { return BadRequest(file); } ``` I do a `return BadReque...
- Modified
- 25 Apr at 14:5
How can we use HttpClient in ASP.Net Core?
I'm writing ASP.Net MVC Core 2.2 Web App. I need to get data from another web server with HTTP or HTTPS. How should I do this? I wrote code using `HttpClient`. I have a Controller that gets a messag...
- Modified
- 16 Feb at 11:6
Using multiple ServiceStack's auth providers throws error
I intend to use 2 ServiceStack's auth providers: one custom provider based on `CredentialsAuthProvider` called `remotecreds` and the built-in `JwtAuthProvider`. My AppHost registration code looks lik...
- Modified
- 25 Apr at 10:12
React Hook "useState" is called in function "app" which is neither a React function component or a custom React Hook function
I'm trying to use react hooks for a simple problem ``` const [personState,setPersonState] = useState({ DefinedObject }); ``` with following dependencies. ``` "dependencies": { "react": "^16.8....
- Modified
- 21 Feb at 11:42
What are services and why add them in ASP.NET Core?
I just started learning ASP.NET Core. Within the framework of the Web API template, there is a `Startup` class, in which the `ConfigureServices()` method is defined. Can someone explain in simple word...
- Modified
- 26 Feb at 10:4
Own UserAuthRepository without IUserAuth or IUserAuthDetails dependency/implementation
I want to use CredentialAuthProvider and JwtAuthProvider and I have my own Person class in which I want to store username and password. Most of the fields in UserAuth and UserAuthDetails are useless t...
- Modified
- 24 Apr at 22:55
How to get service from ValidationContext using Simple Injector?
In my Asp.Net MVC Core project I use SimpleInjector as IoC. I use it because of possibility of registering open generics. In some of my viewmodels I implement `IValidatableObject`. ``` public class ...
- Modified
- 25 Apr at 19:22
Android Webview cannot render the pdf sometimes and shows blank/white page instead
- - - I have made the sample on the pdf. The link for the project is shown below: [https://github.com/gopalawasthi123/PdfWebView](https://github.com/gopalawasthi123/PdfWebView) Hope this will help...
- Modified
- 3 May at 04:39
How to generate UUID version 4 using c#
My requirement is to generate version 4 UUID from C# code for google API session token and i am not sure `Guid.NewGuid()` method, Which version of GUID does it return. Like version Read google and b...
- Modified
- 24 Apr at 06:12
ReactJS - prevState in the new useState React hook?
I really like the new [React hooks](https://reactjs.org/docs/hooks-state.html) and I'm using them frequently for a project I'm working on. I'm coming across a situation where I want to use the in the...
- Modified
- 27 Sep at 10:38
Does asynchronous model really give benefits in throughput against properly configured synchronous?
Everybody knows that asynchrony gives you "better throughput", "scalability", and more efficient in terms of resources consumption. I also thought this (simplistic) way before doing an experiment bel...
- Modified
- 25 Apr at 22:47
Blazor page not rerendering after parameter updated
I started out with the new and the blazor client-side template (`3.0.0-preview4-19216-03`). To add state to the existing `Counter.razor` page, I added the following class: ``` public class GlobalCo...
.NET Core Difference between Hosted Service and Singleton Service
From .NET Core 2.1 onward, we can now run background tasks with [hosted service](https://learn.microsoft.com/en-us/aspnet/core/fundamentals/host/hosted-services?view=aspnetcore-2.2). I believe we co...
- Modified
- 22 Apr at 15:16
Blazor binding value to "input date" in one-way
Since Blazor doesn't support stopping event propagation I need one-way binding for an input element with `type="date"` and with an `onchange` event handler. Something like this: ``` <input type="da...
Fody is only supported on MSBuild 16 and above. Current version: 15
Visual Studio 2017 let me know there was an upgrade to Fody version 5 this morning. I accepted and did a NuGet package update of both Fody and PropertyChanged.Fody. Now, my project/solution will no ...
- Modified
- 22 Apr at 14:2