User Ryan Lanciaux - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T12:02:19Z http://stackoverflow.com/feeds/user/2781 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1715494/asp-net-mvc-dynamic-menu-system/1715537#1715537 1 Answer by Ryan Lanciaux for Asp.net MVC Dynamic Menu System Ryan Lanciaux 2009-11-11T14:34:02Z 2009-11-11T15:47:02Z <p>You could use the Render Action from the <a href="http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=24471" rel="nofollow">MVC Future's</a> library if you want to have your own controller, etc. for your menus apart from using the main view model. </p> http://stackoverflow.com/questions/1579192/should-i-use-scriptsharp/1579376#1579376 1 Answer by Ryan Lanciaux for Should I use ScriptSharp Ryan Lanciaux 2009-10-16T17:33:16Z 2009-10-16T17:33:16Z <p>Like the others have I would recommend some JavaScript (namely jQuery). Should you wish to continue with Script#, Nikhil Kothari's blog may be a good resource for you. <a href="http://www.nikhilk.net/ScriptSharpIntro.aspx" rel="nofollow">http://www.nikhilk.net/ScriptSharpIntro.aspx</a> -- That being said, I think you'll find that you are more productive with jQuery. There is a large database of community written plugins so you wouldn't necessarily have to reinvent the wheel on everything you want to do. <a href="http://frickinsweet.com/ryanlanciaux.com/post/Are-you-a-Control-Freak.aspx" rel="nofollow">jQuery plugins instead of ASP.NET Controls</a></p> http://stackoverflow.com/questions/1562629/using-code-behind-with-asp-net-mvc-views/1562766#1562766 2 Answer by Ryan Lanciaux for Using Code-Behind with ASP.NET MVC Views Ryan Lanciaux 2009-10-13T20:34:43Z 2009-10-13T20:34:43Z <p>I would recommend avoiding the codebehind in an MVC app at all costs. Using the code behind negates some of the values you get by using the MVC Framework such as separation of concerns, etc. You want to have your data access, business rules, type conversion and that sort of thing applied in the Model. If you find you need to convert your data types like Dylan mentioned, you may want to make ViewModels. The ViewModel would basically be the data from the actual Model you would like to display, in the format you wish to display it in.</p> http://stackoverflow.com/questions/1244401/fluent-nhibernate-nhibernate-inheritance-question 0 Fluent NHibernate / NHibernate Inheritance Question Ryan Lanciaux 2009-08-07T12:15:08Z 2009-08-07T12:28:30Z <p>Possibly a dumb question but I have a number of entities all inheriting from a base entity. The base entity does not have a table in the database. Each entity has its own table and the table definition is exactly the same. Extremely simplified example of the code is below.</p> <pre><code>public abstract class BaseEntity { public virtual string someProperty {get; set;} } public class Entity1 : BaseEntity{} public class Entity2 : BaseEntity{} public class CompletelyDifferentEntity { public virtual IList&lt;BaseEntity&gt; {get; set;} } </code></pre> <p>I created the mappings for the entities. In my other domain classes if I reference the concrete classes everything works fine but if I change my other classes to reference BaseEntity instead I get a mapping Exception because the BaseEntity is not mapped. Is this something where I should use a subclass discriminator? I guess I'm not seeing the correct way to do this if the base doesn't have an associated table and the subclasses don't have a specific column that is different between the table definitions. </p> http://stackoverflow.com/questions/642437/reusing-code-from-another-rails-app 0 Reusing Code from Another Rails App Ryan Lanciaux 2009-03-13T12:23:35Z 2009-08-06T23:43:28Z <p>I am trying to reuse some code from another rails application I had worked on earlier. I copied over all the models / views / controller / migrations and ran rake db:create and migrate. Now when I try to run the application the initial page for this view (the one that has the list edit/delete) loads fine and shows there are 0 records. When I click new, however, it displays an error message on a bit of code created by the scaffolding in my other application...</p> <pre><code>&lt;%= link_to 'New comment', new_comment_path %&gt; undefined local variable or method `new_comment_path' for #&lt;ActionView::Base:0xb67c9690&gt; </code></pre> <p>Should I be able to reuse this code or is their something else I need to do to make sure that I have everything moved over. I tried using grep to find where the 'new_comment_path' was being defined in my other project and I only saw it used in a similar context to what is listed above. Any help would be appreciated.</p> http://stackoverflow.com/questions/639752/rails-restful-authentication-cant-find-userobserver 1 Rails Restful Authentication : Can't find UserObserver Ryan Lanciaux 2009-03-12T17:51:21Z 2009-03-12T23:25:53Z <p>I am moderately new to Rails so this may be a stupid question...</p> <p>I followed the basic steps noted on the <a href="http://github.com/technoweenie/restful-authentication/tree/master" rel="nofollow">github site for the plugin</a> (mainly installed the plugin, ran the generator, modified environment.rb and created the UserObserver class in the models directory)</p> <p>The error I'm getting is saying it's coming from active_support/dependencies. <strong>"'load_missing_constant': uninitialized constant UserObserver (NameError)."</strong> Any idea on why it could not find the user observer class? </p> http://stackoverflow.com/questions/542707/using-ninject-autofac-for-a-given-scenario/542767#542767 1 Answer by Ryan Lanciaux for Using ninject/autofac for a given scenario Ryan Lanciaux 2009-02-12T19:01:02Z 2009-02-12T19:01:02Z <p>I may not understand your setup correctly but I believe you could handle this type of operation with Ninject pretty easily. You would want to create a base interface and have all your objects implement that. Your Ninject bindings will use the Context to determine which class to load in place of your interface type. I wrote a brief tutorial using Ninject's contextual binding available here : <a href="http://frickinsweet.com/ryanlanciaux.com/post/Real-Ultimate-Power--Dependency-Injection-with-Ninject.aspx" rel="nofollow">http://frickinsweet.com/ryanlanciaux.com/post/Real-Ultimate-Power--Dependency-Injection-with-Ninject.aspx</a></p> http://stackoverflow.com/questions/534142/asp-net-mvc-updating-user-control-shopping-cart-with-ajax/534381#534381 0 Answer by Ryan Lanciaux for Asp.Net MVC. Updating user control (Shopping Cart) with Ajax Ryan Lanciaux 2009-02-10T21:53:08Z 2009-02-10T21:53:08Z <p>If I understand the question right you want to be able to call a Controller that calls some business logic in the model to update the shopping cart. If this is correct you want to create a JsonResult Controller Action. You will use jQuery to call this action... I wrote a very simple example of this available at <a href="http://www.dev102.com/2008/08/19/jquery-and-the-aspnet-mvc-framework/" rel="nofollow">http://www.dev102.com/2008/08/19/jquery-and-the-aspnet-mvc-framework/</a></p> http://stackoverflow.com/questions/534300/getjson-produce-a-download-of-a-file-asp-net-mvc/534360#534360 0 Answer by Ryan Lanciaux for .getJSON produce a Download of a File ASP.NET MVC Ryan Lanciaux 2009-02-10T21:49:55Z 2009-02-10T21:49:55Z <p>Hmm Are you sure that the Javascript is being triggered in that instance? What is HTML type is #ID? If the JavaScript is not getting called and your controller is trying to route to the json result, I think that could be your problem.</p> http://stackoverflow.com/questions/507208/mvc-bulk-edit-examples/507276#507276 0 Answer by Ryan Lanciaux for MVC Bulk Edit - Examples Ryan Lanciaux 2009-02-03T14:27:06Z 2009-02-03T18:39:20Z <p>What I would probably do to get around this is use jQuery to call a jsonResult when you switch rows. This jsonResult would call the code in the model to save the ItemId, ItemName, ItemPrice for only the row you are switching off of. More on general jsonResult w/ jQuery usage here : <a href="http://www.dev102.com/2008/08/19/jquery-and-the-aspnet-mvc-framework/" rel="nofollow">http://www.dev102.com/2008/08/19/jquery-and-the-aspnet-mvc-framework/</a></p> <p>The other thing you could do is do model binding to a list of Items, iterating thru the list saving each item -- Phil Haack has an example of list binding here: <a href="http://haacked.com/archive/2008/10/23/model-binding-to-a-list.aspx" rel="nofollow">http://haacked.com/archive/2008/10/23/model-binding-to-a-list.aspx</a> With either method you'll want to do something to signify the row has changed so you're not updating every field if you're just changing a handful of rows.</p> http://stackoverflow.com/questions/474216/what-is-the-best-way-to-style-alternating-rows-in-a-table/474237#474237 0 Answer by Ryan Lanciaux for What is the best way to style alternating rows in a table? Ryan Lanciaux 2009-01-23T19:49:58Z 2009-01-23T19:49:58Z <p>It depends on your scenario. JavaScript based may be quicker to implement for a number of rows if the table is not being created on-the-fly. If you're dynamically creating your table, however, you could pretty easily set the class for every other row to be "row_alternate" -- I prefer the server side method if you are concerned that some of your users may not have JavaScript.</p> http://stackoverflow.com/questions/466816/is-there-a-way-to-map-a-one-to-one-with-a-where-clause/466885#466885 0 Answer by Ryan Lanciaux for Is there a way to map a one-to-one with a where clause? Ryan Lanciaux 2009-01-21T20:39:56Z 2009-01-21T20:39:56Z <p>Couldn't you have both Video and Clip objects in your class and just make sure that both are never populated at the same time? Might need some more information from you such as your current class structure. Also, Is there only going to be one Video per Bin object and vice versa?</p> http://stackoverflow.com/questions/465805/how-can-i-override-an-inline-style-with-an-external-css/465811#465811 1 Answer by Ryan Lanciaux for How can I override an inline style with an external css? Ryan Lanciaux 2009-01-21T15:47:23Z 2009-01-21T15:47:23Z <p>I think you would need to override the style with JavaScript. <a href="http://jquery.com/" rel="nofollow">jQuery</a> would make this very easy.</p> http://stackoverflow.com/questions/465760/applying-styles-to-asp-net-mvc-viewdata-objects/465781#465781 0 Answer by Ryan Lanciaux for Applying Styles to ASP.Net MVC ViewData objects. Ryan Lanciaux 2009-01-21T15:38:15Z 2009-01-21T15:38:15Z <p>You may want to look at the <a href="http://960.gs/" rel="nofollow">960 Grid System</a>. It will still require some CSS but it will make your life a lot easier. There are some examples / tutorials on the site.</p> http://stackoverflow.com/questions/458483/what-is-unity-injectionconstructor-attribute/458640#458640 1 Answer by Ryan Lanciaux for What is Unity InjectionConstructor Attribute ? Ryan Lanciaux 2009-01-19T18:35:32Z 2009-01-19T18:35:32Z <p>Basically this tells Unity to use the constructor that is specified with the attribute. Please <a href="http://codebetter.com/blogs/david.hayden/archive/2008/10/27/specifying-injection-constructor-using-unity-fluent-interface-for-loose-coupling-and-poco.aspx" rel="nofollow">read this post</a> for more information.</p> http://stackoverflow.com/questions/448266/is-there-a-net-ioc-that-prefers-convention-over-configuration/448339#448339 2 Answer by Ryan Lanciaux for Is there a .NET IoC that prefers convention over configuration? Ryan Lanciaux 2009-01-15T20:28:39Z 2009-01-15T20:28:39Z <p>I use <a href="http://ninject.org/" rel="nofollow">Ninject</a> and <a href="http://structuremap.sourceforge.net/Default.htm" rel="nofollow">StructureMap</a> -- both allow you to wire up your configuration without XML. </p> <p>Not to be shamelessly promoting my site but I wrote a tutorial on using Ninject available <a href="http://frickinsweet.com/ryanlanciaux.com/post/Real-Ultimate-Power--Dependency-Injection-with-Ninject.aspx" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/443467/join-to-a-table-only-when-column-value-is-true/443514#443514 0 Answer by Ryan Lanciaux for Join to a table only when column value is true Ryan Lanciaux 2009-01-14T16:03:36Z 2009-01-14T16:03:36Z <p>Very similar to what Dave said, although I would put the booleancolumn check into the WHERE so something like this</p> <pre><code>SELECT * FROM T1 INNER JOIN T2 ON T1.Value = T2.Value WHERE T2.Value2 = 'variable2' AND T2.Value3 = 'variable3' AND T1.booleancolumn = 1 </code></pre> http://stackoverflow.com/questions/438889/do-i-need-to-set-debugfalse-in-my-asp-net-web-app-before-i-use-the-publish-we/438898#438898 4 Answer by Ryan Lanciaux for Do I need to set debug="false" in my ASP.NET web app before I use the "Publish Web Site" feature in VS 2005? Ryan Lanciaux 2009-01-13T13:14:52Z 2009-01-13T13:14:52Z <p>You do not have to turn that setting off, however, you will want to set debug="false" before running the website as a production application. It will have a profound impact on your site's performance.</p> http://stackoverflow.com/questions/437002/what-is-the-right-pattern-for-using-jquery-ajax-and-asp-net-mvc/437111#437111 3 Answer by Ryan Lanciaux for What is the right pattern for using JQuery Ajax and ASP.Net Mvc? Ryan Lanciaux 2009-01-12T21:38:50Z 2009-01-12T21:45:26Z <p>I would approach this using jQuery and JsonResult Controller. Your jQuery code would call the JsonResult which would pass the pertinent information off to the model code to handle adding a new vote. I wrote a brief tutorial on similar concepts which is available at <a href="http://www.dev102.com/2008/08/19/jquery-and-the-aspnet-mvc-framework/" rel="nofollow">http://www.dev102.com/2008/08/19/jquery-and-the-aspnet-mvc-framework/</a></p> http://stackoverflow.com/questions/425306/is-mvc-the-best-way-to-code-asp-net-applications/425328#425328 1 Answer by Ryan Lanciaux for Is MVC the best way to code asp.net applications? Ryan Lanciaux 2009-01-08T18:31:10Z 2009-01-08T18:31:10Z <p>MVC is just one way of doing things. I like it because it helps to promote extensibility and is structured to allow testing and code reuse. There is no silver bullet, one true way to do everything but I use it quite often. </p> <p>In regard to Microsoft, I would say that they adopted the pattern as an alternative to WebForms development for the reasons I mentioned above. I would recommend looking at <a href="http://blog.wekeroad.com/mvc-storefront/mvc-storefront-part-1/" rel="nofollow">Rob Conery's MVC Storefront</a> and kind of play around with the examples to see how it works for you. </p> http://stackoverflow.com/questions/417813/update-a-dropdrownlist-in-a-asp-net-mvc-when-a-user-select-un-option-in-another/418333#418333 1 Answer by Ryan Lanciaux for Update a DropDrownList in a ASP.NET MVC when a user select un option in another DropDrownList Ryan Lanciaux 2009-01-06T21:51:19Z 2009-01-06T21:51:19Z <p>I would recommend using jQuery and MVC's JsonResult to achieve this functionality. Have something in your Model to grab the new info from the db based on the given user input. The JsonResult will return this back to the view and you'll use jQuery will populate the drop down accordingly. </p> <p>A very <a href="http://www.dev102.com/2008/08/19/jquery-and-the-aspnet-mvc-framework/" rel="nofollow">basic example using jQuery and the MVC framework's JsonResult</a> is available <a href="http://www.dev102.com/2008/08/19/jquery-and-the-aspnet-mvc-framework/" rel="nofollow">here</a></p> http://stackoverflow.com/questions/416679/asp-net-mvc-tdd-with-linq-and-sql-database/416890#416890 1 Answer by Ryan Lanciaux for ASP.NET MVC TDD with LINQ and SQL database Ryan Lanciaux 2009-01-06T15:07:54Z 2009-01-06T15:07:54Z <p>You may want to find some other way around actually hitting the database for your unit tests because it takes a lot more time. That being said, have you considered using Migrations for creating / deleting your tables instead of using sql scripts? <a href="http://www.rikware.com/RikMigrations.html" rel="nofollow">RikMigrations</a> is what I have been using to create my database so I can easily revision all of my code in one place. <a href="http://www.codethinked.com" rel="nofollow">Justin Etheredge</a> has a great article on <a href="http://www.codethinked.com/post/2008/12/16/Migrations-in-C-using-RikMigrations.aspx" rel="nofollow">using RikMigrations</a>.</p> http://stackoverflow.com/questions/54966/replacing-windows-explorer-with-third-party-tool 3 Replacing Windows Explorer With Third Party Tool Ryan Lanciaux 2008-09-10T18:35:47Z 2008-12-03T22:52:11Z <p>How would I go about replacing Windows Explorer with a third party tool such as TotalCommander, explorer++, etc?</p> <p>I would like to have one of those load instead of win explorer when I type "C:\directoryName" into the run window. Is this possible?</p> http://stackoverflow.com/questions/288317/visual-studio-where-is-intellisense-in-the-immediate-window/288361#288361 3 Answer by Ryan Lanciaux for Visual Studio: Where is intellisense in the immediate window? Ryan Lanciaux 2008-11-13T21:20:10Z 2008-11-13T21:20:10Z <p>Ctrl + Space in immediate if you don't have the intellisense coming up automatically. Like Joel, intellisense seems to come in go in the immed window.</p> http://stackoverflow.com/questions/284919/tutorials-to-start-learning-actionscript-3-0/285085#285085 0 Answer by Ryan Lanciaux for Tutorials to start learning Actionscript 3.0? Ryan Lanciaux 2008-11-12T19:39:41Z 2008-11-12T19:39:41Z <p>There are some good tutorials available at <a href="http://www.actionscript.org/resources/categories/Tutorials/" rel="nofollow">actionscript.org</a></p> http://stackoverflow.com/questions/285002/antipatterns-with-asp-net/285073#285073 0 Answer by Ryan Lanciaux for Antipatterns with ASP.NET Ryan Lanciaux 2008-11-12T19:37:52Z 2008-11-12T19:37:52Z <p>WebForms makes it easy to have your DataAccess, BusinessRules and User Interface all in the code behind which makes for a maintenance nightmare. You can write clean code with WebForms but it's very easy to shoot yourself in the foot.</p> http://stackoverflow.com/questions/281468/i-want-the-simplest-ajax-form-application/281476#281476 3 Answer by Ryan Lanciaux for I want the simplest ajax form application Ryan Lanciaux 2008-11-11T16:56:50Z 2008-11-11T16:56:50Z <p>I would highly recommend using <a href="http://jquery.com/" rel="nofollow">jQuery</a> -- there are some good tutorials (some are video) available at <a href="http://jqueryfordesigners.com/" rel="nofollow">jQuery for Designers</a>. </p> http://stackoverflow.com/questions/281036/are-out-parameters-a-bad-thing-in-net/281043#281043 3 Answer by Ryan Lanciaux for Are "out" parameters a bad thing in .NET? Ryan Lanciaux 2008-11-11T14:38:58Z 2008-11-11T14:38:58Z <p>For most circumstances I would recommend against using Out parameters. They basically add side-effects to your code and could be a nightmare when it comes to debugging.</p> <p>There's an article on MSDN regarding Out parameters available here: <a href="http://msdn.microsoft.com/en-us/library/t3c3bfhx.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/t3c3bfhx.aspx</a></p> http://stackoverflow.com/questions/279097/microsoft-visual-studio-tools-for-office-is-it-worth-using/279140#279140 3 Answer by Ryan Lanciaux for Microsoft Visual Studio Tools for Office. Is it worth using? Ryan Lanciaux 2008-11-10T20:57:23Z 2008-11-10T20:57:23Z <p>It really depends on what makes most sense for your project. If it's only going to be for certain files and a couple users, I would recommend VBA. </p> <p>If it's more complex and needs to work on all files for all users, I think a VSTO plugin would be the way to go. It really depends on your situation and complexity you're trying to enforce.</p> http://stackoverflow.com/questions/251541/why-does-this-generic-method-require-t-to-have-a-public-parameterless-constructo/251552#251552 -1 Answer by Ryan Lanciaux for Why does this generic method require T to have a public, parameterless constructor? Ryan Lanciaux 2008-10-30T20:02:43Z 2008-10-30T20:02:43Z <pre><code>Getrecords&lt;T&gt; ... </code></pre> <p>This should have any more detailed information that you need. <a href="http://msdn.microsoft.com/en-us/library/twcad0zb" rel="nofollow">http://msdn.microsoft.com/en-us/library/twcad0zb</a>(VS.80).aspx</p> http://stackoverflow.com/questions/1715494/asp-net-mvc-dynamic-menu-system/1715537#1715537 Comment by Ryan Lanciaux on Asp.net MVC Dynamic Menu System Ryan Lanciaux 2009-11-11T15:56:48Z 2009-11-11T15:56:48Z You are right, thank you -- I have edited the posting. :) http://stackoverflow.com/questions/1715494/asp-net-mvc-dynamic-menu-system/1715538#1715538 Comment by Ryan Lanciaux on Asp.net MVC Dynamic Menu System Ryan Lanciaux 2009-11-11T15:02:22Z 2009-11-11T15:02:22Z The MVC Contrib library is good but it may be easier just to use the MVC Future's Library from Microsoft if all that's required is the ability to render partials. http://stackoverflow.com/questions/1562629/using-code-behind-with-asp-net-mvc-views/1562656#1562656 Comment by Ryan Lanciaux on Using Code-Behind with ASP.NET MVC Views Ryan Lanciaux 2009-10-15T17:44:22Z 2009-10-15T17:44:22Z You want your applications logic in the model. The controller should be used only for linking up views and model data. http://stackoverflow.com/questions/46377/how-do-i-specify-multiple-constraints-on-a-generic-type-in-c/46395#46395 Comment by Ryan Lanciaux on How do I specify multiple constraints on a generic type in C#? Ryan Lanciaux 2009-08-28T13:08:26Z 2009-08-28T13:08:26Z haha, thanks :) http://stackoverflow.com/questions/1244401/fluent-nhibernate-nhibernate-inheritance-question/1244446#1244446 Comment by Ryan Lanciaux on Fluent NHibernate / NHibernate Inheritance Question Ryan Lanciaux 2009-08-07T12:49:12Z 2009-08-07T12:49:12Z I will look into the table-per-concrete mapping a bit more. Unfortunately changing the db scheme will not work because there are several pre-existing systems that depend on the schema as it currently is. http://stackoverflow.com/questions/642437/reusing-code-from-another-rails-app/642448#642448 Comment by Ryan Lanciaux on Reusing Code from Another Rails App Ryan Lanciaux 2009-03-13T16:43:56Z 2009-03-13T16:43:56Z Thank you that definitely fixed the problem. http://stackoverflow.com/questions/639752/rails-restful-authentication-cant-find-userobserver/640420#640420 Comment by Ryan Lanciaux on Rails Restful Authentication : Can't find UserObserver Ryan Lanciaux 2009-03-13T15:34:20Z 2009-03-13T15:34:20Z Bort looks pretty cool I think I will do that next time around. http://stackoverflow.com/questions/642437/reusing-code-from-another-rails-app/642885#642885 Comment by Ryan Lanciaux on Reusing Code from Another Rails App Ryan Lanciaux 2009-03-13T14:29:16Z 2009-03-13T14:29:16Z Thanks. I'll have to look into that a bit more. These are my first couple 'real' rails apps I'm working on. http://stackoverflow.com/questions/639752/rails-restful-authentication-cant-find-userobserver Comment by Ryan Lanciaux on Rails Restful Authentication : Can't find UserObserver Ryan Lanciaux 2009-03-12T19:04:03Z 2009-03-12T19:04:03Z Whoops I completely forgot to put the site link in. Sorry about that -- the standard restful_authentication at <a href="http://github.com/technoweenie/restful-authentication/tree/master" rel="nofollow">github.com/technoweenie/restful-authentication/&hellip;</a> http://stackoverflow.com/questions/448266/is-there-a-net-ioc-that-prefers-convention-over-configuration/448770#448770 Comment by Ryan Lanciaux on Is there a .NET IoC that prefers convention over configuration? Ryan Lanciaux 2009-01-16T15:56:07Z 2009-01-16T15:56:07Z Full Disclosure: You are the creator of LinFu, right? :) http://stackoverflow.com/questions/437002/what-is-the-right-pattern-for-using-jquery-ajax-and-asp-net-mvc/437100#437100 Comment by Ryan Lanciaux on What is the right pattern for using JQuery Ajax and ASP.Net Mvc? Ryan Lanciaux 2009-01-12T21:47:57Z 2009-01-12T21:47:57Z I would use the JsonResult instead of the standard ActionResult. You could simply return voteCount; http://stackoverflow.com/questions/288317/visual-studio-where-is-intellisense-in-the-immediate-window/288361#288361 Comment by Ryan Lanciaux on Visual Studio: Where is intellisense in the immediate window? Ryan Lanciaux 2008-11-13T21:31:48Z 2008-11-13T21:31:48Z Hmm weird, it seems to work for me =\ http://stackoverflow.com/questions/250583/outlook-redemption-getnamesfromids Comment by Ryan Lanciaux on Outlook Redemption : GetNamesFromIDs Ryan Lanciaux 2008-10-30T18:09:51Z 2008-10-30T18:09:51Z Definitely! Thanks for looking into this -- I really appreciate it. http://stackoverflow.com/questions/108396/fluent-nhibernate-many-to-many/108879#108879 Comment by Ryan Lanciaux on Fluent NHibernate Many-to-Many Ryan Lanciaux 2008-09-20T19:21:41Z 2008-09-20T19:21:41Z That is dead on. Thanks http://stackoverflow.com/questions/96160/web-dev-where-to-store-state-of-a-shopping-cart-like-object/96222#96222 Comment by Ryan Lanciaux on Web Dev - Where to store state of a shopping-cart-like object? Ryan Lanciaux 2008-09-18T20:03:03Z 2008-09-18T20:03:03Z Yea, I agree it really depends on the requirements of the app as to whether or not this would be the best route.