Web
Analytics
Blog | Angular | ASP.NET Tutorials

For Consultation : +91 9887575540

Stay Connected :

local storage and session storage in HTML5

HTML5 web storage is a local storage in client environment and it is a better than cookies. Unlike the cookie storage limitation of 4KB, we can store up to 10 megabytes in HTML5 local storage. 1. Web storage is the most secured and faster way of storing information in...

read more

Introduction of REST Service

Introduction of REST Services We can define Representational State Transfer (REST) as an architectural style that sits on top of a series of principles. ASP.NET Web API is a framework that makes it easy to build HTTP services that reach a broad range of clients,...

read more

Entity framework conventions

Entity framework conventions when we use entity framework in our application, there are some predefined conventions of entity framework for example primary key EF convention means we defined a primary key in a model class then model mapped database table with a auto...

read more

Entity framework Introduction

I am going to start writing blogs based on Microsoft entity framework as far as today’s scenario people are working on entity framework. Let me tell you about the different approaches of entity framework by which we can make communication between ASP.net MVC and...

read more

LINQ CRUD in asp.net MVC using LINQ to SQL

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...

read more

Quantifier Operators in linq C#

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...

read more

Element Operators in LINQ C#

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...

read more

Set Operators in LINQ C sharp with examples

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...

read more

C# linq groupby operator with example

Linq groupby query operator able to create groups of input sequence. It is also followed concept of deferred execution , To understand deferred execution please read my blog( ).We can group output sequence using single key or multiple key, for the simplicity here I am...

read more

Reverse in LINQ C#

Reverse The Reverse query operator simply takes the input sequence and returns the elements in the reverse order in the output sequence; so, for example, the first element in the input sequence will become the last element in the output sequence.   using System; using...

read more

ThenBy in linq C#

ThenBy  This operator always followed by orderby,  means we always use it after using ordeby operator. If we use orderby and ThenBy together then first items will be sorted as per orderby given condition and resultant output sequence will be sorted by ThenBy...

read more

Ordering Operators in linq C#

Ordering Operators in linq C# These operators return same number of output elements as input elements in sorted form. OrderBy This operator sort input elements as per given key. For example we have a employee table which have a salary field now we want to get employee...

read more

LINQ SkipWhile() with example

Like TakeWhile, the SkipWhile query operator uses a predicate to evaluate each element in the input sequence. SkipWhile will ignore items in the input sequence until the supplied predicate returns false.   using System; using System.Collections.Generic; using...

read more