by Yogesh | Jun 2, 2016 | AngularJS tutorial
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+'...
by Yogesh | May 20, 2016 | Asp .net MVC, Entity Framework Tutorial
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...
by Yogesh | May 17, 2016 | Asp .net MVC, Entity Framework Tutorial
Hi, In this blog I am writing sample code to store file name and path into database table using Entity framework code first approach. Download Source Code Step: 1 First Create Controller named Home Controller . Step 2: Create Index.cshtml view into Index Action of...
by Yogesh | May 13, 2016 | AngularJS tutorial
Angular Multiple Views and Routing Each and every application having different view i.e, contact us , about us , Home and feedback.Now angular JS provides new feature of SPA(single page application) . SPA means different web pages can be seen at a single place without...
by Yogesh | May 11, 2016 | Asp .net MVC
Data Passing techniques from a controller to View. View Data and View Bag are Data Dictionary objects. ViewData: View Data is accessible using string key value and need typecasting. ViewBag: Dynamic type property, Doesn’t require typecasting TempData: TempData...