User ghostrocket - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T22:21:55Zhttp://stackoverflow.com/feeds/user/16074http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/238413/lambda-expression-tree-parsing4Lambda Expression Tree Parsingghostrocket2008-10-26T18:33:24Z2009-04-04T08:21:35Z
<p>Thanks in advance guys.</p>
<p>I am trying to use Lambda Expressions in a project to map to a third party query API. So, I'm parsing the Expression tree by hand.</p>
<p>if I pass in a lambda expression like:</p>
<pre><code>p => p.Title == "title"
</code></pre>
<p>everything works.</p>
<p>however if my lambda expression looks like:</p>
<pre><code>p => p.Title == myaspdropdown.SelectedValue
</code></pre>
<p>Using the .NET debugger, I don't see the actual value of that funciton. Instead i see something like:</p>
<pre><code>p => p.Title = (value(ASP.usercontrols_myaspusercontrol_ascx).myaspdropdown.SelectedValue)
</code></pre>
<p>What gives? And when I try to grab the right side of the expression as a string, I get "(value(ASP.usercontrols_myaspusercontrol_ascx).myaspdropdown.SelectedValue)" instead of the actual value. How do I get the actual value?? </p>
<p>Thanks again!</p>
http://stackoverflow.com/questions/87137/sequence-diagram-reverse-engineering2Sequence Diagram Reverse Engineeringghostrocket2008-09-17T20:14:13Z2009-03-17T21:30:27Z
<p>Hi -</p>
<p>I'm looking for a tool that will reverse engineer into a sequence diagram BUT also provides the ability to filter out calls to certain libraries. </p>
<p>For example, the Netbeans IDE does a fantastic job of this but it includes all calls to String or Integer which clutter up the diagram to the point it is unusable. </p>
<p>Any help is greatly appreciated!!!!!!!</p>
<p>FYI: The language in question is Java. </p>
http://stackoverflow.com/questions/238765/given-a-type-expressiontype-memberaccess-how-do-i-get-the-field-value9Given a type ExpressionType.MemberAccess, how do i get the field value? ghostrocket2008-10-26T23:04:20Z2008-10-27T02:28:33Z
<p>I am parsing an Expression Tree. Given a NodeType of ExpressionType.MemberAccess, how do I get the value of that Field? </p>
<p>From C# MSDN docs:
MemberAccess is A node that represents reading from a field or property. </p>
<p>A code snippet would be incredibly, incredibly helpful. Thanks in advance!!!</p>
<p>My code looks something like this: </p>
<pre><code>public static List<T> Filter(Expression<Func<T, bool>> filterExp)
{
//the expression is indeed a binary expression in this case
BinaryExpression expBody = filterExp.Body as BinaryExpression;
if (expBody.Left.NodeType == ExpressionType.MemberAccess)
//do something with ((MemberExpressionexpBody.Left).Name
//right hand side is indeed member access. in fact, the value comes from //aspdroplist.selectedvalue
if (expBody.Right.NodeType == ExpressionType.MemberAccess)
{
//how do i get the value of aspdroplist.selected value?? note: it's non-static
}
//return a list
}
</code></pre>
http://stackoverflow.com/questions/238765/given-a-type-expressiontype-memberaccess-how-do-i-get-the-field-value/238945#2389455Answer by ghostrocket for Given a type ExpressionType.MemberAccess, how do i get the field value? ghostrocket2008-10-27T02:28:33Z2008-10-27T02:28:33Z<p>thank you so so much to Marc Gravell above. I really appreciated his help. </p>
<p>It turns out, in my case. the problem can be solved via:</p>
<pre><code>object value = Expression.Lambda(expBody.Right).Compile().DynamicInvoke();
</code></pre>
<p>Thanks again Mark!</p>
http://stackoverflow.com/questions/221809/mylyn-type-plugin-for-visual-studio/238786#2387861Answer by ghostrocket for Mylyn type plugin for Visual Studioghostrocket2008-10-26T23:24:12Z2008-10-26T23:24:12Z<p>i'm not aware of anything open source but i do know that team system is setup to support this type of workflow. </p>
<p>resharper might also have features you are looking for but, again, not foss</p>
http://stackoverflow.com/questions/238555/how-do-i-get-the-value-of-memberinfo3How do I get the value of MemberInfo?ghostrocket2008-10-26T20:20:38Z2008-10-26T21:33:09Z
<p>How do I get the value of a MemberInfo object? .Name returns the name of the variable, but I need the value. </p>
<p>I think you can do this with FieldInfo but I don't have a snippet, if you know how to do this can you provide a snippet??</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/231924/whats-the-best-python-soap-stack-for-consuming-amazon-web-services-wsdl/236691#2366911Answer by ghostrocket for What's the best python soap stack for consuming Amazon Web Services WSDL?ghostrocket2008-10-25T17:00:01Z2008-10-25T17:00:01Z<p>if i'm not mistaken, you can consume Amazon Web Services via REST as well as SOAP. using REST with python would be <em>much</em> easier. </p>
http://stackoverflow.com/questions/159889/how-do-i-access-sqlite-db-instance-on-iphone1How do I access sqlite db instance on iPhone? ghostrocket2008-10-01T21:42:50Z2008-10-03T14:29:39Z
<p>I'm developing an iphone app that uses the built in sqlite db. I can view the db when running the simulator but how do i access the db instance on the physical device?? Any help is greatly appreciated. </p>
<p>FYI: i'm trying to view the open the db via the sqlite3 command line so I can execute arbitray sql against it. For the simulator, I can view the .sqlite file at: ~/Library/Application\ Support/iPhone\ Simulator/User/Applications/ ... but how can I see that file on the physical iphone? </p>
<p>FYI2: I'm trying to profile a db running on the physical device. The simulator does not work for me as this app uses Core Location data to run. </p>
http://stackoverflow.com/questions/159926/is-there-any-reasonable-way-to-migrate-from-subversion-to-cvs/159955#1599552Answer by ghostrocket for Is there any reasonable way to migrate from subversion to cvs?ghostrocket2008-10-01T21:59:33Z2008-10-01T21:59:33Z<p>when all you have is hammer, everything looks like a nail. </p>
<p>best bet is to learn svn it will make more knowledgeable.</p>
http://stackoverflow.com/questions/238765/given-a-type-expressiontype-memberaccess-how-do-i-get-the-field-value/238798#238798Comment by ghostrocket on Given a type ExpressionType.MemberAccess, how do i get the field value? ghostrocket2008-10-27T01:22:03Z2008-10-27T01:22:03ZThank you so much Marc!!! really ... above and beyond here.
ultimately the problem is the left hand side is a binaryexpression ... and the right hand side isn't a constantexpression. i'm going to update my question with some code
http://stackoverflow.com/questions/238765/given-a-type-expressiontype-memberaccess-how-do-i-get-the-field-value/238798#238798Comment by ghostrocket on Given a type ExpressionType.MemberAccess, how do i get the field value? ghostrocket2008-10-26T23:49:15Z2008-10-26T23:49:15Zi'm doing a lot with generics and reflection so retrieving the value via propertyinfo/fieldinfo isn't working because i'm not sure where to pull the referencing object from ... can i pull that from memberexpression or methodinfo?
http://stackoverflow.com/questions/238765/given-a-type-expressiontype-memberaccess-how-do-i-get-the-field-value/238798#238798Comment by ghostrocket on Given a type ExpressionType.MemberAccess, how do i get the field value? ghostrocket2008-10-26T23:48:08Z2008-10-26T23:48:08ZThank you so much Marc. THe value of .Expression property is ... something more interesting: {value(ASP.usercontrols_mycontro_ascx).controlname}
http://stackoverflow.com/questions/238413/lambda-expression-tree-parsing/238511#238511Comment by ghostrocket on Lambda Expression Tree Parsingghostrocket2008-10-26T23:38:01Z2008-10-26T23:38:01Zand thanks again for your help
http://stackoverflow.com/questions/238413/lambda-expression-tree-parsing/238511#238511Comment by ghostrocket on Lambda Expression Tree Parsingghostrocket2008-10-26T23:37:29Z2008-10-26T23:37:29Zhi john - maybe this question is clearer: <a href="http://stackoverflow.com/questions/238765/given-a-type-expressiontypememberaccess-how-do-i-get-the-field-value" rel="nofollow" title="given a type expressiontypememberaccess how do i get the field value">stackoverflow.com/questions/238765/…</a>http://stackoverflow.com/questions/238555/how-do-i-get-the-value-of-memberinfo/238562#238562Comment by ghostrocket on How do I get the value of MemberInfo?ghostrocket2008-10-26T20:30:54Z2008-10-26T20:30:54Zthanks jon -
could you give an example starting with a MemberInfo object though? http://stackoverflow.com/questions/238413/lambda-expression-tree-parsing/238425#238425Comment by ghostrocket on Lambda Expression Tree Parsingghostrocket2008-10-26T18:47:49Z2008-10-26T18:47:49Zupdated question. it's in the debugger [and also when i try to grab the right side of the expression]http://stackoverflow.com/questions/159889/how-do-i-access-sqlite-db-instance-on-iphone/160018#160018Comment by ghostrocket on How do I access sqlite db instance on iPhone? ghostrocket2008-10-03T14:30:04Z2008-10-03T14:30:04Zadded another comment. thanks again for getting back to me.http://stackoverflow.com/questions/159889/how-do-i-access-sqlite-db-instance-on-iphone/159891#159891Comment by ghostrocket on How do I access sqlite db instance on iPhone? ghostrocket2008-10-01T21:50:59Z2008-10-01T21:50:59Zthanks millenomi ... i updated my question to better express my problem. any ideas? http://stackoverflow.com/questions/87137/sequence-diagram-reverse-engineering/87617#87617Comment by ghostrocket on Sequence Diagram Reverse Engineeringghostrocket2008-09-17T21:25:56Z2008-09-17T21:25:56Zhmm. that URL redirects me to a herbal supplement website. it doesn't seem that was intended? http://stackoverflow.com/questions/87137/sequence-diagram-reverse-engineeringComment by ghostrocket on Sequence Diagram Reverse Engineeringghostrocket2008-09-17T20:26:17Z2008-09-17T20:26:17ZAhhh ... yes, Java.