Browse by Tags

All Tags » 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: , , ,

Distinct operator in Linq by Jalpesh P. Vadgama

Linq operator provides great flexibility and easy way of coding. Let’s again take one more example of distinct operator. As name suggest it will find the distinct elements from IEnumerable. Let’s take an example of array in console application and then...
Filed under: , , ,

GUID Vs Int data type as primary key by Jalpesh P. Vadgama

Recently one of my friend ask me when I should go for GUID and When I should go for Int as primary key in table. So decided to write a blog post for it. Here are advantages and disadvantage of the GUID and INT. INT Data Type: Advantages: Its required...

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

TSQL Challenges on beyondrelational.com by Jalpesh P. Vadgama

My friend and Guide Jacob Sebastian who is an Microsoft SQL Server MVP running a very popular series of TSQL on his site beyondrelational.com. If you know something about SQL Server then this challenge is for you. And if you are master of SQL then this...

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...
More Posts Next page »