To those of you who’ve never written a CAML query, this won’t seem exciting. For those of you have have spent hours digging through reams of XML searching for a fault in your query, this will be heaven sent:
CAML.NET assembly – write your queries in C# – and you can find it on Codeplex.
Queries are now as simple as:
string s = CAML.Query(
CAML.Where(
CAML.Eg(
CAML.FieldRef("SomeField"),
CAML.Value(someValue)
)
)
)
This is such a blatantly good idea that I’m giving it a
Comments from my old blog:
Now that *is* a good idea…