AngularJS Directives with examples
At a high level, directives are markers on a DOM element (such as an attribute, element name, comment or CSS class) that tell AngularJS's HTML compiler ($compile) to attach a specified behavior to that DOM element or even transform the DOM element and its children....
![Cascade DropDownLists in ASP.NET MVC 5 and Entity Framework](https://yogeshdotnet.com/wp-content/uploads/EntiyFramework.jpg)
Cascade DropDownLists in ASP.NET MVC 5 and Entity Framework
Hi guys today I am going to demonstrate that how we can create cascade dropdown list control in asp.net MVC 5 using Razor and entity framework. Usually we need this solution. Create a new Project. Open Visual Studio 2013. Go to "File" => "New" => "Project...". Select...
AngularJS Binding and Expressions with example
Expressions are used to bind application data to HTML Template. They are pure JavaScript expressions.Expressions are written inside double curly braces such as in {{ expr }}. {{qty*cost}} {{ fname+' '+lname }} {{ items[1]+items[4] }} loop {{i}} {{person.fname+'...
![Entity framework 6 Stored Procedure CRUD in asp.net MVC 5](https://yogeshdotnet.com/wp-content/uploads/aspnet-mvc-1.jpg)
Entity framework 6 Stored Procedure CRUD in asp.net MVC 5
Hi, today I am writing a blog related to the entity framework (EF) and asp.net mvc 5. Stored procedures (SP) makes life easy of coder. Writing complex queries in SQL server is easier rather than LINQ queries. changes in SQL queries have minor effects in C# code which...