Monday, June 18, 2007 - Posts

Ian Posts a Video about Silverlight Streaming

I've only had the one little play around with Silverlight Streaming but I noticed that IanM has made a video on using it. Mine was a custom app whereas Ian is taking the results from Expression Media Encoder straight up to Silverlight Streaming as Read More

Want LINQ to (Anything But) SQL?

Then, this should be of interest; Database Vendors Discuss the Entity Framework and LINQ at TechEd Read More

More Dynamic Queries

Took this slightly further (which you could definitely describe as making it worse :-)) by adding a limited form of an OrElse;namespace MyExtensions { public enum Operand { Equal, NotEqual, LessThan, LessThanEqual, GreaterThan, Read More

Bit More on Dynamic Queries

I took this a little bit further and ended up with;namespace MyExtensions { public enum Operand { Equal, NotEqual, LessThan, LessThanEqual, GreaterThan, GreaterThanEqual } public static class Extensions Read More