|
|
-
|
|
Recently while working with a Silverlight Application, I realized the Silverlight App wasn’t downloading or not even showing the “Loading %” message when I navigated to that page. At first I thought the xap file was too big and hence taking a lot of time. But it struck me later, it loads quickly i......
|
|
-
|
|
Recently I went through a tricky problem while working with VS 2010. I was trying to reference a Class library project in a Console project. So I opened Add Reference window from Console App, selected Projects, on top left corner of the window and located Class Library Project that I wanted to refer......
|
|
-
|
|
There are many detailed articles available on web on SQL Injection topic and hence I’ll just try to keep it short and simple in this post. SQL Injection is an attack in which malicious code is inserted into strings that are later passed to an instance of SQL Server for parsing and execution. This ......
|
|
-
|
|
I have mentioned Data Access Application Block in my previous posts and I thought it would be convenient to mention how to configure the Data Access Application Block in your project. Mr. Thiru Thangarathinam has written a very nice post about it in very detail hence I’ll just summarize it here. T......
|
|
-
|
|
In this post we’ll discuss how we can execute parameterized queries in .Net. At times when you can’t use the most recommended way to retrieve/update data through Stored Procedures, you can rely on parameterized queries. It is much safer and recommended than building a sql string dynamically, which i......
|
|
-
|
|
In my previous post I summarized Microsoft Language Integrated Query (LINQ). Briefly discussed about its components as well as showed some code examples to highlight the sql query type syntax it uses. Please don’t get confused about the title of this post. We sure are going to talk about language en......
|
|
-
|
|
In this we’ll continue to discuss how to go about the SQL Server Data Access using various technologies. This post will discuss Microsoft Language Integrated Query, otherwise known as LINQ. I will discuss how it can be used to accomplish the same tasks we have discussed in previous posts. But before......
|
|
-
|
|
In my previous post, Getting Started with SQL Server Data Access using ADO.Net, we saw how we can use the ADO.Net objects to retrieve / update the data from and to the SQL Server. In this post, we’ll see how the same tasks that we did using ADO.Net objects can be done using Data Access Applicatio......
|
|
-
|
|
I recently downloaded a cool fighter plane game (iFighter lite) on my iPhone. As I started playing, I felt that plane is moving a bit slow!! But soon enough I saw a little perk on the screen and I flew over it and suddenly plane's speed increased. Soon enough, enemy planes started attacking me and I......
|
|
-
|
|
I am going to write a series of articles to discuss about how to work with SQL Server Database using different technologies available out there, like ADO.Net., Microsoft Data Access Application Blocks and LINQ. Here’s the first one in that order which will simply discuss and show how to use ADO.Net ......
|
|