views:

77

answers:

1

I'm debugging in VS2010, and I want to inspect a string value but all I can get the debugger to show me (through watches, hovering, locals, etc.) is:

"System.Linq.Enumerable+<TakeIterator>d__3a`1[System.Char]"

I don't care if there are side effects from premature evaluation or whatever, I just want to see what the expression would evaluate to if I evaluate it right now at the current breakpoint.

How is this done? Also can I change my code in such a way that it evaluates earlier? Not that I care when I'm not debugging... but just wondering.

In case it is relevant... (I doubt it.) I'm stuffing a new entity object before saving it to the database... some fields are assigned with LINQ statements, I'm not sure when they get evaluated under the covers of EF. The DB update fails with 'string or binary data would be truncated... So I'm trying to find the too-long field.

+4  A: 

Screenshot


Are you accidentally doing something like this perhaps?

Screenshot

dtb
Yes acutally. There is something like that going on. Why would that be an accident?
DanO
Ah, duh, I get it! I'm turning the epression tree (or whatever that is) into a string...
DanO