2
votes
Cascade.SaveOrUpdate (SQLite) fluent-nhibernate
Maybe a little (or a lot) late, but nonetheless,
I simplified your example to look like this:
public class Tournament
{
public virtual Guid Id { get; private set; }
…
1
vote
Child tables in NHibernate
I modified your example just a bit (in line with many of the suggestions here):
public class Person
{
private IList<Pet> pets;
protected Person()
{}
public P …
1
vote
How do you use the var keyword?
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 v …
0
votes
Is it good practice to throw exceptions in virtual functions?
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 …
0
votes
Which declaration is better?
A few additional points:
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 metho …
0
votes
Calling a Method of a Windows Form Without an Active Form Instance
One way to get started on splitting this class up is to look at what fields are used in what methods.
As you described above, you'll quickly see that not all methods use all of the fields …
0
votes
Where is the best place to start learning LINQ?
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 …
0
votes
What are the Dangers of using a Singleton in a multithreaded application
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 …
6
votes
What should be on a checklist that would help someone develop good OO software?
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.
…
