Mendelt

11,987
Reputation
505 views

Registered User

Name Mendelt
Member for 1 year
Seen 3 hours ago
Website
Location Rotterdam, the Netherlands
Age 32
I'm a programmer, I code.

Follow me on Twitter twitter.com/mendelt
1d
comment Howto: Count the items from a IEnumerable<T> without iterating?
@Shimmy You iterate and count the elements. Or you call Count() from the Linq namespace that does this for you.
Nov
17
awarded  Nice Answer
Nov
17
answered DDD Advice regarding related Objects (C#)
Nov
16
accepted Frameworks and third-party tools
Sep
27
awarded  Great Answer
Sep
13
accepted Don’t repeat yourself vs Internationalisation
Sep
2
accepted What, if anything is typically done in a repository’s structure to reflect deployed units?
Aug
28
awarded  Yearling
Aug
26
awarded  Nice Answer
Aug
18
accepted Tips for writing fluent interfaces in C# 3
Jul
30
comment Should override Object.Equals for Entities (in DDD)?
You can have repositories keep a dictionary of references to loaded objects and their id's. Whenever an object is needed twice just return a reference to the same object. Most ORM's do this for you
Jul
27
accepted StructureMap controller factory and null controller instance in MVC
Jul
27
awarded  Good Answer
Jul
15
accepted Should override Object.Equals for Entities (in DDD)?
Jul
14
answered Should override Object.Equals for Entities (in DDD)?
Jul
14
accepted Ninject vs Unity for DI
Jul
13
answered Single Responsibility Principle: do all public methods in a class have to use all class dependencies?
Jul
7
answered Unit Testing: Self-contained tests vs code duplication (DRY)
Jun
30
awarded  Popular Question
Jun
28
awarded  Popular Question
Jun
28
answered Ninject vs Unity for DI
Jun
23
comment Can I restore a backup if a table is corrupt?
If you have relations to or from that table then restoring a single table backup with different content can cause foreign keys to point to none existing rows. This might not be a problem depending how your application handles this.
Jun
23
answered Can I restore a backup if a table is corrupt?
Jun
23
comment Database Design Related
@AnthonyWJones: You don't read very well. He sketches the situation, then ends with a question.
Jun
23
answered Database Design Related
Jun
22
accepted Where to put code in (primarily) windowless WPF app?
Jun
22
answered Where to put code in (primarily) windowless WPF app?
Jun
22
accepted Lazy Loading, TDD, Data-First Approach: Are those killer bullets in the heart of Entity Framework?
Jun
20
comment ASP.Net MVC routing strategy
You didn't actually answer my question (I guess that's my fault for asking vague questions) but you did clarify some other things I didnt know, thanks :-) I tried to clear up the question a bit.
Jun
20
revised ASP.Net MVC routing strategy
added 1319 characters in body
Jun
20
comment ASP.Net MVC routing strategy
Thanks for the pointer, will check this out!
Jun
20
asked ASP.Net MVC routing strategy
Jun
20
answered StructureMap controller factory and null controller instance in MVC
Jun
16
awarded  Nice Answer
Jun
11
comment Can Windows drivers be written in Python?
@Judge Maygarden: That might work in user-mode but kernel-mode is very restrictive on what calls can be made. Chances are your interpreter will not run there either. Kernel mode development is kind of a black art.
Jun
11
answered Can Windows drivers be written in Python?
Jun
11
answered What are the differences between WCF and traditional ASP.NET Web
Jun
11
answered Frameworks and third-party tools
Jun
10
awarded  Enlightened
Jun
10
awarded  Nice Answer
Jun
10
answered Are there just one “message pump”, or many?
Jun
10
comment Efficient way to make a Programmatic Audio Mixdown
The math may be fast but the conversions from int to float and back again might be slow. But Rom already told you that. Just try it out and measure :-) Profiling is always better than talking about performance.
Jun
9
answered Efficient way to make a Programmatic Audio Mixdown
Jun
8
comment C# Constructor Design
Good idea, initialization and use of a class are often quite different. This nicely separates them. For even more separation you can move the initialization logic into a factory or builder class.
Jun
5
awarded  Nice Answer