I've seen the following line of code:
return MsSqlConfiguration.MsSql2008
.UseOuterJoin()
.ProxyFactoryFactory(typeof(ProxyFactoryFactory))
.ConnectionString(x => x.FromConnectionStringWithKey("ApplicationServices"))
.ShowSql();
Looking in fluent's wiki I got the explanation about "self explanation". I would appreciate if somebody explain the meaning of UseOuterJoin(), ProxyFactoryFactory() or give a link to read myself.
Thanks in advance!