Popular Articles
Recent comments
- Aha! Problems with UpdatePanel? Sorted ...
11 hours 29 min ago - Some help required with this
17 hours 3 min ago - Never seen this issue
1 week 1 day ago - Error in query.ToList()
1 week 1 day ago - Thanks
1 week 1 day ago - Thanks
1 week 4 days ago - To get the data working,
2 weeks 13 hours ago - If I manually change the
2 weeks 13 hours ago - Handling EDM Relationship Metadata
2 weeks 14 hours ago - About the itextsharp version
2 weeks 16 hours ago


Open your connection
I find it funny when I hear people saying "that's the way it works so it's normal".
For your connection reset, open your DataContext connection before working with it and close it at the end. That gives a good extra performance boost.
db.Connection.Open()
db.Connection.Close()
I ran the profiler and -- no more connection reset!!