FilterExpression in ASP.NET SqlDataSource
The FilterExpression tag in ASP.NET does not support the between operator. If you try to specify a clause like “between x and y” as your filter expression,…
Reading a Binary XML stream in WCF
If you don’t provide a dictionary to read the XML stream with, you will get a weird and unhelpful exception that says “the input source is not correctly formatted”, and googling around will only bring you to posts telling you that “your client/server endpoints are not matched” or “you need to use the basicHttpBinding”. This is not a binding issue – it’s a deserialization issue that comes up when i make an attempt to inspect the soap messages coming in to (or going out of) my WCF service.
Using an SQL join in a SQL delete statement
I found this post by Ben Nadel when I was looking for a way to delete the rows in a table based on a foreign key column….