Browse by Tags

All Tags » ASP.NET » Linq (RSS)

Creating Basic RSS Reader in ASP.NET MVC 3 by Jalpesh P. Vadgama

In this post I am going to explain you how we can create a basic RSS Reader with the help of Linq-To-Xml and ASP.NET MVC3  Razor. Those who are writing or reading Blogs already knows what is RSS Reader. But those who does not know What is RSS. Below...
Filed under: , , ,

LinqDatasource A Great Control for declarative programming by Jalpesh P. Vadgama

I have used data source control many times and its great it provides us great features for declarative binding. LinqDataSource Control is a great control and it allows us to bind linq queries without writing any code declaratively. Let’s create a example...

Using Let Keyword in Linq by Jalpesh P. Vadgama

I am using Linq-To-Object in my current project to remove some extra loops and I have found one of the great keyword in Linq called ‘Let’. Let keyword provides facility to declare a temporary variable inside the Linq Query.We can assign the result of...
Filed under: , ,

Entity Framework 4.0- Bind Stored Procedure with Result Entity class by Jalpesh P. Vadgama

Microsoft Entity Framework version 4.0 is a brand new ORM(Object Relational Mapper) from Microsoft. It’s provides now some new features which are not there in the earlier version of Entity framework. Let’s walk through a simple example of a new features...

Binding A Custom Entity Class to stored procedure using Linq-To-SQL by Jalpesh P. Vadgama

I have already written several post about Linq its a great ORM that we can use in various way. The purpose of this post to demonstrate How we can bind custom entity to stored procedure result with use of Linq-To-SQL. Let’s go through it and you will realize...

Range Operator in Linq. by Jalpesh P. Vadgama

Linq is almost providing all the functionalities and i have found one another great operator called range operator which will return a sequence of integer number from start point to number of count. Here is the signature of range operator in Linq. C#...

Zip operator in Linq with .NET 4.0 by Jalpesh P. Vadgama

Microsoft .NET framework 4.0 is having many features that make developers life very easy. Its also provides some enhancement to Linq also. I just found a great operator called Zip which merge the sequence of two entities. Here is the explanation of Zip...

Sum and Concat Operator operators in Linq. by Jalpesh P. Vadgama

Linq contains lots useful operators and i have found more two operators that can be help full in our day to day programming life.  Here are explanation. Concat Operator: Concat operator concats two entities into single entities its very use full...
Filed under: , ,

Take,Skip and Reverse Operator in Linq by Jalpesh P. Vadgama

I have found three more new operators in Linq which is use full in day to day programming stuff. Take,Skip and Reverse. Here are explanation of operators how it works. Take Operator: Take operator will return first N number of element from entities. Skip...
Filed under: , , ,

Union,Except and Intersect operator in Linq by Jalpesh P. Vadgama

While developing a windows service using Linq-To-SQL i was in need of something that will intersect the two list and return a list with the result. After searching on net i have found three great use full operators in Linq Union , Except and Intersect...
More Posts Next page »