Author Archives: saikk - Page 5
Mention what is CSDL, SSDL and MSL sections in an EDMX file?
In an entity framework, the EDM(.edmx) contains three main components. Conceptual Model(CSDL : Conceptual Schema Definition Language) The conceptual model contains the model classes and their relationships. This will be independent of…
Copying events from one JavaScript Element to another JavaScript Element
Problem Statement We need to bind specific events like click, onchange of one element to another element due to there could be a situation where we cannot access the methods which are calling an event handler of…
Safely Storing Sensitive Configuration Data in .NET Core
Problem Statement There could be a situation where the application will use some sensitive data such as Payment Gateway live credentials and client don’t want to expose the data to any of…
Announcing TypeScript 3.0
A new version of TypeScript has announced on 30th July 2018. Please find the below official link to know more on new changes and improvements compared to the previous version. Official…
Angular 6.1 Now Available
Angular version has been released. This is a minor release that is a drop-in replacement for containing new features and bugfixes. What’s new? Router Scroll Position Restoration ShadowDOM v1 View…
Understanding Produces and Consumes Attribute in MVC 6
Produces and Consumes Attributes are newly introduced in MVC 6 ( Core) to control the content negotiation. What is Content Negotiation? The process of picking the correct output format is known as Content Negotiation. Generally, Frameworks will…
Time to Upgrade from .NET core 2.0 to .NET core 2.1
It's time to upgrade your existing .NET core application running on to .NET core as .NET core support from Microsoft will be ended on 1st October 2018. Why? .NET Core was…
Decoding HTML string to Normal String in JavaScript
There could be a situation where we might be store both HTML decoded text as well as HTML text such as email message. Generally, we use to have some text…
Approaches for Cloning JavaScript Object
Sometimes we need to have a copy of existing JavaScript object and work on it by modifying cloned copy and send or do some other operations without disturbing existing global…
Working with Moment.JS
is an intelligent JavaScript library to Parse, validate, manipulate, and display dates and times for given formats. Here in this article, I want to provide some mostly used conversions for any projects which hard to…