User Rob Scott - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T11:58:19Z http://stackoverflow.com/feeds/user/94707 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/953407/constructor-injection-how-many-dependencies-is-too-many/953591#953591 0 Answer by Rob Scott for Constructor Injection: How many dependencies is too many? Rob Scott 2009-06-04T23:16:32Z 2009-06-04T23:16:32Z <p>You may also want to see if any of the parameters to your constructor should be combined into a single class as well (assuming that the parameters make sense as a class). </p> <p>It might also be that you want to look at using the ServiceLocator pattern for some of your dependencies. This is particularly true if you're having to pass the dependencies down a long chain of constructors.</p> http://stackoverflow.com/questions/915649/what-should-be-on-a-checklist-that-would-help-someone-develop-good-oo-software/953558#953558 6 Answer by Rob Scott for What should be on a checklist that would help someone develop good OO software? Rob Scott 2009-06-04T23:05:11Z 2009-06-04T23:05:11Z <p>One of the best sources would be Martin Fowler's "Refactoring" book which contains a list (and supporting detail) of object oriented code smells that you might want to consider refactoring. </p> <p>I would also recommend the checklists in Robert Martin's "Clean Code".</p> http://stackoverflow.com/questions/925919/is-unit-of-work-more-efficient-if-i-dont-care-for-transactions-etc/934766#934766 0 Answer by Rob Scott for Is Unit of Work more efficient if I don't care for transactions etc? Rob Scott 2009-06-01T13:12:29Z 2009-06-01T13:12:29Z <p>Yes, you should use a transaction. From Ayende's blog:</p> <p>"NHibernate assume that all access to the database is done under a transaction, and strongly discourage any use of the session without a transaction."</p> <p>For more details, here's a link to his blog posting:</p> <p><a href="http://ayende.com/Blog/archive/2008/12/28/nh-prof-alerts-use-of-implicit-transactions-is-discouraged.aspx" rel="nofollow">http://ayende.com/Blog/archive/2008/12/28/nh-prof-alerts-use-of-implicit-transactions-is-discouraged.aspx</a></p> http://stackoverflow.com/questions/927409/which-data-framework-is-better-for-an-asp-net-mvc-site-linq-to-sql-or-nhibernat/934724#934724 1 Answer by Rob Scott for Which data framework is better for an ASP.NET MVC site - LINQ to SQL or NHibernate Rob Scott 2009-06-01T13:02:22Z 2009-06-01T13:02:22Z <p>The short (and not so helpful) answer is that both of the ORMs you've mentioned will work with MVC. A longer answer is that you should think about how you want to work with your model objects. For example, do you want to do domain object first development (ala a Domain Driven Design approach), or are you implementing a "forms over data" type application where you might want to generate a data access layer from an existing db? What is your preference for specifying mappings? Do you want to use a fluent interface or are you happy with mapping files (or attributes on your domain objects)?</p> <p>These are the type of questions you need to investigate when choosing an ORM -- and they're mostly independent of whether you're using MVC or Winforms.</p> http://stackoverflow.com/questions/432549/what-single-java-book-would-you-recommend-for-an-experienced-software-developer/899893#899893 -2 Answer by Rob Scott for What single Java book would you recommend for an experienced software developer? Rob Scott 2009-05-22T20:39:42Z 2009-05-22T20:39:42Z <p>Agile Java by Langr is excellent if you also want an intro to Test Driven Design and the basic agile approach.</p> http://stackoverflow.com/questions/816927/how-does-one-set-up-collaborative-work-for-a-project/816984#816984 0 Answer by Rob Scott for How does one set up collaborative work for a project? Rob Scott 2009-05-03T12:48:51Z 2009-05-03T12:48:51Z <p>Depending upon the size of your collaborative group, you may also want to check out Team City.</p> http://stackoverflow.com/questions/792009/nhibernate-collections-and-moving-objects/813334#813334 1 Answer by Rob Scott for NHibernate collections and moving objects Rob Scott 2009-05-01T21:15:41Z 2009-05-01T21:15:41Z <p>I'm assuming that you are using Cascade in the mapping for the class represented by objects A and B, i.e., A and B are both instances of some class X, and X's mapping contains a cascade attribute on the collection containing the object to be transferred.</p> <p>Given that assumption, this may help.</p> <p>If you want to be able to transfer the object from one collection to the other, you need to consider whether the thing that is being moved should have an existence that is independent of the two collections. </p> <p>If the transfer object doesn't get saved on its own, you will run into problems when you do the transfer because the transfered object is already known to the session.</p> <p>There are two ways out that I can think of. The better of the two is probably to treat the transfer object as an independent object which is saved on its own to the db (i.e, doesn't rely on Cascading in the mapping of the objects with the collection). Conceptually, this makes sense because if you can transfer it from one collection to the other that implies that somehow it is independent of the two objects having the collections. It does mean that you could end up with orphans.</p> <p>If you want to stick with using cascade in the mappings, then you will need to remove from object A in a different transaction than the add to object B. I suspect that isn't what you want to do.</p> http://stackoverflow.com/questions/726654/what-are-the-dangers-of-using-a-singleton-in-a-multithreaded-application/800162#800162 0 Answer by Rob Scott for What are the Dangers of using a Singleton in a multithreaded application Rob Scott 2009-04-28T22:50:41Z 2009-04-28T22:50:41Z <p>There is some debate with respect to the need to make the first check for null use Thread.VolatileRead() if you use the double checked locking pattern and want it to work on all memory models. An example of the debate can be read at <a href="http://social.msdn.microsoft.com/forums/en-US/csharpgeneral/thread/b1932d46-877f-41f1-bb9d-b4992f29cedc/" rel="nofollow">http://social.msdn.microsoft.com/forums/en-US/csharpgeneral/thread/b1932d46-877f-41f1-bb9d-b4992f29cedc/</a>.</p> <p>That said, I typically use Jon Skeet's solution from above.</p> http://stackoverflow.com/questions/799941/where-is-the-best-place-to-start-learning-linq/800100#800100 0 Answer by Rob Scott for Where is the best place to start learning LINQ? Rob Scott 2009-04-28T22:31:01Z 2009-04-28T22:31:01Z <p>I highly recommend Jon Skeet's "C# In Depth". He walks you through the updates .net 2 and 3 which you need to understand to fully appreciate what's going on with Linq. You may also have seen his name around here :)</p> http://stackoverflow.com/questions/783786/should-i-use-log4net-directly-in-my-domain-model-objects/799330#799330 1 Answer by Rob Scott for Should I use log4net directly in my domain model objects? Rob Scott 2009-04-28T18:46:29Z 2009-04-28T18:46:29Z <p>If you are going to log from your domain objects and you use an IOC container which you might want to swap out, I would recommend you use the Service Locator pattern (you could look at the Sharp# architecture for a nice implementation of a SafeServiceLocator that wraps msoft's ServiceLocator with more informative error messages). </p> <p>I would also like to suggest that you consider whether you want to log the type of error you show in your example. I would tend to want to have the domain object throw an exception in that case and let the caller decide whether that was something that was expected by the application (and hence shouldn't be logged) or whether that represents a situation that the caller wants to deal with in some way.</p> http://stackoverflow.com/questions/798140/calling-a-method-of-a-windows-form-without-an-active-form-instance/798397#798397 0 Answer by Rob Scott for Calling a Method of a Windows Form Without an Active Form Instance Rob Scott 2009-04-28T14:56:12Z 2009-04-28T14:56:12Z <p>One way to get started on splitting this class up is to look at what fields are used in what methods. </p> <p>As you described above, you'll quickly see that not all methods use all of the fields in the class. This is a sign that your class lacks internal cohesion. What you want to do is refactor this class into several classes that are more cohesive internally. </p> <p>So, look for clusters of functions that operate on the same fields. These clusters are smaller classes that want to break free of the uber class you have here. As you move these clusters of methods and the fields that they use into their own individual classes look for expressive names for the concept that the cluster represents. </p> <p>Many of the resulting classes will be useful on their own (and can be tested on their own). The remaining original class may end up using many of these newly created class to perform the functions it provides.</p> <p>Note that this is not a totally mechanical process, but is rather a heuristic that can give you a good start on cleaning up this mess. </p> http://stackoverflow.com/questions/6703/when-is-oop-better-suited-for/798328#798328 0 Answer by Rob Scott for When is OOP better suited for? Rob Scott 2009-04-28T14:41:25Z 2009-04-28T14:41:25Z <p>Object oriented code and procedural code have different extensibility points. Object oriented solutions make it easier to add new classes without modifying existing functions (see the Open-Closed Principle), while procedural code allows you to add functions without modifying existing data structures. Quite often different parts of a system require different approaches depending upon the type of change that is anticipated.</p> http://stackoverflow.com/questions/797897/which-declaration-is-better/798242#798242 0 Answer by Rob Scott for Which declaration is better? Rob Scott 2009-04-28T14:25:20Z 2009-04-28T14:25:20Z <p>A few additional points:</p> <ol> <li>If you plan on unit testing the code that uses the WinSock class you should consider making the class public instead of internal and consider making the methods virtual. This type of class often needs to be mocked or stubbed to return different data to the caller, so that different paths in the callers code can be executed.</li> <li>You should consider how objects of this class will be constructed. For example, will you pass in the Socket, or will you pass in some data to the class so that it can create the Socket? Your goal should be to pass in whatever data is required to create the object in a useful state.</li> <li>You should consider how you will test this class. In particular, how will this class obtain any other classes it needs to use to accomplish its task. For that you should search on Dependency Injection. That will start you down a useful path.</li> </ol> http://stackoverflow.com/questions/796216/declaration-of-variable-names/796257#796257 1 Answer by Rob Scott for declaration of variable names Rob Scott 2009-04-28T04:41:10Z 2009-04-28T04:41:10Z <p>When in Rome, do as the Romans. Each language usually has its own idioms with respect to these sorts of things. </p> http://stackoverflow.com/questions/427711/which-authors-software-development-books-do-you-always-want-to-read/796251#796251 0 Answer by Rob Scott for Which author's software development books do you always want to read? Rob Scott 2009-04-28T04:38:24Z 2009-04-28T04:38:24Z <p>Robert Martin and Mike Cohn</p> http://stackoverflow.com/questions/781952/a-software-testing-book-from-an-engineering-perspective/796218#796218 0 Answer by Rob Scott for A software testing book from an engineering perspective? Rob Scott 2009-04-28T04:27:59Z 2009-04-28T04:27:59Z <p>You might want to check out </p> <p>"Agile Testing: A Practical Guide for Testers and Agile Teams"</p> <p>[<a href="http://rads.stackoverflow.com/amzn/click/0321534468" rel="nofollow">http://www.amazon.com/Agile-Testing-Practical-Addison-Wesley-Signature/dp/0321534468/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1240892709&amp;sr=8-1</a>][1]</p> http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/795598#795598 0 Answer by Rob Scott for What is a reasonable code coverage % for unit tests (and why)? Rob Scott 2009-04-27T22:49:59Z 2009-04-27T22:49:59Z <p>I think that what may matter most is knowing what the coverage trend is over time and understanding the reasons for changes in the trend. Whether you view the changes in the trend as good or bad will depend upon your analysis of the reason.</p> http://stackoverflow.com/questions/602063/how-to-decide-between-composition-and-generalization-when-designing-objects-and-t/795145#795145 1 Answer by Rob Scott for How to decide between Composition and Generalization when designing objects and their relationships ? Rob Scott 2009-04-27T20:25:40Z 2009-04-27T20:25:40Z <p>If we're talking about public inheritance (IS_A), the key is to understand the Liskov Substitution Principle and what it means with respect to inheritance. In particular, it means that the IS-A relationship is context dependent which is an often overlooked aspect of public inheritance. </p> <p>To use the example above, the Car and Truck classes should only be derived from Vehicle if they can be substituted for the Vehicle class in any program written to use the Vehicle class without impacting the calling code.</p> <p>If we're talking about implementation inheritance (aka, private inheritance in C++), you should prefer composition over inheritance as a re-use mechanism.</p> http://stackoverflow.com/questions/574001/what-books-do-you-suggest-for-understanding-object-oriented-programming-design-de/795094#795094 1 Answer by Rob Scott for What books do you suggest for understanding object oriented programming design deeply? Rob Scott 2009-04-27T20:13:40Z 2009-04-27T20:13:40Z <p>Two books by Robert Martin are a great starting point:</p> <ol> <li>Clean Code</li> <li>Agile Principles, Patterns, and Practices</li> </ol> <p>I'd also recommend </p> <ul> <li>Designing Object-Oriented Software (Wirfs-Brock, et. al.)</li> </ul> http://stackoverflow.com/questions/793561/is-it-good-practice-to-throw-exceptions-in-virtual-functions/795047#795047 0 Answer by Rob Scott for Is it good practice to throw exceptions in virtual functions? Rob Scott 2009-04-27T19:59:29Z 2009-04-27T19:59:29Z <p>If you would like to "protect" the callers of the base class from receiving potentially unanticipated exceptions thrown by classes derived from your base class, consider using the Template pattern to catch any errors thrown by the derived class and convert them to an exception that you define on the base class. You should also consider passing up the exception thrown by the derived class as an inner exception.</p> http://stackoverflow.com/questions/794314/whats-the-proper-way-to-update-an-nhibernate-entity-from-a-asp-net-post-action-m/795016#795016 4 Answer by Rob Scott for What's the proper way to update an nhibernate entity from a asp.net POST action method? Rob Scott 2009-04-27T19:50:07Z 2009-04-27T19:50:07Z <p>Here's an example that does what I think you're trying to do. Let me know if I've misunderstood what you're trying to do.</p> <p>Given the following "domain" classes:</p> <pre><code>public class Person { private IList&lt;Pet&gt; pets; protected Person() { } public Person(string name) { Name = name; pets = new List&lt;Pet&gt;(); } public virtual Guid Id { get; set; } public virtual string Name { get; set; } public virtual IEnumerable&lt;Pet&gt; Pets { get { return pets; } } public virtual void AddPet(Pet pet) { pets.Add(pet); } public virtual void RemovePet(Pet pet) { pets.Remove(pet); } } public class Pet { protected Pet() { } public Pet(string name) { Name = name; } public virtual Guid Id { get; set; } public virtual string Name { get; set; } } </code></pre> <p>With the following mapping:</p> <pre><code> public class PersonMap : ClassMap&lt;Person&gt; { public PersonMap() { LazyLoad(); Id(x =&gt; x.Id).GeneratedBy.GuidComb(); Map(x =&gt; x.Name); HasMany(x =&gt; x.Pets) .Cascade.AllDeleteOrphan() .Access.AsLowerCaseField() .SetAttribute("lazy", "false"); } } public class PetMap : ClassMap&lt;Pet&gt; { public PetMap() { Id(x =&gt; x.Id).GeneratedBy.GuidComb(); Map(x =&gt; x.Name); } } </code></pre> <p>This test:</p> <pre><code> [Test] public void CanDeleteChildren() { Person person = new Person("joe"); Pet dog = new Pet("dog"); Pet cat = new Pet("cat"); person.AddPet(dog); person.AddPet(cat); Repository.Save(person); UnitOfWork.Commit(); CreateSession(); UnitOfWork.BeginTransaction(); Person retrievedPerson = Repository.Get&lt;Person&gt;(person.Id); Repository.Evict(retrievedPerson); retrievedPerson.Name = "Evicted"; Assert.AreEqual(2, retrievedPerson.Pets.Count()); retrievedPerson.RemovePet(retrievedPerson.Pets.First()); Assert.AreEqual(1, retrievedPerson.Pets.Count()); Repository.Save(retrievedPerson); UnitOfWork.Commit(); CreateSession(); UnitOfWork.BeginTransaction(); retrievedPerson = Repository.Get&lt;Person&gt;(person.Id); Assert.AreEqual(1, retrievedPerson.Pets.Count()); } </code></pre> <p>runs and generates the following sql:</p> <p>DeletingChildrenOfEvictedObject.CanDeleteChildren : Passed NHibernate: INSERT INTO [Person] (Name, Id) VALUES (@p0, @p1); @p0 = 'joe', @p1 = 'cd123fc8-6163-42a5-aeeb-9bf801013ab2'</p> <p>NHibernate: INSERT INTO [Pet] (Name, Id) VALUES (@p0, @p1); @p0 = 'dog', @p1 = '464e59c7-74d0-4317-9c22-9bf801013abb'</p> <p>NHibernate: INSERT INTO [Pet] (Name, Id) VALUES (@p0, @p1); @p0 = 'cat', @p1 = '010c2fd9-59c4-4e66-94fb-9bf801013abb'</p> <p>NHibernate: UPDATE [Pet] SET Person_id = @p0 WHERE Id = @p1; @p0 = 'cd123fc8-6163-42a5-aeeb-9bf801013ab2', @p1 = '464e59c7-74d0-4317-9c22-9bf801013abb'</p> <p>NHibernate: UPDATE [Pet] SET Person_id = @p0 WHERE Id = @p1; @p0 = 'cd123fc8-6163-42a5-aeeb-9bf801013ab2', @p1 = '010c2fd9-59c4-4e66-94fb-9bf801013abb'</p> <p>NHibernate: SELECT person0_.Id as Id5_0_, person0_.Name as Name5_0_ FROM [Person] person0_ WHERE person0_.Id=@p0; @p0 = 'cd123fc8-6163-42a5-aeeb-9bf801013ab2'</p> <p>NHibernate: SELECT pets0_.Person_id as Person3_1_, pets0_.Id as Id1_, pets0_.Id as Id6_0_, pets0_.Name as Name6_0_ FROM [Pet] pets0_ WHERE pets0_.Person_id=@p0; @p0 = 'cd123fc8-6163-42a5-aeeb-9bf801013ab2'</p> <p>NHibernate: UPDATE [Person] SET Name = @p0 WHERE Id = @p1; @p0 = 'Evicted', @p1 = 'cd123fc8-6163-42a5-aeeb-9bf801013ab2'</p> <p>NHibernate: UPDATE [Pet] SET Name = @p0 WHERE Id = @p1; @p0 = 'dog', @p1 = '464e59c7-74d0-4317-9c22-9bf801013abb' NHibernate: UPDATE [Pet] SET Person_id = null WHERE Person_id = @p0 AND Id = @p1; @p0 = 'cd123fc8-6163-42a5-aeeb-9bf801013ab2', @p1 = '010c2fd9-59c4-4e66-94fb-9bf801013abb'</p> <p>NHibernate: DELETE FROM [Pet] WHERE Id = @p0; @p0 = '010c2fd9-59c4-4e66-94fb-9bf801013abb'</p> <p>NHibernate: SELECT person0_.Id as Id5_0_, person0_.Name as Name5_0_ FROM [Person] person0_ WHERE person0_.Id=@p0; @p0 = 'cd123fc8-6163-42a5-aeeb-9bf801013ab2'</p> <p>NHibernate: SELECT pets0_.Person_id as Person3_1_, pets0_.Id as Id1_, pets0_.Id as Id6_0_, pets0_.Name as Name6_0_ FROM [Pet] pets0_ WHERE pets0_.Person_id=@p0; @p0 = 'cd123fc8-6163-42a5-aeeb-9bf801013ab2'</p> <p>Note the DELETE FROM [Pet]...</p> <p>so, what you need to be able to do is hand nhibernate a Person object (in this example) with the modified collections and it should be able to determmine what to delete. Make sure you have the Cascade.AllDeleteOrphan() attribute set.</p> http://stackoverflow.com/questions/787643/benefits-of-assertive-programming/787941#787941 1 Answer by Rob Scott for Benefits of Assertive Programming Rob Scott 2009-04-25T00:27:24Z 2009-04-25T00:27:24Z <p>An important distinction to consider is what sorts of errors you would like to catch with assertions. I often use assertions to catch programming errors (i.e., calling a method with a null parameter) and a different mechanism to handle validation errors (e.g., passing in a social security number of the wrong length). For the programming error caught with the assertion, I want to fail fast. For the validation error, I want to respond less drastically because it may be normal for there to be errors in the data (e.g. a user doing data entry of some sort). In those cases the proper handling might be to report the error back to the user and continue functioning. </p> http://stackoverflow.com/questions/787887/how-do-you-use-the-var-keyword/787918#787918 1 Answer by Rob Scott for How do you use the var keyword? Rob Scott 2009-04-25T00:15:08Z 2009-04-25T00:15:08Z <p>If it's a situation where either would work (which excludes the anonymous type situation), I try to use whatever will make the code easier to understand in the future. Sometimes that means using var if the usage scope is small or the type being assigned to is unwieldy (e.g., somekind of nested generic) to repeat and adds clutter. I also tend to use var where most people expect to see (e.g. as the declaration of a linq query).</p> http://stackoverflow.com/questions/552736/child-tables-in-nhibernate/784543#784543 1 Answer by Rob Scott for Child tables in NHibernate Rob Scott 2009-04-24T04:41:12Z 2009-04-24T04:41:12Z <p>I modified your example just a bit (in line with many of the suggestions here):</p> <pre><code>public class Person { private IList&lt;Pet&gt; pets; protected Person() {} public Person(string name) { Name = name; pets = new List&lt;Pet&gt;(); } public virtual Guid Id { get; set; } public virtual string Name { get; set; } public virtual IEnumerable&lt;Pet&gt; Pets { get { return pets; } } public virtual void AddPet(Pet pet) { pets.Add(pet); } } public class Pet { protected Pet() {} public Pet(string name) { Name = name; } public virtual Guid Id { get; set; } public virtual string Name { get; set; } } public class PersonMap : ClassMap&lt;Person&gt; { public PersonMap() { Id(x =&gt; x.Id).GeneratedBy.GuidComb(); Map(x =&gt; x.Name); HasMany(x =&gt; x.Pets).Cascade.AllDeleteOrphan().Access.AsLowerCaseField(); } } public class PetMap : ClassMap&lt;Pet&gt; { public PetMap() { Id(x =&gt; x.Id).GeneratedBy.GuidComb(); Map(x =&gt; x.Name); } } </code></pre> <p>The following test:</p> <pre><code> [Test] public void CanSaveAndRetrievePetAttachedToPerson() { Person person = new Person("Joe"); person.AddPet(new Pet("Fido")); Session.Save(person); Person retrievedPerson = Session.Get&lt;Person&gt;(person.Id); Assert.AreEqual("Fido", retrievedPerson.Pets.First().Name); } </code></pre> <p>passes.</p> <p>Note that this is using Fluent NHibernate for the mapping and the Session.</p> http://stackoverflow.com/questions/431509/cascade-saveorupdate-sqlite-fluent-nhibernate/784428#784428 3 Answer by Rob Scott for Cascade.SaveOrUpdate (SQLite) fluent-nhibernate Rob Scott 2009-04-24T03:44:47Z 2009-04-24T03:44:47Z <p>Maybe a little (or a lot) late, but nonetheless,</p> <p>I simplified your example to look like this:</p> <pre><code>public class Tournament { public virtual Guid Id { get; private set; } private readonly ISet&lt;Player&gt; players; public Tournament() { players = new HashedSet&lt;Player&gt;(); } public virtual ISet&lt;Player&gt; Players { get { return players; } } public virtual void AddPlayer(Player player) { players.Add(player); } } public class Player { public virtual Guid Id { get; private set; } private readonly ISet&lt;Tournament&gt; tournaments; public Player() { tournaments = new HashedSet&lt;Tournament&gt;(); } public virtual ISet&lt;Tournament&gt; Tournaments { get { return tournaments; } } public virtual void AddTournament(Tournament tournament) { tournaments.Add(tournament); } } public class TournamentMap : ClassMap&lt;Tournament&gt; { public TournamentMap() { Id(x =&gt; x.Id).GeneratedBy.GuidComb(); HasManyToMany&lt;Player&gt;(x =&gt; x.Players) .AsSet().Access.AsLowerCaseField() .Cascade.SaveUpdate(); } } public class PlayerMap : ClassMap&lt;Player&gt; { public PlayerMap() { Id(x =&gt; x.Id).GeneratedBy.GuidComb(); HasManyToMany&lt;Tournament&gt;(x =&gt; x.Tournaments) .Access.AsLowerCaseField() .AsSet() .Cascade.SaveUpdate().Inverse(); } } </code></pre> <p>The first test looks like:</p> <pre><code> [Test] public void CanSavePlayerAttachedToTournament() { Player player = new Player(); Tournament tournament = new Tournament(); player.AddTournament(tournament); tournament.AddPlayer(player); Session.Save(tournament); Session.Flush(); } </code></pre> <p>and yields the following sql:</p> <p>NHibernate: INSERT INTO "Tournament" (Id) VALUES (@p0); @p0 = '65559bba-8603-4874-8a8f-9bf4018596df' NHibernate: INSERT INTO "Player" (Id) VALUES (@p0); @p0 = '549e107c-1339-4fab-8960-9bf4018596e8' NHibernate: INSERT INTO PlayerToTournament (Tournament_id, Player_id) VALUES (@p0, @p1); @p0 = '65559bba-8603-4874-8a8f-9bf4018596df', @p1 = '549e107c-1339-4fab-8960-9bf4018596e8'</p> <p>The second test looks like:</p> <pre><code> [Test] public void CanSaveTounamentAttachedToPlayer() { Player player = new Player(); Tournament tournament = new Tournament(); player.AddTournament(tournament); tournament.AddPlayer(player); Session.Save(player); Session.Flush(); } </code></pre> <p>and yields the following sql:</p> <p>NHibernate: INSERT INTO "Player" (Id) VALUES (@p0); @p0 = '35c078c5-1102-4c63-91ca-9bf40185971c' NHibernate: INSERT INTO "Tournament" (Id) VALUES (@p0); @p0 = '367898cf-5835-4e1b-9d7d-9bf40185971c' NHibernate: INSERT INTO PlayerToTournament (Tournament_id, Player_id) VALUES (@p0, @p1); @p0 = '367898cf-5835-4e1b-9d7d-9bf40185971c', @p1 = '35c078c5-1102-4c63-91ca-9bf40185971c'</p> http://stackoverflow.com/questions/780092/on-being-a-contractor-at-a-shop-where-they-dont-use-database-indexes/780206#780206 0 Answer by Rob Scott for On being a contractor at a shop where they don't use database indexes Rob Scott 2009-04-23T03:34:05Z 2009-04-23T03:34:05Z <p>I agree with the answer Pax gave above, but I'd like to note that you should try to set the sample dbs up with realistic amounts of data inorder to ensure that the difference between indexed and non-indexed scenarios is apparent.</p> http://stackoverflow.com/questions/775263/where-to-move-the-business-logic-when-moving-it-out-of-the-database/780173#780173 0 Answer by Rob Scott for Where to move the business logic when moving it out of the database Rob Scott 2009-04-23T03:17:25Z 2009-04-23T03:17:25Z <p>This will depend upon the object model that you've created and how you've let your caller decide which Factory will be the new Factory to process the PurchaseOrder. </p> <p>For example, if you give your caller a list of Factories they can pick from, you could filter the list to only those that support the product associated with the existing PurchaseOrder (I'm assuming you're edited an existing order). If you want to have the PurchaseOrder validate that the Factory can process the order, I would have the setter on the PurchaseOrder call a method on the Factory (something like CanProcessOrderFor(product, quantity)). </p> <p>I'm assuming that you will have had to do a database query already to get the list of Factories and the PurchaseOrder. I would have the query for the Factory objects return their list of supported products and current quantities (or minimum order -- whatever your logic needs to be).</p> <p>A good ORM like NHibernate will let you cache some of these results to minimize roundtrips if this is a common scenario.</p> http://stackoverflow.com/questions/799941/where-is-the-best-place-to-start-learning-linq/800100#800100 Comment by Rob Scott on Where is the best place to start learning LINQ? Rob Scott 2009-06-04T12:55:02Z 2009-06-04T12:55:02Z I found that once I had understood the material in Jon's book the &quot;Link In Action&quot; book was a very quick read -- more of reference than anything else. Jon's book had explained the magic. :) http://stackoverflow.com/questions/899784/improving-my-data-access-layer/899846#899846 Comment by Rob Scott on Improving my data access layer Rob Scott 2009-05-22T20:35:53Z 2009-05-22T20:35:53Z nice vonnegut reference as well. http://stackoverflow.com/questions/899784/improving-my-data-access-layer/899846#899846 Comment by Rob Scott on Improving my data access layer Rob Scott 2009-05-22T20:35:14Z 2009-05-22T20:35:14Z Ha !I was just looking up his post as you answered this. <a href="http://ayende.com/Blog/archive/2008/11/21/stealing-from-your-client.aspx" rel="nofollow">ayende.com/Blog/archive/&hellip;</a> http://stackoverflow.com/questions/674317/exceptions-vs-special-return-values/674346#674346 Comment by Rob Scott on Exceptions vs Special return values Rob Scott 2009-04-28T19:09:15Z 2009-04-28T19:09:15Z Is this your experience with code compiled in debug mode or production mode. There is a HUGE difference in the cost between the two modes. In production mode the cost is very small. http://stackoverflow.com/questions/794314/whats-the-proper-way-to-update-an-nhibernate-entity-from-a-asp-net-post-action-m/795016#795016 Comment by Rob Scott on What's the proper way to update an nhibernate entity from a asp.net POST action method? Rob Scott 2009-04-27T20:03:13Z 2009-04-27T20:03:13Z The way I tend to deal with that situation is by treating the new object created by the model binder as a Presentation Model object. You will still need to retrieve the object (or somehow create an instance of the &quot;persisted&quot; class) you want to update and apply those updates to that object. You can then save that object to NHibernate. Does that make sense?