Archives
-
How to profile LINQ to Entities queries in your asp.net applications - part 2
In this post I will continue exploring ways on how to profile database activity when using the Entity Framework as the data access layer in our applications.
-
How to profile LINQ to Entities queries in your asp.net applications - part 1
I have been teaching ASP.Net and EF in one of my classes and I have been asked on the various ways we can profile database activity. Everyone that I know that uses EF as its data access layer has the same question.
-
An abundance of LINQ queries and expressions using both the query and method syntax.
In this post I will be writing LINQ queries against an array of strings, an array of integers.Moreover I will be using LINQ to query an SQL Server database.
-
Investigating Lambda expressions in LINQ
With the introduction of LINQ and its many flavours, developers started using this ORM technology to perform queries against an xml document, an sql server database, a in-memory collection of objects.
-
Creating a Data Access Layer in ASP.Net applications for inserting,selecting,deleting and updating data
In this post I will be continuing my series of posts regarding data access methodologies/technologies that as I call them are pro ORM. I will be demonstrating how to use the connected and the disconnected data access models to retrieve,insert,update,delete data from a database.This is going to be a huge post so embrace yourself.Our database will be an SQL Server database.I am urging you to read this post and this post of mine that are also in this blog.These posts explore the disconnected and connected model and the basic objects(classes) we use to retrieve data.
-
A simple example on achieving polymorphism in ASP.Net application part 3
In this post we will continue exploring the meaning of Polymorphism and the various ways we can implement Polymorphism in ASP.Net applications.
In this post I demonstrated how to use Polymorphism through Inheritance and base instance classes. In this post I demonstrated how to use Inheritance through abstract base classes.
-
A simple example on achieving polymorphism in ASP.Net application part 2
In this post we will continue exploring the meaning of Polymorphism and the various ways we can implement Polymorphism in ASP.Net applications.
-
A simple example on achieving polymorphism in ASP.Net application part 1
In one of my ASP.Net seminars I have been asked to give an example of the possible ways we can achieve Polymorphism in our ASP.Net applications.
-
The QueryExtender web server control
In this post I am going to present a hands on example on how to use the QueryExtender web server control.
-
The chart web server control
In this post I am going to present a hands on example on how to use the Chart web server control.
-
The ImageMap ASP.Net web server control
In this post I will try to show you how to use the ImageMap web server control. This is going to be a very easy example.
-
ASP.Net validation controls
In this post I would like to continue talking about validation in ASP.Net applications. I will look into the validation controls that ASP.Net provides. You can have a look at the first post in my blog regarding validation.
-
A simple example of validation in ASP.Net applications
I am going to start a new series of posts and I am going to cover in depth all the validation mechanisms/techniques/controls we have available in our ASP.Net applications.
-
Routing in ASP.Net 4.0 Web Forms
In this blog post I would like to talk about a new ASP.Net 4.0 feature, URL Routing. I know this issue has been explained from various people on the web but I will give my own example.