Browse by Tags

All Tags » VB.NET (RSS)

Enum.HasFlag method in C# 4.0 by Jalpesh P. Vadgama

Enums in dot net programming is a great facility and we all used it to increase code readability. In earlier version of .NET framework we don’t have any method anything that will check whether a value is assigned to it or not. In C# 4.0 we have new static...

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

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

How to add service reference dynamically from user control? Microsoft Ajax by Jalpesh P. Vadgama

First, Create a web page default.aspx and put the html code as following.. --------------------------------------------------------------------------- <asp:ScriptManager ID="MainScriptManager" runat="server"> </asp:ScriptManager>...

What is LINQ? LINQ Developer Resources by Jalpesh P. Vadgama

LINQ is Language Integrated query. It is a integral part of visual studio 2008 and Microsoft .NET Framework 3.5. It is object to database mapping technology thorough which you can query any type of collections of object,XML of database. Recently I am...
Filed under: , , ,

Previous week startdate and enddate in sql server 2000,sql server 2005 by Jalpesh P. Vadgama

Following are the some tricky code to find previous week startdate and enddate in sql server 2000/2005   Set @STimeStamp=GETDATE() set @PStartDate=@STimeStamp-DATEPART(dw,@STimeStamp)-6 set @PEndDate=@STimeStamp-DATEPART(dw,@STimeStamp)

ASP.NET MVC Framework Link collection by Jalpesh P. Vadgama

Microsoft will release it's Model view controller base framework for asp.net. In this user will have built in support for model view controller architecture. Here are the some interesting collection of links related to asp.net MVC Framework.. ASP.NET...

Infosys Guys are blogging about .NET by Jalpesh P. Vadgama

Infosys is India's most well know company at we all know.Recently I have visited the Infosys and I found there blogs about Microsoft Technologies. I had read some entries and I found lots of things to learn. here is the link for there blogs about Microsoft...

Ten Must-Have Tools Every .NET Developer Should Download Now by Jalpesh P. Vadgama

James Avery created a list of tools that every developer should download. This list contains ..... Snippet Compiler Regulator CodeSmith Building a Custom Template NUnit Writing an NUnit Test FxCop Lutz Roeder's .NET Reflector NDoc NAnt NAnt in Action...
Filed under: , ,
More Posts Next page »