Author: admin

  • Blog
  • Author: admin

Where I can find SQL generated by Linq-To-SQL

Yesterday I have written a blog post about Where I can find SQL Generated by Entity Framework? and same day I got request from one of the our reader Ramesh that how I can find SQL generated by Linq-To-SQL?. I thought its a good idea to write a blog post to share amongst all who

Subsonic 3.0 is out now- Next Generation Object Relational Mapper

There lots of ORM(Object Relational Mapper) is available now like entity framework,nhibernate, linq, dlinq but i choose subsonic 3.0 for my next application which will be a question answer site for the following reason Now subsonic 3.0 is with linq support so you can write your lambda expression and linq queries along with the subsonic

Creating ASP.NET 2.0 Website with Web 2.0 Standards

Web 2.0 is used mostly today because it provides great compatibility with most of the browsers. So that a website can reach maximum audience. That’s why the web 2.0 used the div tags rather then the other html standards. An ASP.NET site also can be build by this standards. Stephen Walther has written great article

C#.NET 2.0 class example for data acess layer using microsoft enterpise library

here is the data layer class example….. ///here is the enum public enum OprationType{Add = 1,Update = 2,Delete = 3 } //here is the Interfae public interface IDataStatndard{void Operation(OperationType enumOperationType); } //here is the user data class public class UserData : IDataStatndard{#region PrivateMemeberprivate DashBoardCollection.UserCollection _objUserCol;private Database _db;private string _commandName;private DbCommand _dbCommand;#endregion#region Constructorspublic UserData(){}public UserData(DashBoardCollection.UserCollection obj){_objUserCol