Upcoming stories Subscribe to this feed

BlogEngine.NET 1.6 is Released (code2code.info)

submitted by quachnguyenquachnguyen(319) 6 days, 19 hours ago

The team is proud to announce the release of BlogEngine.NET version 1.6. With several new features and numerous improvements and bug fixes, this is a must upgrade version for current BlogEngine.NET users and those interested in entering the blog scene. read more...

add a comment | category: | Views: 27

tags: another

Using IIS Rewriting with MVC Routes to Keep Your Routes Simple (weblogs.asp.net)

submitted by MikeMoreMikeMore(170) 4 days, 17 hours ago

I saw an interesting question this past week on how to set up MVC Routes to work with some ugly legacy URL’s. There was probably several way to get it to work with MVC routes, but I recommended using IIS Rewriting to map those legacy URL’s to clean MVC routes. read more...

add a comment | category: | Views: 8

tags: another

Painless Caching, Memoization for .NET (explodingcoder.com)

submitted by spoulsonspoulson(255) 4 days, 16 hours ago

When searching for .NET discussions of I-don't-even-remember, I somehow came across Dustin Campbell's blog post about automatic memoization with C#. I instantly remembered first reading about this topic in Higher Order Perl, which at the time introduced me to this handy technique using the delegate pattern. After looking over Dustin's code, I liked the simplicity of wrapping any delegate with a single method call. This makes for an academic discussion, but I thought this could be much more practical if we abstracted the concept a bit more. read more...

add a comment | category: | Views: 31

tags: another

Performance: Using LCG to copy property values of two objects (weblogs.asp.net)

submitted by gpeipmangpeipman(1830) 4 days, 16 hours ago

Today I gave last performance boost to my property values copying mechanism. I would like to thank my readers Ron and David to remind me Lightweight Code Generation (LCG) and pointing me out aussie bloke blog entry Generic copy object using Lightweight Code Generation. In this posting I will show you last performance boost and put down a summary about my experiment this far. read more...

add a comment | category: | Views: 11

tags: another

Eagerly loading entity associations efficiently with nhibernate (ayende.com)

submitted by .NetKicks.NetKicks(1295) 2 days, 15 hours ago

Ayende explains the .Future(). read more...

add a comment | category: | Views: 9

tags: another

Visual Studio Tip: Fear the Regex Magic No More (www.teebot.be)

submitted by teebotteebot(50) 1 day, 21 hours ago

Here's a quick tip from the trenches. I'm sure lots of developers had to - one day or another - weigh between replacing some text by hand or finding a regular expression to automate the process. read more...

add a comment | category: | Views: 22

tags: another

Visual Studio 2010 and .NET Framework 4 RC Now Available (blogs.msdn.com)

submitted by johnsheehanjohnsheehan(4550) 1 day, 6 hours ago

Today, we are making available the Release Candidate (RC) for Visual Studio 2010 and .NET Framework 4 to all MSDN subscribers. The RC will be made available to the world on Wednesday, February 10th. The RC includes a go-live license for people who want to deploy in their production environment. read more...

add a comment | category: | Views: 15

tags: another

Multi-tenancy and ASP.NET MVC - Views with a ViewEngine (codeofrob.com)

submitted by robashtonrobashton(70) 1 day, 1 hour ago

Carrying on the series by talking about View Engines and how to use one to allow modules to provide their own views read more...

add a comment | category: | Views: 9

tags: another

Creating a monster: The DataTable meets dynamic (blog.rag.no)

submitted by runegrirunegri(80) 20 hours, 18 minutes ago

In this article I combine the good old DataTable with the new fancy dynamic types found in .Net 4. The result is a terrible monster, but a fun one! read more...

add a comment | category: | Views: 5

tags: another

Mapping Many to Many relationships using Fluent NHibernate (www.mattlong.com.au)

submitted by mattdlongmattdlong(45) 11 hours, 42 minutes ago

In my previous posts I went over the basics of mapping objects to traditional relational database tables and mapping relationships using Fluent NHibernate. One relationship I neglected to discuss in the previous post was a Many to Many relationship and how it is mapped using Fluent NHibernate, that is going to be the topic of today’s post. read more...

add a comment | category: | Views: 4

tags: another

In MS SQL Server getting Deadlock details using Traces (sqlreality.com)

submitted by subhashpuniasubhashpunia(30) 5 days, 22 hours ago

To get complete deadlock details the easiest and lighted-waighted method is using Traces#. For this purpose SQL Server have Trace # 1204, 1205. The information can be logged in Error log file using trace #3605. read more...

add a comment | category: | Views: 8

tags: another

Comparison: DbC and TDD - Part 3 (www.minddriven.de)

submitted by MatthiasJMatthiasJ(315) 3 days, 18 hours ago

Here is the third blog post in my little series on comparison of TDD and DbC which examines the key characteristics, commonalities and differences of DbC and TDD. The aspects of the current blog post are universality, expressiveness and checking correctness. read more...

add a comment | category: | Views: 5

tags: another

Using custom grouping operators in LINQ (tomasp.net)

submitted by tomasptomasp(160) 2 days, 15 hours ago

In LINQ, we can group data using the "group by" clause. However, there are other potentially useful implementations of grouping. For example, we may want to group only adjacent elements or group ascending or descending parts of the data. This article shows how to use custom behavior when grouping data using "group by" in LINQ query. read more...

add a comment | category: | Views: 18

tags: another

WPF: How To Animate Visibility Property? (blogs.microsoft.co.il)

submitted by arikparikp(180) 2 days, 12 hours ago

WPF: How To Animate Visibility Property? In this post I’ll show you an easy way to add fade-in / fade-out effects to your user controls, when you change their Visibility property. Adding the animation is done with an attached property, so using the code will be extremely simple. read more...

add a comment | category: | Views: 10

tags: another

Identify and Patch .NET Code using Windbg (bit.ly)

submitted by reshminreshmin(20) 2 days, 9 hours ago

Patch .NET Code using Windbg read more...

add a comment | category: | Views: 7

tags: another

BlockingCollection and IProducerConsumerCollection (www.codethinked.com)

submitted by mosessaurmosessaur(5050) 1 day, 18 hours ago

BlockingCollection is an incredibly easy way to have a few threads producing data and have numerous other threads picking up and processing that same data. read more...

add a comment | category: | Views: 7

tags: another