by Yogesh | Mar 12, 2017 | LINQ Tutorial
In this tutorial, I am going to discuss query operators in linq. query operators are categorized as per following criteria. Input sequence(s) result in an output sequence. Input sequence results in scalar value/single element output. No input results in an output... by Yogesh | Jul 2, 2016 | Asp .net MVC, LINQ Tutorial
Custom User Login form using ASP.Net MVC LINQ Jquery JSON In this blog tutorial we will see that how we can create custom login form using MVC, LINQ, jquery and json.Here I am using $.getJSON method of jquery. Step1. Create new Empty MVC Project Open Visual... 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...