The first preview of the next incremental update to ASP.NET Core comes with a slew of new middleware components for speeding up app performance, while updates to .NET Core and Entity Framework Core come with mainly support additions.
- By Michael Domingo
- 10/26/2016
In an object-oriented world you create flexible applications by combining objects. You'll want to keep those objects loosely coupled, though, so that a change in one class doesn't force you to rewrite every class. Here's how to keep them loosely coupled.
The R language can be used to perform a sign test, which is handy for comparing "before and after" data.
- By James McCaffrey
- 10/05/2016
Microsoft CEO Satya Nadella demonstrated some of the AI supercomputing capabilities in its Azure public cloud that make it now among the fastest cloud services available. The secret sauce is the use of field-programmable gate arrays.
- By Jeffrey Schwartz
- 09/30/2016
If the data you work with is complex and hard to understand, it's easy to get stuck on them when debugging. Add helper variables to make data much simpler to use and comprehend.
- By Bartlomiej Filipek
- 09/28/2016
You might be surprised how easy it was to port this NoSQL database for .NET to the Python language.
- By Idan Haim Shalom
- 09/23/2016
Back when he had a job, Peter used to hire developers. When he did, there were three questions he got from Scott Hanselman's blog, way back at the beginning of the .NET Framework that he's still asking today.
Among the list of bug fixes is one that squashes a potential security issue with ASP.NET Core View Component that can result in an elevation of privilege on systems.
- By Michael Domingo
- 09/14/2016
Standard function breakpoints probably help in most of the debugging sessions. But, sometimes, there's simply too much code to check, too many objects or cases. What if you want to filter out code that generates a breakpoint? Here's a look at conditional breakpoints.
- By Bartlomiej Filipek
- 09/14/2016
A significant disruption of Microsoft's Azure cloud services has affected a large number of customers in Europe and India, and it's really trying the patience of developers using Visual Studio Team Services, with only partial use of services back online as of Friday afternoon.
- By Michael Domingo
- 09/09/2016
As you work with other developers (and seek advice from experts) you need to make sure you're discussing what matters rather than arguing about terminology.
IndexedDB allows you to store data on the client to let the user work offline and to reduce demands on the server. Here's enough code to both get you started and to show you the difference between doing it in JavaScript and doing it in TypeScript.
Create the best object for moving data from your Controller to your View.
One way to slow down your application is to make multiple trips to the database. Here's a way to cut those trips in half (at least) and it has to do with the EntityFramework.Extended library.
How C# and Visual Basic handle characters and single-character strings is a bit inconsistent. There's no tidy solution, but it's something you do need to know.