Oh. My. Word. :sigh:
James Walsh Jr
Posts
-
That's one way to do it -
I fixed my workstation Dell T1700 SFF what failed to power upThere's nothing like diagnosing and fixing your own equipment. Always gave me a sense of accomplishment, and a feeling of independence.
-
When will management realizeIf I'm doing important managey work in Excel, I totally need a new AMD Threadripper with 128 GB of memory loaded with 10 TB of SSD drives. How else am I going to do Excelly type work, and write clever posts about important managey stuff on Linkedin.... ;) ;) ;)
-
When will management realizeThe 16 GB of ram, then you add in all of the VPN, Malware, Anti-Virus, and monitoring bloatware that they need to secure the laptop and you have the modern day equivalent of a 486SX running on 640K of memory. Just my .02 :sigh:
-
Is there any data mocking for calling Web API Put and post methods with C# CodeWhen we are using Microsoft Test runner we use Moq to build out our mock data layer. We recently have been switching to xUnit, I haven't tried using Moq with it yet. Here is the link to the Moq GitHub repo, there's good info here.
-
What layers required for make asp.net core 2 project for prevent repeat data ?In most of our web services I use the repository pattern. Isolating data access from business rules from controller/services. Here is a link to some docs on Microsoft. This isn't specific to Dotnet Core, but the same pattern can still be applied.
-
SQL SERVER 2012 - pull data from only, if value date is availableWhy don't you use a sub-select for the date?
where (SaleDateFrom <= ( select max(your date column) from your table with date value ) and (SaleDateTo '20010101' or SaleDateTo is null ))
-
Is there any data mocking for calling Web API Put and post methods with C# Code