User ghostrocket - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T22:21:55Z http://stackoverflow.com/feeds/user/16074 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/238413/lambda-expression-tree-parsing 4 Lambda Expression Tree Parsing ghostrocket 2008-10-26T18:33:24Z 2009-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 =&gt; p.Title == "title" </code></pre> <p>everything works.</p> <p>however if my lambda expression looks like:</p> <pre><code>p =&gt; 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 =&gt; 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-engineering 2 Sequence Diagram Reverse Engineering ghostrocket 2008-09-17T20:14:13Z 2009-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-value 9 Given a type ExpressionType.MemberAccess, how do i get the field value? ghostrocket 2008-10-26T23:04:20Z 2008-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&lt;T&gt; Filter(Expression&lt;Func&lt;T, bool&gt;&gt; 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#238945 5 Answer by ghostrocket for Given a type ExpressionType.MemberAccess, how do i get the field value? ghostrocket 2008-10-27T02:28:33Z 2008-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#238786 1 Answer by ghostrocket for Mylyn type plugin for Visual Studio ghostrocket 2008-10-26T23:24:12Z 2008-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-memberinfo 3 How do I get the value of MemberInfo? ghostrocket 2008-10-26T20:20:38Z 2008-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#236691 1 Answer by ghostrocket for What's the best python soap stack for consuming Amazon Web Services WSDL? ghostrocket 2008-10-25T17:00:01Z 2008-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-iphone 1 How do I access sqlite db instance on iPhone? ghostrocket 2008-10-01T21:42:50Z 2008-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#159955 2 Answer by ghostrocket for Is there any reasonable way to migrate from subversion to cvs? ghostrocket 2008-10-01T21:59:33Z 2008-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#238798 Comment by ghostrocket on Given a type ExpressionType.MemberAccess, how do i get the field value? ghostrocket 2008-10-27T01:22:03Z 2008-10-27T01:22:03Z Thank 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#238798 Comment by ghostrocket on Given a type ExpressionType.MemberAccess, how do i get the field value? ghostrocket 2008-10-26T23:49:15Z 2008-10-26T23:49:15Z i'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#238798 Comment by ghostrocket on Given a type ExpressionType.MemberAccess, how do i get the field value? ghostrocket 2008-10-26T23:48:08Z 2008-10-26T23:48:08Z Thank 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#238511 Comment by ghostrocket on Lambda Expression Tree Parsing ghostrocket 2008-10-26T23:38:01Z 2008-10-26T23:38:01Z and thanks again for your help http://stackoverflow.com/questions/238413/lambda-expression-tree-parsing/238511#238511 Comment by ghostrocket on Lambda Expression Tree Parsing ghostrocket 2008-10-26T23:37:29Z 2008-10-26T23:37:29Z hi 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/&hellip;</a> http://stackoverflow.com/questions/238555/how-do-i-get-the-value-of-memberinfo/238562#238562 Comment by ghostrocket on How do I get the value of MemberInfo? ghostrocket 2008-10-26T20:30:54Z 2008-10-26T20:30:54Z thanks jon - could you give an example starting with a MemberInfo object though? http://stackoverflow.com/questions/238413/lambda-expression-tree-parsing/238425#238425 Comment by ghostrocket on Lambda Expression Tree Parsing ghostrocket 2008-10-26T18:47:49Z 2008-10-26T18:47:49Z updated 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#160018 Comment by ghostrocket on How do I access sqlite db instance on iPhone? ghostrocket 2008-10-03T14:30:04Z 2008-10-03T14:30:04Z added another comment. thanks again for getting back to me. http://stackoverflow.com/questions/159889/how-do-i-access-sqlite-db-instance-on-iphone/159891#159891 Comment by ghostrocket on How do I access sqlite db instance on iPhone? ghostrocket 2008-10-01T21:50:59Z 2008-10-01T21:50:59Z thanks millenomi ... i updated my question to better express my problem. any ideas? http://stackoverflow.com/questions/87137/sequence-diagram-reverse-engineering/87617#87617 Comment by ghostrocket on Sequence Diagram Reverse Engineering ghostrocket 2008-09-17T21:25:56Z 2008-09-17T21:25:56Z hmm. that URL redirects me to a herbal supplement website. it doesn't seem that was intended? http://stackoverflow.com/questions/87137/sequence-diagram-reverse-engineering Comment by ghostrocket on Sequence Diagram Reverse Engineering ghostrocket 2008-09-17T20:26:17Z 2008-09-17T20:26:17Z Ahhh ... yes, Java.