the reason of the move is ms sql require 2gb of ram, the plan i want to use has 1gb of ram, also the cloud i'm using is on linux, so it has better compatibility with mysql than ms sqlby the way i have found a solution to the issue in github,...
You could have ffmpeg, ffprobe etc.. output in json or xml. So you could parse the output and do whatever.Here is a link on how to use ffmpeg in .net, I hope it could help you.https://stackoverflow.com/questions/26583828/use-ffmpeg-executable-inside-c-net-project...
The database table must have a primary-key column defined for it. EF works with a table's primary-key. Any EF persistence class you may have made must have a primary-key property that matched the primary-key column of the database table....
'HttpResponse' does not contain a definition for 'Cache' and no accessible extension method 'Cache' accepting a first argument of type 'HttpResponse' could be found (are you missing a using directive or an assembly reference?) 'IEnumerable<>' does not contain a definition for '', no exte...
I want to use WIX installer with Dot Net Core Application along with that I want to integrate IIS hosting and SQL express in wix installer with net core web application. Currently I have implemented WIX installer with windows application and I need help how to implement IIS express and SQL...
Thanks in Advance and good weekend. 复制 [HttpPost] public IActionResult Calculate(PolicyHolder policyHolder) { return Ok("Calculated Successfully"); } public class PolicyHolder : IPerson { public string Name { get; set; } public int Age { get; set; } public DateTime DateOfBirth { get; ...
I have around 4 services injected in startup.csActually, The main reason to create Base class is to avoid injecting the services to every new page I create . I wanted to leverage the inheritance feature of C# I found this link https://stackoverflow.com/questions/54783856/basepagemodel-in-...