To Read Gmail Inbox from Google Api (from, date , subject , body of the email). In this section we are going to see about reading Gmail inbox from Google api. Please use your email id for configuration and do…

ASP.NET 4.7.1 Hosting – How To Read Gmail Inbox From Google API?

ASP.NET 4.7.1 Hosting – View Ways To Add Dependency Packages In .NET Core
This would be a very short article on how to add dependencies in .NET Core. Well, there are many ways to achieve this. One is via Visual Studio and another way is through command prompt. Let’s quickly have a look.…
ASP.NET 4.7.1 Hosting – Mapping Similar Objects In ASP.NET Core 2.0
This post is about Automapper. As its name suggests, it will do some sort of mapping. Now, the question is, what sort of mapping? Well, this mapping is all about mapping the properties of two objects with each other. If…

ASP.NET 4.7.1 Hosting – How To Use Distinct And FirstOrDefault Clauses In .NET Using linq.js?
Let us see how to use Distinct() and FirstOrDefault() clauses with the help of linq.js in .NET Web Application. Advantage It is useful to write simple LINQ queries from Entityframework to client side with LinqJS. It’s better for validating data…

ASP.NET 4.7.1 Hosting – Bulletproof Disposable Types In .NET Core
Whenever I do code review on .NET projects, hands down the number one issue is developers not calling .Dispose() on disposable objects. Ever since .NET was released, I have been preaching how important this is. If not done properly, it’s…

ASP.NET 4.7.1 Hosting – Solution For “No Executable Found Matching Command “dotnet-ef”
.NET Core was introduced in last few months and people have started adopting it. In this series of posts, I will put some frequent issues during .NET Core development and some important topics for the Core. In this post, we…
ASP.NET 4.7.1 Hosting – How To Use An Area In ASP.NET Core?
In order to include an Area in an ASP.NET Core app, first we need to include a conventional route in the Startup.cs file (It’s best to place it before any non-area route). In Startup.cs, configure the method.
1 2 3 4 5 6 |
app.UseMvc(routes => { routes.MapRoute("areaRoute", "{area:exists}/{controller=Admin}/{action=Index}/{id?}"); routes.MapRoute(name: "default", template: "{controller=Home}/{action=Index}/{id?}"); }); |
Then, make…
ASP.NET 4.7 Hosting – Tackling The Dependency Property Ghost
Dependency property is a term that left me baffled for a long time. But I finally understand it, and in this article I’ll try to explain what it actually means. CLR Properties: Before talking about dependency properties, let’s talk about…

ASP.NET 4.7 Hosting – Using Switch Case Statement In AngularJS Application Using JavaScript/ jQuery
Let us see how to use switch-case statements in JavaScript/jQuery with AngularJS implementation and in .NET Applications. Note Here, one important point needs to be remembered about switch-case statements in JavaScript/jQuery, which is that this is also working in a…
ASP.NET 4.7 Hosting – Using Switch Case Statement In AngularJS Application Using JavaScript/ jQuery
Let us see how to use switch-case statements in JavaScript/jQuery with AngularJS implementation and in .NET Applications. Note Here, one important point needs to be remembered about switch-case statements in JavaScript/jQuery, which is that this is also working in a…