Linq Expression string with inline values
I am trying to build expression strings for use with IOC extended nHydrate. When I call ToString() on my expression I get something like this: employee => employee.Username == value( Some type name here ) Is there a way to resolve that value call to the actual value? employee => employee.Username == "Captain Spiffy" ...