User Ryan Lanciaux - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T12:02:19Zhttp://stackoverflow.com/feeds/user/2781http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1715494/asp-net-mvc-dynamic-menu-system/1715537#17155371Answer by Ryan Lanciaux for Asp.net MVC Dynamic Menu SystemRyan Lanciaux2009-11-11T14:34:02Z2009-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#15793761Answer by Ryan Lanciaux for Should I use ScriptSharpRyan Lanciaux2009-10-16T17:33:16Z2009-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#15627662Answer by Ryan Lanciaux for Using Code-Behind with ASP.NET MVC ViewsRyan Lanciaux2009-10-13T20:34:43Z2009-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-question0Fluent NHibernate / NHibernate Inheritance QuestionRyan Lanciaux2009-08-07T12:15:08Z2009-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<BaseEntity> {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-app0Reusing Code from Another Rails AppRyan Lanciaux2009-03-13T12:23:35Z2009-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><%= link_to 'New comment', new_comment_path %>
undefined local variable or method `new_comment_path' for #<ActionView::Base:0xb67c9690>
</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-userobserver1Rails Restful Authentication : Can't find UserObserverRyan Lanciaux2009-03-12T17:51:21Z2009-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#5427671Answer by Ryan Lanciaux for Using ninject/autofac for a given scenarioRyan Lanciaux2009-02-12T19:01:02Z2009-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#5343810Answer by Ryan Lanciaux for Asp.Net MVC. Updating user control (Shopping Cart) with Ajax Ryan Lanciaux2009-02-10T21:53:08Z2009-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#5343600Answer by Ryan Lanciaux for .getJSON produce a Download of a File ASP.NET MVCRyan Lanciaux2009-02-10T21:49:55Z2009-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#5072760Answer by Ryan Lanciaux for MVC Bulk Edit - ExamplesRyan Lanciaux2009-02-03T14:27:06Z2009-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#4742370Answer by Ryan Lanciaux for What is the best way to style alternating rows in a table?Ryan Lanciaux2009-01-23T19:49:58Z2009-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#4668850Answer by Ryan Lanciaux for Is there a way to map a one-to-one with a where clause?Ryan Lanciaux2009-01-21T20:39:56Z2009-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#4658111Answer by Ryan Lanciaux for How can I override an inline style with an external css?Ryan Lanciaux2009-01-21T15:47:23Z2009-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#4657810Answer by Ryan Lanciaux for Applying Styles to ASP.Net MVC ViewData objects.Ryan Lanciaux2009-01-21T15:38:15Z2009-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#4586401Answer by Ryan Lanciaux for What is Unity InjectionConstructor Attribute ?Ryan Lanciaux2009-01-19T18:35:32Z2009-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#4483392Answer by Ryan Lanciaux for Is there a .NET IoC that prefers convention over configuration?Ryan Lanciaux2009-01-15T20:28:39Z2009-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#4435140Answer by Ryan Lanciaux for Join to a table only when column value is trueRyan Lanciaux2009-01-14T16:03:36Z2009-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#4388984Answer 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 Lanciaux2009-01-13T13:14:52Z2009-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#4371113Answer by Ryan Lanciaux for What is the right pattern for using JQuery Ajax and ASP.Net Mvc?Ryan Lanciaux2009-01-12T21:38:50Z2009-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#4253281Answer by Ryan Lanciaux for Is MVC the best way to code asp.net applications?Ryan Lanciaux2009-01-08T18:31:10Z2009-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#4183331Answer by Ryan Lanciaux for Update a DropDrownList in a ASP.NET MVC when a user select un option in another DropDrownListRyan Lanciaux2009-01-06T21:51:19Z2009-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#4168901Answer by Ryan Lanciaux for ASP.NET MVC TDD with LINQ and SQL databaseRyan Lanciaux2009-01-06T15:07:54Z2009-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-tool3Replacing Windows Explorer With Third Party ToolRyan Lanciaux2008-09-10T18:35:47Z2008-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#2883613Answer by Ryan Lanciaux for Visual Studio: Where is intellisense in the immediate window?Ryan Lanciaux2008-11-13T21:20:10Z2008-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#2850850Answer by Ryan Lanciaux for Tutorials to start learning Actionscript 3.0?Ryan Lanciaux2008-11-12T19:39:41Z2008-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#2850730Answer by Ryan Lanciaux for Antipatterns with ASP.NETRyan Lanciaux2008-11-12T19:37:52Z2008-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#2814763Answer by Ryan Lanciaux for I want the simplest ajax form applicationRyan Lanciaux2008-11-11T16:56:50Z2008-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#2810433Answer by Ryan Lanciaux for Are "out" parameters a bad thing in .NET?Ryan Lanciaux2008-11-11T14:38:58Z2008-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#2791403Answer by Ryan Lanciaux for Microsoft Visual Studio Tools for Office. Is it worth using?Ryan Lanciaux2008-11-10T20:57:23Z2008-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-1Answer by Ryan Lanciaux for Why does this generic method require T to have a public, parameterless constructor?Ryan Lanciaux2008-10-30T20:02:43Z2008-10-30T20:02:43Z<pre><code>Getrecords<T> ...
</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#1715537Comment by Ryan Lanciaux on Asp.net MVC Dynamic Menu SystemRyan Lanciaux2009-11-11T15:56:48Z2009-11-11T15:56:48ZYou are right, thank you -- I have edited the posting. :)http://stackoverflow.com/questions/1715494/asp-net-mvc-dynamic-menu-system/1715538#1715538Comment by Ryan Lanciaux on Asp.net MVC Dynamic Menu SystemRyan Lanciaux2009-11-11T15:02:22Z2009-11-11T15:02:22ZThe 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#1562656Comment by Ryan Lanciaux on Using Code-Behind with ASP.NET MVC ViewsRyan Lanciaux2009-10-15T17:44:22Z2009-10-15T17:44:22ZYou 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#46395Comment by Ryan Lanciaux on How do I specify multiple constraints on a generic type in C#?Ryan Lanciaux2009-08-28T13:08:26Z2009-08-28T13:08:26Zhaha, thanks :) http://stackoverflow.com/questions/1244401/fluent-nhibernate-nhibernate-inheritance-question/1244446#1244446Comment by Ryan Lanciaux on Fluent NHibernate / NHibernate Inheritance QuestionRyan Lanciaux2009-08-07T12:49:12Z2009-08-07T12:49:12ZI 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#642448Comment by Ryan Lanciaux on Reusing Code from Another Rails AppRyan Lanciaux2009-03-13T16:43:56Z2009-03-13T16:43:56ZThank you that definitely fixed the problem. http://stackoverflow.com/questions/639752/rails-restful-authentication-cant-find-userobserver/640420#640420Comment by Ryan Lanciaux on Rails Restful Authentication : Can't find UserObserverRyan Lanciaux2009-03-13T15:34:20Z2009-03-13T15:34:20ZBort looks pretty cool I think I will do that next time around. http://stackoverflow.com/questions/642437/reusing-code-from-another-rails-app/642885#642885Comment by Ryan Lanciaux on Reusing Code from Another Rails AppRyan Lanciaux2009-03-13T14:29:16Z2009-03-13T14:29:16ZThanks. 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-userobserverComment by Ryan Lanciaux on Rails Restful Authentication : Can't find UserObserverRyan Lanciaux2009-03-12T19:04:03Z2009-03-12T19:04:03ZWhoops 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/…</a>http://stackoverflow.com/questions/448266/is-there-a-net-ioc-that-prefers-convention-over-configuration/448770#448770Comment by Ryan Lanciaux on Is there a .NET IoC that prefers convention over configuration?Ryan Lanciaux2009-01-16T15:56:07Z2009-01-16T15:56:07ZFull 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#437100Comment by Ryan Lanciaux on What is the right pattern for using JQuery Ajax and ASP.Net Mvc?Ryan Lanciaux2009-01-12T21:47:57Z2009-01-12T21:47:57ZI 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#288361Comment by Ryan Lanciaux on Visual Studio: Where is intellisense in the immediate window?Ryan Lanciaux2008-11-13T21:31:48Z2008-11-13T21:31:48ZHmm weird, it seems to work for me =\http://stackoverflow.com/questions/250583/outlook-redemption-getnamesfromidsComment by Ryan Lanciaux on Outlook Redemption : GetNamesFromIDs Ryan Lanciaux2008-10-30T18:09:51Z2008-10-30T18:09:51ZDefinitely! Thanks for looking into this -- I really appreciate it.http://stackoverflow.com/questions/108396/fluent-nhibernate-many-to-many/108879#108879Comment by Ryan Lanciaux on Fluent NHibernate Many-to-ManyRyan Lanciaux2008-09-20T19:21:41Z2008-09-20T19:21:41ZThat is dead on. Thankshttp://stackoverflow.com/questions/96160/web-dev-where-to-store-state-of-a-shopping-cart-like-object/96222#96222Comment by Ryan Lanciaux on Web Dev - Where to store state of a shopping-cart-like object? Ryan Lanciaux2008-09-18T20:03:03Z2008-09-18T20:03:03ZYea, I agree it really depends on the requirements of the app as to whether or not this would be the best route.