|
|
deepakkapoor
deepakkapoor
 |
|
Stories kicked by deepakkapoor
|
|
submitted by
deepakkapoor
28 days, 3 hours ago
onedotnetway.com — A question was posted on c-sharpcorner forums asking how you would remove duplicate lines from a text file. It got me thinking about how this problem could be addressed using LINQ. read more...
add a comment
|
category: Linq | Views: 8
|
|
tags:
LINQ | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
deepakkapoor
1 month, 20 days ago
onedotnetway.com — Sometime ago I wrote a post showing how to do dynamic sort with LINQ. That approach worked well with LINQ To Objects. Today I spotted a question on the forums where Levi asked a question about doing dynamic sorts with LINQ To SQL. My earlier approach will work once all the data is retrieved on the client side. This of course is not an ideal way. A better option is to do sorting on database. read more...
add a comment
|
category: Linq | Views: 15
|
|
tags:
LINQ | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
deepakkapoor
1 month, 21 days ago
onedotnetway.com — As a programmer I love my enums. I find code written using enums to be more readable than without them. However, there has been and there still is a disconnect between lookup tables in a database and enums in code. One has to restore to some creative trickery to get them working in harmony. Recently while working on a project which involves using LINQ To SQL, I came up with a process which gives me the best of both worlds i.e. using lookup tables in database and enums in code. I am documenting my solution here. Hopefully it will help you. read more...
add a comment
|
category: Linq | Views: 11
|
|
tags:
LINQ | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
deepakkapoor
2 months, 4 days ago
onedotnetway.com — Since its inception as Avalon I have dedicated countless hours to the technology we now know as WPF. I can probably say that I am one of the few people who have worked on WPF at a commercial level at least in Australia. This is because the number of projects using WPF have been scarce. And I was fortunate to get involved because of my community work around WPF.
I have also tried to convince clients to go with WPF as the preferred choice over Windows Forms. I will admit that I have not been very successful in doing this. The main reason I believe is that WPF has suffered with lack of confidence. While the push has been there from Microsoft, somehow it has not come across very well. We all know about demos about spinning text boxes and playing videos in buttons. These I must say have not conveyed the benefits of WPF to business gracefully. Even though Microsoft has used WPF for their Expression products, it just has not been enough.
read more...
|
|
tags:
WPF | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
deepakkapoor
2 months, 11 days ago
onedotnetway.com — I am running a LINQ To SQL Training day on Saturday November 8th at Microsoft Office in North Ryde. The course is FREE for anyone to attend but there are only 20 places available. So if have not yet jumped into the wonderful world of writing LINQ queries. If you are considering LINQ To SQL for your project. If you think that you need a head start on LINQ To SQL. Then attend this one day course and give yourself a LINQ To SQL confidence boost. read more...
add a comment
|
category: Linq | Views: 1
|
|
tags:
LINQ | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
deepakkapoor
3 months, 17 days ago
onedotnetway.com — While working with LINQ To SQL there are times when you are interested in looking at the query which will be executed on the database. This post will cover different ways you can capture the query generated by LINQ To SQL. read more...
add a comment
|
category: Linq | Views: 23
|
|
tags:
LINQ | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
deepakkapoor
4 months, 10 days ago
onedotnetway.com — To get a list of installed applications we need to look into registry. Microsoft.Win32 namespace contains objects which can be used to work with Windows Registry. In this post I will show you some code where I use the power of LINQ to retrieve and display a list of all applications installed on a machine. read more...
add a comment
|
category: Linq | Views: 9
|
|
tags:
LINQ | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
deepakkapoor
4 months, 26 days ago
onedotnetway.com — At times us developers have to deal with delimited text files in our applications. Such files have been around since yonks and I often come across data import/export tasks where delimited files are used. Till now the common way in .NET has been to read each line and then extract data using some sort of creative string functions within for loops. But there is another way by using LINQ. In this tutorial I will show you how to use LINQ to read such data. By the end of tutorial you will appreciate how easy and logical it is to use LINQ for reading data from delimited text files. read more...
add a comment
|
category: Linq | Views: 28
|
|
tags:
LINQ | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
deepakkapoor
4 months, 28 days ago
elegantcode.com — Thank you for your team’s contributions to the software development industry. ASP.Net, the CLR, and your other significant additions to the .Net platform have genuinely advanced the state of software development. Although it may seem that you are damned if you do and damned if you don’t, most of us developers out here do appreciate your work. read more...
1 comment
|
category: Community | Views: 27
|
|
tags:
Community | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
deepakkapoor
4 months, 28 days ago
onedotnetway.com — Back in may I posted Part 1 of this series on my old blog. Looking at the statistics it turned out to be one of the highly visited post. Recently I also had a comment asking me when I was publishing other parts of study links. Continuing the same trend here is the second part of this series. read more...
|
|
tags:
WWF | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
deepakkapoor
4 months, 30 days ago
onedotnetway.com — While there is a lot of talk about refactoring tools such as Resharper and Refactor Pro, not much is said about refactoring features available in Visual Studio 2008 straight out of the box. I think Resharper and Refactor Pro are fantastic tools but they cost money and most of the time our refactoring needs are simple or you maybe in an environment where such tools are not available. So what do you do? Worry not, Visual Studio comes with excellent refactoring support. In this post I will show different refactoring features of Visual Studio. read more...
|
|
tags:
VisualStudio | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
deepakkapoor
5 months, 2 days ago
onedotnetway.com — StyleCop is a source analysis tool for C#. It can be used for analysing source code as opposed to compiled assemblies which is the area for FxCop. StyleCop is currently in version 4.2 and can be downloaded here. In this tutorial I will show you how to use StyleCop. read more...
add a comment
|
category: C# | Views: 19
|
|
tags:
C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
deepakkapoor
5 months, 8 days ago
onedotnetway.com — C# as a language has matured over years. We have come a long way from the first version of C# to the current which incorporates LINQ. Here is an example I recently used in a training session. My objective was to show students how we can retrieve items from a collection based on a certain criteria in different ways. read more...
add a comment
|
category: Linq | Views: 10
|
|
tags:
LINQ | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
deepakkapoor
5 months, 8 days ago
onedotnetway.com — Few weeks ago Microsoft announced a new certification called Microsoft Certified Master. In an ever growing cluster of Microsoft certification this one allows you to specialise in a particular technology area. So what does this mean? Aren’t other certifications specialising as well? According to Microsoft, Master certification is intended towards candidates who spend most of their time working with one product. This is different than your average developer who needs to know about many technologies such as ASP.NET, SQL Server, WCF, WFP etc. read more...
add a comment
|
category: Other | Views: 7
|
|
| tag it
Everyones tags: | Your tags: | |
No tags
|
|
|
|
|
submitted by
deepakkapoor
5 months, 8 days ago
onedotnetway.com — With .NET Framework 3.5 Microsoft released Language Integrated Query aka LINQ. LINQ enables developers to query data sources using a query like syntax with both C# and VB.NET. These data sources can be collections, SQL Server databases, XML, DataSets etc. Other than what is supplied by Microsoft, LINQ is also extensible. This means that you can query data sources beyond what Microsoft ships. Examples of such implementations are LINQ To Flickr, LINQ To Amazon, LINQ to Google etc. In this article I will show you how you can use LINQ To SQL to perform CRUD operations on a SQL Server database. read more...
add a comment
|
category: Linq | Views: 17
|
|
tags:
LINQ | tag it
Everyones tags: | Your tags: | |
|
|
|
|

Sponsored Link: www.carlist.ie
Ads by The Lounge
|