Bangladesh MVPs
Sign in
|
Join
|
Help
Home
RSS for Posts
Atom
RSS for Comments
Email Notifications
Go
Search
Go
Tags
.net
Agile
ajax
asp.net
asp.net MVC
AspNetMvc
Blog Posts
C#
DotNetShoutout
Entity Framework
IoC/DI
jQuery
JustMock
linq
Mock
MVC
Open Source
performance
production
Projects
TDD
Telerik
Uncategorized
unit test
Unity
Community
Home
Blogs
Media
Forums
Wikis
Groups
Video
Job
Archives
February 2012 (1)
January 2012 (2)
December 2011 (5)
November 2011 (1)
October 2011 (2)
September 2011 (1)
August 2011 (2)
July 2011 (2)
June 2011 (1)
May 2011 (4)
March 2011 (1)
February 2011 (2)
December 2010 (3)
November 2010 (3)
October 2010 (5)
September 2010 (5)
August 2010 (5)
July 2010 (4)
June 2010 (6)
May 2010 (15)
April 2010 (21)
March 2010 (6)
February 2010 (9)
January 2010 (4)
December 2009 (8)
November 2009 (9)
October 2009 (2)
September 2009 (9)
August 2009 (5)
July 2009 (4)
June 2009 (8)
May 2009 (7)
April 2009 (12)
March 2009 (14)
February 2009 (13)
January 2009 (3)
December 2008 (4)
November 2008 (1)
October 2008 (13)
September 2008 (2)
August 2008 (4)
July 2008 (1)
June 2008 (2)
March 2009 - Posts
Programmatically generating SQL(DDL) from M
by
Mehfuz's WebLog
In this post, i will show how you can generate SQL programmatically from M. Now, so far i have learnt that MGrammer is a contract that converts user’s input into MGraph. Now, Oslo by default comes with MSchema. Through MSchema you can define a type and...
Filed under:
Oslo
,
C#
,
MGrammer
Implementing Audit Trail using Ado.net Entity Framework : Part -1
by
Morshed Anwar's Blog
Entity framework keeps track for those entire objects and relationships which have been deleted, added and modified in the container. EF keeps the state of the object and holds the necessary change-information and all these track information for each...
Filed under:
Entity Framework
Type conversion - Using Expression in place of reflection ( C#.net )
by
Morshed Anwar's Blog
Here I write a very simple method (you can make it more generic if you want) that get source object, target Type and a dictionary. First two parameters need not any explanation and the dictionary contains the mapping definition where the key holds the...
Filed under:
Expression
Generic method to query in Ado.net Entity Framework
by
Morshed Anwar's Blog
Here I am going to talk about the generic method and expression to query using Ado.net Entity Framework. I know it’s not a big deal but I choose simple thing to share my very little knowledge (!!) about expression and entity framework.Ok, here I consider...
Filed under:
Entity Framework
Hello world!
by
Morshed Anwar's Blog
This is your first post. Read More...
Filed under:
Uncategorized
Submitting my first bug after ASP.NET MVC 1.0 RTM Release
by
Kazi Manzur Rashid's Blog
The Controller class of ASP.NET MVC Framework has few overloaded methods to return json result from the controller actions. Internally it uses the JavaScriptSerializer which was introduced in ASP.NET AJAX Framework. But unlike the DataContractJsonSerializer...
Filed under:
asp.net
,
asp.net MVC
,
AspNetMvc
Memory Leak with delegates and workflow foundation
by
Omar AL Zabir blog on ASP.NET Ajax and .NET 3.5
Recently after Load Testing my open source project Dropthings, I encountered a lot of memory leak. I found lots of Workflow Instances and Linq Entities were left in memory and never collected. After profiling the web application using .NET Memory Profiler...
Filed under:
performance
,
workflow
,
linq
,
.net
Optimize ASP.NET Membership Stored Procedures for greater speed and scalability
by
Omar AL Zabir blog on ASP.NET Ajax and .NET 3.5
Last year at Pageflakes, when we were getting millions of hits per day, we were having query timeout due to lock timeout and Transaction Deadlock errors. These locks were produced from aspnet_Users and aspnet_Membership tables. Since both of these tables...
Filed under:
performance
,
.net
,
asp.net
,
sql server
Unit Testable HttpModule and HttpHandler
by
Kazi Manzur Rashid's Blog
With the new System.Web.Abstraction namespace we can now easily write unit testable HttpModule and HttpHandler . In this post, I will show you how to write unit testable HttpModule and HttpHandler . Prior the release of System.Web.Abstraction the problem...
Filed under:
asp.net
,
unit test
,
Mock
The Open Source Projects on ASP.NET MVC
by
Kazi Manzur Rashid's Blog
Last night the forehead four head has released the 1st chapter of their upcoming Wrox book along with a sample project NerdDinner and I think this is the best application to check if anyone is trying to lean the new ASP.NET MVC framework. And this is...
Filed under:
asp.net
,
MVC
,
asp.net MVC
,
AspNetMvc
,
Open Source
History of MS Data Access Technologies
by
Nazmul weblog
Many years I am working with MS technology. Using different technique & technology (Microsoft) I am doing my all data access work from different data store. Now Microsoft introduces a new data access technique call Entity Framework . One day I was...
Filed under:
Data Access
Linq to SQL solve Transaction deadlock and Query timeout problem using uncommitted reads
by
Omar AL Zabir blog on ASP.NET Ajax and .NET 3.5
When your database tables start accumulating thousands of rows and many users start working on the same table concurrently, SELECT queries on the tables start producing lock contentions and transaction deadlocks. This is a common problem in any high volume...
Filed under:
performance
,
linq
,
.net
,
sql server
Use Event Aggregator to make your application more extensible
by
Kazi Manzur Rashid's Blog
Recently, in KiGG / DotNetShoutout we have integrated Twitter , nothing complex, very basic thing like when a story is submitted or appears in the front page it will broadcast in Twitter and like our feed it will post the short url of the original story...
Filed under:
asp.net
,
C#
,
Patterns
,
DotNetShoutout
,
Design Patterns
,
ocp
,
Common Service Locator
,
EventAggregator
,
IoC/DI
,
Open Closed Principle
,
Unity
Unit Testable Configuration Manager
by
Kazi Manzur Rashid's Blog
If you are a TDD purist, you should know that accessing file system in Unit Test is violating the rule. But in our application, our infrastructural code often requires to access the configuration values form web.config/app.config. In this post, I will...
Filed under:
unit test
,
C#
,
Mock
,
TDD