by Yogesh | Jul 1, 2016 | Asp .net MVC, Jquery Tutorial, LINQ Tutorial
Read Controller action using Jquery in ASP.NET MVC and LINQ In this example I am going to demonstrate that how we can read controller action using jquery and json. Action will return output in json format.here I am using $.getJSON method of jquery. Step1. Create new...
by Yogesh | Jul 1, 2016 | LINQ Tutorial
LINQ CRUD in asp.net MVC using LINQ to SQL Step1. Create new Empty MVC Project Open Visual Studio->New Project->Visual C#->Web->ASP.NET Web application->Give Project Name->Select Empty Template->Check MVC Checkbox->Click OK Step 2. Now to we will add LINQ to sql...
by Yogesh | Jun 30, 2016 | LINQ Tutorial
Quantifier query operators’ works on only single input sequence and return single Boolean value. Contains The Contains query operator evaluates the elements in the input sequence and returns true if a specified value exists. using System; using...
by Yogesh | Jun 30, 2016 | LINQ Tutorial
Element Operators in LINQ C# Element operators return single value or a default value from input sequence.In this blog I am demonstrating following linq element operators. first firstordefault last lastordefault single singleordefault elementat elementatordefault...
by Yogesh | Jun 29, 2016 | LINQ Tutorial
Set Operators in LINQ C# Set operators take two inputs , that can be array, list, collection etc and able to generate single output. Set query operators: Concat Union Distinct Intersect Except Let me discuss them one by one Concat As it names says all the words about...