Help with Remoting Sample

From what I've read about LINQ, it seems like it might indeed be pretty cool. However, when I ran through the LINQ Preview, all of the samples seem very 'Hello World-ish' and I don't have much information yet on how it would affect me directly.
Here's what I need, hopefully someone on this forum can confirm that LINQ is intended to provide this functionality, and perhaps point me to more relevant discussions and/or samples.
I work with very fast, in-memory data stores. The update rate on my data store is on the order of 50K updates / sec. Way beyond the ability of SQL technology to handle; my data typically never sees the disk. However, I need to offer a Query API that will allow client-side developers the ability to write custom queries into my data store. For instance, 'show me all objects that match Condition XYZ' where 'Condition XYZ' is defined by the client-side app.
I first thought that serializing anonymous methods might be the answer. That is, allow the client-side app to serialize and send in an anonymous method that gets executed as a query on the server-side. However, I soon discovered that anonymous methods are actually being implemented as methods compiled into the client-side assembly. Since the server-side won't share the client-side assemblies, this approach won't work.
Can someone please confirm that LINQ will indeed work in this scenario. And if so, point me to any relevant discussion and/or sample code that shows how to use LINQ and Remoting together.
Keep in mind that I have absolutely no interest in SQL type structures. I simply want raw access to fully OO structures and methods, and to be able to implement true 'closure' type functionality W/O have to share the client side assembly with the server.
Many thanks.
[1806 byte] By [ronnotel] at [2008-2-15]
# 1
Try Lightweight Code Generation, perhaps? You could use the LCG API to construct delegates at runtime which could themselves represent calls to the LINQ API. No class or assembly generation needed. It's how IronPython works.
KeithFarmer at 2007-9-9 > top of Msdn Tech,Visual Studio Orcas,LINQ Project General...
# 2

A five minute review of IronPython seems intriguing. In a prior life, I used Tcl as the glue languge for writing a Query API in a C++ implementation. This seems like a familiar design strategy given that my data store is now in C#.

I'd prefer to stick with pure Microsoft for this piece, but I'll definitely check out IP.

ronnotel at 2007-9-9 > top of Msdn Tech,Visual Studio Orcas,LINQ Project General...
# 3
IronPython *is* a Microsoft project.
KeithFarmer at 2007-9-9 > top of Msdn Tech,Visual Studio Orcas,LINQ Project General...
# 4
OK, I was looking at ironpython.com and didn't see the internal MS link until your prompt.

Thanks.

ronnotel at 2007-9-9 > top of Msdn Tech,Visual Studio Orcas,LINQ Project General...
# 5
OK, I was looking at ironpython.com and didn't see the internal MS link until your prompt.

Thanks.

ronnotel at 2007-9-9 > top of Msdn Tech,Visual Studio Orcas,LINQ Project General...
# 6
ironpython.com is very outdated. Use the GotDotNet workspace and the email list instead.
KeithFarmer at 2007-9-9 > top of Msdn Tech,Visual Studio Orcas,LINQ Project General...

Visual Studio Orcas

Site Classified