Welcome to Mike Taulty's Weblog Sign in | Join | Help

October 2007 - Posts

Registration is here , Agenda is here , main site is here . See you there. Read More...
Hmmmmmmm. If I had a pound for every time someone has asked me in the past "What's the best way to pass an array of values into a SQL Server stored procedure" then I'd have at least 4 pounds :-) I've seen people do it with strings. I've seen people do Read More...
Just a quick plug. I'm doing a couple of sessions at TechEd Europe which begins week commencing 5th November in Barcelona. TLA309 LINQ to XML: Using the Language Integrated Query (LINQ) Framework with XML Data XML developers have had to learn a combination Read More...
I wrote a little demo around FILESTREAM in SQL 2008 so I thought I'd share - the code's a little shabby but I got to the point where it did what I wanted and so I stopped. Some days I miss not writing production code because it's very different from demo Read More...
Joe Duffy has a fantasic post over on his site with a bunch of rules around using locks in .NET (and about concurrency generally). Really liked this stuff - particularly keen on "don't call other people's code when you're holding a lock" and "don't call Read More...
I spent a bunch of time today just trying to play with the FILESTREAM option on varbinary(max ) in SQL Server 2008. There's a good intro to doing this up here but it stops short of writing code against it which is where I wanted to go. So, I've created Read More...
I've had this post kicking around in my inbox for a while but hadn't got round to consuming it. It talks about how the EdmGen.exe process is a wrapper for classes that exist in System.Data.Entity.Design and you can take those classes and build them into Read More...
Just back from the VBUG Conference where I saw a whole bunch of people incuding Dave , Oliver , Andrew , Tony , Alex , Guy , Rob , Barry and a lot more. I enjoyed it and delivered an old-favourite in the shape of a "Introduction to Workflow" session and Read More...
Dinesh has a list of changes here . If you're using LINQ to SQL then this will have an impact on you. I'm not sure that I've 100% digested this aspect at this point so I'll need to revisit it. Actually, whilst you're there you probably also want to read; Read More...
I hadn't noticed this before; static void Main( string [] args) { var v = new { Prop1 = "A" , Prop2 = "B" }; v.Prop1 = "Foo" ; } Here's the error; Read More...
Found this post on the forthcoming MVC implementation in ASP.NET to be interesting. Currently watching the video. Read More...
I found this site interesting. It's not so much for the content (which is fine) but it's more for the animation that occurs when you mouse over one of the people. Not sure how that's done but I quite like it. Unfortunately, it's done with Flash rather Read More...
I've noticed a peculiar trend around Microsoft lately. We seem to be inventing our own language. I was having a laugh about this with David last night where we had examples such as; "TALKING TO"... When did it become ok for people to say "Can you TALK Read More...
Is anyone out there building a "RESTful" (quoted as this is a very overloaded term) framework for ASP.NET ? On the "RESTful" front, there's the bits that WCF V3.5 does for you but that brings in an awful lot of framework. Then there's the work that Astoria Read More...
I wrote about this once before . Let's say I'm building a service that I want to be stateless but has some notion of a session with a client. Let's say (for argument's sake) that the interface looks like this; public interface IServe { int GetFirstNumber(out Read More...
Otherwise, these guys look to be onto a big winner. Seems to me that the way to mitigate that is to get Windows to boot quickly. Having said that, I'd never boot the OS at all (I use standby/hibernate) except there are times when it forces me to (updates Read More...
Ok, so this whole post probably falls into the category of "nasty hack" but it was something that I was playing with so I thought I'd share. I wrote a little bit here previously about working with LINQ to SQL in a disconnected sense and wrote about how, Read More...
I did a bit of a poor talk on LINQ today. One of the reasons that it didn't go so well was that my most basic of LINQ to SQL demos wasn't working. Now, I've demo'd LINQ to SQL in "intro" form (and quite a bit beyond) maybe 20 times and it always works Read More...
Via ScottGu . I think this is a really positive step forward. For the longest time, I've thought that it's more difficult to work with .NET than it needs to be because we don't have the ability to debug into the Framework and see how things are actually Read More...
I've written probably 10 - 20 different little applications that I try to use to highlight the differences between IQueryable and IEnumerable previously and, just recently, I've written another one. I think this is a really interesting piece of code. Read More...
I looked at this before but here I am looking at it again because I think I got it wrong (or only half right anyway). Assume that I'm working with a default 1:1 mapping of Northwind and that I have a customer with a primary key value of "DEMO1" who also Read More...
I hadn't seen this before - cool post :-) Read More...