Danielg

Stories submitted by Danielg

You can do some crazy things with WCF(slagd.com)

submitted by DanielgDanielg(130) 3 years, 2 months ago

Have you ever wanted to code something that wasn’t exactly best practices, but would make for a neat concept? I know that I have. That's why I decide to spike a database driver for NHibernate that works accross the network, or across WCF specifically. read more...

add a comment |category: |Views: 18

tags: another

StructureMap and the Singleton Scenario(slagd.com)

submitted by DanielgDanielg(130) 3 years, 5 months ago

StructureMap is a great DI tool but in using it I have discovered an interesting shortfall. It would appear that even transient or "Per-Request" objects are only ever created once per declarative request thus having the effect of making everything singleton-ish. read more...

add a comment |category: |Views: 150

tags: another

Open generics and WCF?(slagd.com)

submitted by DanielgDanielg(130) 3 years, 10 months ago

If you have ever tried to use open generics with WCF you will know that it is not supported by default. GenericMessaging gets around this by leveraging WCF raw messages to allow for a more seamless .net to .net communication. read more...

add a comment |category: |Views: 99

tags: another

HashSet to the Rescue(slagd.com)

submitted by DanielgDanielg(130) 3 years, 11 months ago

If you are using a generic List<T> to store unique object references in there is a better way. It's called the HashSet<T> and it is new in .Net 3.5 It's indexed and it's blazing fast. read more...

add a comment |category: |Views: 436

tags: another