What happened ? I was trying to do an entity migration using Package Manager console in Visual Studio for my newly edited entities. But while I was executing 'update-database' command with '-verbose' flag, it throwed an error and update had failed. After I fix the error in the entity, I was trying to run 'add-migration' … Continue reading EntityFramework 6 : Unable to generate an explicit migration because the following explicit migration are pending:
Tag: .net
LINQ, OrderBy() and ThenBy()
LinQ is the magic technique behind querying a list in C# .Net and it is easier to use and a cleaner way of querying a list. This is one of the small tips that make a huge difference and save your time. What is the scenario ? Assume that you have a list of customer … Continue reading LINQ, OrderBy() and ThenBy()
Cognitive Services: Custom Vision API (Part 2) – Create a web application to get predictions with the classification model
In part 1 of this article, I have created the image classification model for the application using the Custom Vision web interface. Now let's consume the API and predict results. I'm going to create an ASP.NET core 2.1 MVC web application which can predict the type of the dog for a given image URL or … Continue reading Cognitive Services: Custom Vision API (Part 2) – Create a web application to get predictions with the classification model