User Paul Batum - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T09:51:06Z http://stackoverflow.com/feeds/user/48281 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1822572/fluent-nhibernate-unit-testing-a-one-to-many-inverse-mapping/1839183#1839183 1 Answer by Paul Batum for Fluent NHibernate - unit-testing a one-to-many *inverse* mapping Paul Batum 2009-12-03T10:52:52Z 2009-12-03T10:52:52Z <p>I know this has already been sorted out on the mailing list but we might aswell put the answer on stack overflow too.</p> <p>The PersistenceSpecification class has a CheckList method. Here's an example usage:</p> <pre><code>_spec.CheckList(x =&gt; x.EnumerableOfKittens, kittens, (cat, kitten) =&gt; cat.AddKitten(kitten)); </code></pre> <p>This method was only added recently. Get the latest FNH trunk if you can't find it.</p> http://stackoverflow.com/questions/1786898/fluent-nhibernate-and-schema-update-execute-indexes-on-foreign-keys/1788373#1788373 2 Answer by Paul Batum for Fluent NHibernate and Schema update/execute - indexes on foreign keys Paul Batum 2009-11-24T07:12:28Z 2009-11-24T07:12:28Z <p>I think the 'index' attribute on a column mapping element is what you are after. If you're on the latest version of FNH, you can set this for a one-to-many like so:</p> <pre><code>HasMany(x =&gt; x.Components) .KeyColumns.Add("ProductId", c =&gt; c.Index("someIndex"); </code></pre> <p>The same API is not yet available for many-to-many's, but it is on its way.</p> http://stackoverflow.com/questions/607935/generate-table-indexes-using-fluent-nhibernate/1761671#1761671 0 Answer by Paul Batum for Generate table indexes using Fluent NHibernate Paul Batum 2009-11-19T08:07:00Z 2009-11-19T08:07:00Z <p>In more recent versions of Fluent NHibernate, you can call the Index() method to do this rather than using SetAttribute (which no longer exists):</p> <p>Map(x => x.Prop1).Index("idx__Prop1");</p> http://stackoverflow.com/questions/1687883/using-git-in-a-tfs-shop 5 Using Git in a TFS shop Paul Batum 2009-11-06T14:15:57Z 2009-11-14T16:12:44Z <p>Using Git at home has spoiled me - I now find using TFS at work to be a bit of a drag and want to explore the possibility of using Git locally and syncing somehow with TFS. I figure there are a few different ways this can be done and would like to hear from people that have attempted it.</p> <p>I've found a <a href="http://blog.zobie.com/2009/04/using-git-to-avoid-problems-with-tfs/" rel="nofollow">blog post</a> that describes a relatively manual workflow, but I'm hoping for something with better automation, and history support. </p> <p>Jim Deville appears to be writing a <a href="http://blog.jredville.com/category/series/git-tfs/" rel="nofollow">series</a> on how the IronRuby team keeps their github repository in sync with TFS but it is not yet complete and I must admit I had a little trouble following what Jim has written so far.</p> <p>I briefly attempted to use a combination of <a href="http://svnbridge.codeplex.com/" rel="nofollow">SvnBridge</a> and <a href="http://www.kernel.org/pub/software/scm/git/docs/git-svn.html" rel="nofollow">git-svn</a> but I got stuck on an error quite quickly (perhaps <a href="http://svnbridge.codeplex.com/WorkItem/View.aspx?WorkItemId=13472" rel="nofollow">this</a> one?). I do intend to explore this further...</p> <p><strong>Update:</strong> It looks like some people have had some success with the SvnBridge git-svn combo. See <a href="http://blog.lozanotek.com/archive/2009/10/20/git-svn%5FSvnBridge%5Fand%5FTFS%5FSource%5FControl.aspx" rel="nofollow">here</a>.</p> <p>Finally, perhaps <a href="http://www.eqqon.com/index.php/GitSharp" rel="nofollow">GitSharp</a> will make it easier to develop a useful solution to this problem? Not because GitSharp has anything to do with TFS per se, but simply because it exposes git automation to .NET developers.</p> <blockquote> <p>Related Question - <a href="http://stackoverflow.com/questions/614245/git-and-team-foundation-server">http://stackoverflow.com/questions/614245/git-and-team-foundation-server</a></p> </blockquote> http://stackoverflow.com/questions/15880/read-from-msg-files/1610351#1610351 0 Answer by Paul Batum for Read from .msg files Paul Batum 2009-10-22T22:27:30Z 2009-10-22T22:27:30Z <p>There is code avaliable on CodeProject for reading .msg files without COM. See <a href="http://www.codeproject.com/KB/office/reading%5Fan%5Foutlook%5Fmsg.aspx" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1516752/how-to-map-type-with-nhibernate-and-fluent-nhibernate/1524941#1524941 0 Answer by Paul Batum for How to map Type with Nhibernate (and Fluent NHibernate) Paul Batum 2009-10-06T11:03:08Z 2009-10-06T11:03:08Z <p>I'm curious, why don't you do this instead</p> <pre><code>public class DataType { ... private string _typeOfContent; public virtual Type TypeOfContent { get { return Type.GetType(_typeOfContent); } set { _typeOfContent = value.FullName; } } } ... public class DataTypeMap : ClassMap&lt;DataType&gt; { Map(x =&gt; x.TypeOfContent) .Access.CamelCaseField(Prefix.Underscore) .CustomType&lt;string&gt;(); } </code></pre> http://stackoverflow.com/questions/1413284/nhibernate-using-an-existing-public-int-field-as-record-id/1417584#1417584 1 Answer by Paul Batum for NHibernate: using an existing public int field as record Id Paul Batum 2009-09-13T11:57:25Z 2009-09-13T11:57:25Z <p>I've also answered this question on the mailing list (it was <a href="http://groups.google.com/group/fluent-nhibernate/t/97ac8735706e248f" rel="nofollow">cross posted there</a>) but I thought it would be useful to clarify here too.</p> <p>Unfortunately Fluent NHibernate currently assumes that you are passing it a lambda expression that refers to a property (this assumption is manifested by a heavy reliance on the PropertyInfo type) . As a result of this, this line will fail at runtime if Id is a field rather than a property:</p> <pre><code>Id( x =&gt; x.Id).Access.Field(); </code></pre> <p>We intend to resolve this issue eventually by removing our dependence on PropertyInfo.</p> http://stackoverflow.com/questions/1296767/using-nhibernate-and-the-repository-pattern-need-some-direction/1296882#1296882 0 Answer by Paul Batum for Using nHibernate and the repository pattern, need some direction Paul Batum 2009-08-18T22:19:02Z 2009-08-18T22:19:02Z <p>Perhaps you misheard or someone mispoke - the Repository pattern is supposed to expose collection like behavior, not operate on collections. Just like you can add, remove and search for items in a collection, your repository offers save, delete and search operations that work against your database.</p> <p>I suggest you download the code for <a href="http://code.google.com/p/sharp-architecture/" rel="nofollow">S#arp Architecture</a>. It includes a repository implementation that you can reuse quite easily. If you don't want to take the dependency, at the very least you can spend some time studying their implementation to give you a better idea of how to approach it yourself.</p> http://stackoverflow.com/questions/1287718/how-can-i-display-my-current-git-branch-name-in-my-powershell-prompt 6 How can I display my current git branch name in my PowerShell prompt? Paul Batum 2009-08-17T12:35:05Z 2009-08-18T03:19:16Z <p>Basically I'm after <a href="http://stackoverflow.com/questions/816790/append-gits-branch-name-to-command-prompt">this</a> but for PowerShell instead of bash.</p> <p>I use git on windows through PowerShell. If possible, I'd like my current branch name to displayed as part of the command prompt.</p> http://stackoverflow.com/questions/755645/asp-net-mvc-1-0-afterbuilding-views-fails-on-tfs-build/1237539#1237539 0 Answer by Paul Batum for ASP.NET MVC 1.0 AfterBuilding Views fails on TFS Build Paul Batum 2009-08-06T08:12:26Z 2009-08-06T08:12:26Z <p>The accepted answer didn't work for me. The $(PublishDir) parameter did not point to the correct location. Instead I had to use: </p> <pre><code> &lt;Target Name="AfterBuild" Condition="'$(MvcBuildViews)'=='true'"&gt; &lt;AspNetCompiler Condition="'$(IsDesktopBuild)' != 'false'" VirtualPath="temp" PhysicalPath="$(ProjectDir)\..\$(ProjectName)" /&gt; &lt;AspNetCompiler Condition="'$(IsDesktopBuild)' == 'false'" VirtualPath="temp" PhysicalPath="$(OutDir)\_PublishedWebsites\$(ProjectName)" /&gt; &lt;/Target&gt; </code></pre> http://stackoverflow.com/questions/13768/open-id-what-happens-when-you-decide-you-dont-like-your-existing-provider 16 Open ID - What happens when you decide you don't like your existing provider? Paul Batum 2008-08-17T17:55:57Z 2009-05-26T20:21:44Z <p>So I'm not quite convinced about OpenID yet, and here is why:</p> <p>I already have an OpenID because I have a Blogger account. But I discovered that Blogger seems to be a poor provider when I tried to identify myself on the <a href="http://altdotnet.org" rel="nofollow" title="InfoQ">altdotnet</a> page and recieved the following message: </p> <blockquote> <p><strong>You must use an OpenID persona that specifies a valid email address.</strong></p> </blockquote> <p>Lets forget the details of this little error and assume that I want to change to a different provider. So I sign up with a different provider and get a new, different OpenID - how would I switch my existing StackOverflow account to be associated with my new OpenID?</p> <p>I understand this would be easy if I had my own domain set up to delegate to a provider, because I could just change the delegation. Assume I do not have my own domain.</p> http://stackoverflow.com/questions/581199/fluent-nhibernate-select-n1-problem/581457#581457 7 Answer by Paul Batum for fluent nhibernate select n+1 problem Paul Batum 2009-02-24T11:40:16Z 2009-02-28T13:47:13Z <p>It sounds to me that you want to pursue the approach of using your domain model rather than creating a specific nhibernate query to handle this scenario. Given this, I would suggest you take a look at the batch-size attribute which you can apply to your collections. The Fluent NHibernate fluent interface does not yet support this attribute, but as a work around you can use:</p> <pre><code>HasMany(x =&gt; x.Children).AsSet().SetAttribute("batch-size", "20") </code></pre> <p>Given the general lack of information about your exact scenario, I cannot say for sure whether batch-size is the ideal solution, but I certainly recommend you give it a go. If you haven't already, I suggest you read these:</p> <p><a href="http://blogs.hibernatingrhinos.com/nhibernate/archive/2008/04/03/lazy-loading---eager-loading.aspx" rel="nofollow">http://blogs.hibernatingrhinos.com/nhibernate/archive/2008/04/03/lazy-loading---eager-loading.aspx</a> <a href="http://www.hibernate.org/hib%5Fdocs/nhibernate/html/performance.html" rel="nofollow">http://www.hibernate.org/hib_docs/nhibernate/html/performance.html</a></p> <p>The NHibernate performance documentation will explain how batch-size works.</p> <p>Edit: I am not aware of any way to page from your domain model. I recommend you write NH queries for scenarios where paging is required.</p> http://stackoverflow.com/questions/323235/where-to-begin-and-how-to-participate-in-net-community/323332#323332 0 Answer by Paul Batum for Where to begin and how to participate in .NET community? Paul Batum 2008-11-27T09:43:28Z 2008-11-27T09:43:28Z <p>Do you make use of any open source projects at work? This can help give you direction, you can try to add features you've found yourself wanting or rewrite documentation that you found to be confusing. You could also simply do as Jon suggested, and start participating in the newsgroups or forums for these projects.</p> http://stackoverflow.com/questions/298976/c-is-there-a-better-alternative-than-this-to-switch-on-type/302228#302228 1 Answer by Paul Batum for C# - Is there a better alternative than this to 'switch on type'? Paul Batum 2008-11-19T15:22:38Z 2008-11-19T15:22:38Z <p>If you were using C# 4, you could make use of the new dynamic functionality to achieve an interesting alternative. I'm not saying this is better, in fact it seems very likely that it would be slower, but it does have a certain elegance to it. </p> <pre><code>class Thing { void Foo(A a) { a.Hop(); } void Foo(B b) { b.Skip(); } } </code></pre> <p>And the usage:</p> <pre><code>object aOrB = Get_AOrB(); Thing t = GetThing(); ((dynamic)t).Foo(aorB); </code></pre> <p>The reason this works is that a C# 4 dynamic method invocation has its overloads resolved at runtime rather than compile time. I wrote a little more about this idea <a href="http://paulbatum.blogspot.com/2008/11/no-visitors.html" rel="nofollow">quite recently</a>. Again, I would just like to reiterate that this probably performs worse than all the other suggestions, I am offering it simply as a curiosity.</p> http://stackoverflow.com/questions/138576/saving-tree-f-a-results-to-a-textfile-with-unicode-support 2 Saving 'tree /f /a" results to a textfile with unicode support Paul Batum 2008-09-26T10:04:32Z 2008-10-10T19:06:12Z <p>I'm trying to use the tree command in a windows commandline to generate a text file listing the contents of a directory but when I pipe the output the unicode characters get stuffed up.</p> <p>Here is the command I am using:</p> <pre><code>tree /f /a &gt; output.txt </code></pre> <p>The results in the console window are fine:</p> <pre> \---Erika szobája cover.jpg Erika szobája.m3u Kátai Tamás - 01 Télvíz.ogg Kátai Tamás - 02 Zölderdõ.ogg Kátai Tamás - 03 Renoir kertje.ogg Kátai Tamás - 04 Esõben szaladtál.ogg Kátai Tamás - 05 Ázik az út.ogg Kátai Tamás - 06 Sûrû völgyek takaród.ogg Kátai Tamás - 07 Õszhozó.ogg Kátai Tamás - 08 Mécsvilág.ogg Kátai Tamás - 09 Zúzmara.ogg </pre> <p>But the text file is no good:</p> <pre> \---Erika szob ja cover.jpg Erika szob ja.m3u K tai Tam s - 01 T‚lv¡z.ogg K tai Tam s - 02 Z”lderdä.ogg K tai Tam s - 03 Renoir kertje.ogg K tai Tam s - 04 Esäben szaladt l.ogg K tai Tam s - 05 µzik az £t.ogg K tai Tam s - 06 S–r– v”lgyek takar¢d.ogg K tai Tam s - 07 åszhoz¢.ogg K tai Tam s - 08 M‚csvil g.ogg K tai Tam s - 09 Z£zmara.ogg </pre> <p>How can I fix this? Ideally the text file would be exactly the same as the output in the console window.</p> <p>I tried Chris Jester-Young's suggestion (what happened, did you delete it Chris?) of running the command line with the /U switch, it looked like exactly what I needed but it does not appear to work. I have tried opening the file in both VS2008 and notepad and both show the same incorrect characters.</p> http://stackoverflow.com/questions/143088/open-source-c-projects-that-have-high-code-quality/145788#145788 7 Answer by Paul Batum for Open source C# projects that have high code quality? Paul Batum 2008-09-28T12:51:11Z 2008-09-28T12:51:11Z <p>I found the source for <a href="http://www.asp.net/mvc/" rel="nofollow">ASP.NET MVC</a> to be a worthwhile read. At the time of writing, the latest source is avaliable to download on the <a href="http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=16775" rel="nofollow">preview 5 release page</a>.</p> http://stackoverflow.com/questions/145752/what-are-the-various-build-action-settings-in-vs-net-project-properties-and-wha/145759#145759 10 Answer by Paul Batum for What are the various "Build action" settings in VS.NET project properties and what do they do? Paul Batum 2008-09-28T12:20:35Z 2008-09-28T12:20:35Z <p>From the documentation:</p> <blockquote> <p>The BuildAction property indicates what Visual Studio does with a file when a build is executed. BuildAction can have one of several values:</p> <p>None - The file is not included in the project output group and is not compiled in the build process. An example is a text file that contains documentation, such as a Readme file.</p> <p>Compile - The file is compiled into the build output. This setting is used for code files.</p> <p>Content - The file is not compiled, but is included in the Content output group. For example, this setting is the default value for an .htm or other kind of Web file.</p> <p>Embedded Resource - This file is embedded in the main project build output as a DLL or executable. It is typically used for resource files.</p> </blockquote> http://stackoverflow.com/questions/142481/auto-generation-of-net-unit-tests/142483#142483 10 Answer by Paul Batum for Auto-generation of .NET unit tests Paul Batum 2008-09-26T23:31:12Z 2008-09-26T23:31:12Z <p>Take a look at <a href="http://research.microsoft.com/Pex/" rel="nofollow">Pex</a>. Its a Microsoft Research project. From the website:</p> <p><em>Pex generates Unit Tests from hand-written Parameterized Unit Tests through Automated Exploratory Testing based on Dynamic Symbolic Execution.</em></p> http://stackoverflow.com/questions/133281/castle-activerecord-tutorial-with-net-3-5-broken/133324#133324 1 Answer by Paul Batum for Castle-ActiveRecord Tutorial with .NET 3.5 broken? Paul Batum 2008-09-25T13:29:56Z 2008-09-25T13:48:53Z <p>The 'hibernate' portion of the key was removed in NHibernate version 2.0. This version is correct for NHibernate 2.0 onwards:</p> <pre><code>&lt;add key="connection.connection_string" value="xxx" /&gt; </code></pre> <p>Edit: I see that the quickstart doesn't come with the binaries for Castle and NHibernate. You must have downloaded the binaries from somewhere; it would be helpful if you could provide the version number of your NHibernate.dll file.</p> <p>Confusingly, at least SOME of the quickstart has been updated to be current with NHibernate (NH) 2.0, but the latest 'proper' Castle release is still the 1.0 RC3 (almost a year old now), which does not include NH 2.0. </p> <p>You can go two ways. You can continue using Castle RC3 and in this case you will indeed need to add the 'hibernate' prefix to your configuration entries. Or you can download a <a href="http://builds.castleproject.org/" rel="nofollow">build</a> of Castle from the trunk, which should be running against NH 2.0. The problem with the latter approach is that some of the other breaking changes introduced in NH 2.0 might not be fixed in the quick start.</p> http://stackoverflow.com/questions/130306/getting-stated-with-nhibernate-real-world-project-example/132981#132981 3 Answer by Paul Batum for Getting stated with NHibernate. Real world project example? Paul Batum 2008-09-25T12:25:10Z 2008-09-25T12:25:10Z <p>The author of the NHibernate ASP.NET Best Practices article and went on to produce a newer sample called <a href="http://code.google.com/p/sharp-architecture/" rel="nofollow">Sharp Architecture</a> using ASP.NET MVC.</p> http://stackoverflow.com/questions/128343/is-there-a-better-way-to-initialize-a-hastable-in-net-without-using-add-method/128409#128409 2 Answer by Paul Batum for Is there a better way to initialize a Hastable in .NET without using Add method? Paul Batum 2008-09-24T17:07:46Z 2008-09-24T17:07:46Z <p>The exact code you posted:</p> <pre><code> Hashtable filter2 = new Hashtable() { {"building", "A-51"}, {"apartment", "210"} }; </code></pre> <p>Compiles perfectly in C# 3. Given you reported compilation problems, I'm guessing you are using C# 2? In this case you can at least do this:</p> <pre><code> Hashtable filter2 = new Hashtable(); filter2["building"] = "A-51"; filter2["apartment"] = "210"; </code></pre> http://stackoverflow.com/questions/111995/c-class-separation-into-a-header-and-a-cs-file/112008#112008 0 Answer by Paul Batum for C# class separation into a header and a .cs file Paul Batum 2008-09-21T20:28:59Z 2008-09-21T20:28:59Z <p>Try the Class View. When you click on each class you will get the members listed.</p> http://stackoverflow.com/questions/111933/why-shouldnt-i-use-hungarian-notation/111950#111950 6 Answer by Paul Batum for Why shouldn't I use "Hungarian Notation"? Paul Batum 2008-09-21T20:12:14Z 2008-09-21T20:12:14Z <p>The IDE should impart that useful information. Hungarian might have made some sort (not a whole lot, but some sort) of sense when IDE's were much less advanced.</p> http://stackoverflow.com/questions/109179/strict-vs-nonstrict-nhibernate-cache-concurrency-strategies 2 Strict vs NonStrict NHibernate cache concurrency strategies Paul Batum 2008-09-20T20:04:59Z 2008-09-21T03:43:15Z <p>This question is about the difference between ReadWrite and NonStrictReadWrite cache concurrency strategies for NHibernate's second level cache.</p> <p>As I understand it, the difference between these two strategies is relevant when you have a distributed <em>replicated</em> cache - nonstrict won't guarantee that one cache has the exact same value as another cache, while strict read/write should - assuming the cache provider does the appropriate distributed locking. </p> <p>The part I don't understand is how the strict vs nonstrict distinction is relevant when you have a single cache, or a distributed <em>partitioned</em> (non replicated) cache. Can it be relevant? It seems to me that in non replicated scenarios, the timestamps cache will ensure that stale results are not served. If it can be relevant, I would like to see an example.</p> http://stackoverflow.com/questions/109409/what-are-the-key-strengths-of-asp-net-webforms/109431#109431 0 Answer by Paul Batum for What are the key strengths of ASP.NET Webforms? Paul Batum 2008-09-20T21:16:34Z 2008-09-20T21:26:22Z <p>It lets you build web applications without having a good understanding of the underlying concepts such as HTTP. This has its own downsides.</p> http://stackoverflow.com/questions/107794/importing-exporting-history-in-team-system/107970#107970 0 Answer by Paul Batum for Importing/exporting history in Team System Paul Batum 2008-09-20T11:48:28Z 2008-09-20T11:48:28Z <p>Just thinking out loud here, but does SVN support a way to "play back" its history? If there is a way to generate a complete set of SVN commands from an existing repository, then you could feed those commands to <a href="http://www.codeplex.com/SvnBridge" rel="nofollow">SvnBridge</a>, which would actually be writing into TFS.</p> http://stackoverflow.com/questions/105609/i-need-a-helper-method-to-compare-a-char-enum-and-a-char-boxed-to-an-object/105963#105963 3 Answer by Paul Batum for I need a helper method to compare a char Enum and a char boxed to an object Paul Batum 2008-09-19T21:53:59Z 2008-09-19T22:39:14Z <pre><code> static void Main(string[] args) { object val = 'O'; Console.WriteLine(EnumEqual(TransactionStatus.Open, val)); val = 'R'; Console.WriteLine(EnumEqual(DirectionStatus.Left, val)); Console.ReadLine(); } public static bool EnumEqual(Enum e, object boxedValue) { return e.Equals(Enum.ToObject(e.GetType(), (char)boxedValue)); } public enum TransactionStatus { Open = 'O', Closed = 'C' }; public enum DirectionStatus { Left = 'L', Right = 'R' }; </code></pre> http://stackoverflow.com/questions/105087/what-are-some-good-techniques-to-convert-an-ms-access-application-to-a-net-appli/105483#105483 2 Answer by Paul Batum for What are some good techniques to convert an Ms Access application to a .Net Application? Paul Batum 2008-09-19T20:45:24Z 2008-09-19T20:45:24Z <p>I would consider looking at the <a href="http://msdn.microsoft.com/en-us/vbasic/bb419144.aspx" rel="nofollow">Interop Forms Toolkit</a>. As I understand it, this tool makes it quite easy to use .NET forms from within VB6, so perhaps it can also be used from within Microsoft Access? If so, it may help you migrate the application to .NET in an incremental fashion. Doing a quick search, I was unable to find any guides on using it with Microsoft Access, so I apologise if this turns out to be a blind alley.</p> http://stackoverflow.com/questions/23250/when-do-you-use-the-this-keyword/105015#105015 1 Answer by Paul Batum for When do you use the "this" keyword? Paul Batum 2008-09-19T19:58:13Z 2008-09-19T19:58:13Z <p>Another somewhat rare use for the this keyword is when you need to invoke an explicit interface implementation from within the implementing class. Here's a contrived example:</p> <pre><code>class Example : ICloneable { private void CallClone() { object clone = ((ICloneable)this).Clone(); } object ICloneable.Clone() { throw new NotImplementedException(); } } </code></pre> http://stackoverflow.com/questions/13768/open-id-what-happens-when-you-decide-you-dont-like-your-existing-provider/20742#20742 4 Answer by Paul Batum for Open ID - What happens when you decide you don't like your existing provider? Paul Batum 2008-08-21T18:41:42Z 2008-08-21T18:41:42Z <p>So the OpenID protocol doesn't actually offer a solution for this situation? I would have to rely on individual sites to offer some sort of migration function? That's quite unfortunate. The whole design of OpenID seems focused on a "all your eggs in one basket" approach, i.e. you should try to use your OpenID everywhere you can. This would be fine if all providers are identical, but they are not. </p> <p>Imagine the worse case, where you pick a provider that ends up closing down. Wouldn't you potentially lose your accounts on many sites?</p> http://stackoverflow.com/questions/1820950/fluent-nhibernate-join-with-constraint Comment by Paul Batum on Fluent NHibernate Join with Constraint Paul Batum 2009-12-02T11:06:26Z 2009-12-02T11:06:26Z Forgetting FNH for a second, do you have any idea how this can be solved using normal NHibernate hbm xml? http://stackoverflow.com/questions/1786898/fluent-nhibernate-and-schema-update-execute-indexes-on-foreign-keys/1788373#1788373 Comment by Paul Batum on Fluent NHibernate and Schema update/execute - indexes on foreign keys Paul Batum 2009-11-25T10:45:15Z 2009-11-25T10:45:15Z You don't have to build from source. The download page has the latest builds. revision 595 should have this change. <a href="http://fluentnhibernate.org/downloads" rel="nofollow">fluentnhibernate.org/downloads</a> http://stackoverflow.com/questions/1687883/using-git-in-a-tfs-shop/1734352#1734352 Comment by Paul Batum on Using Git in a TFS shop Paul Batum 2009-11-18T03:05:54Z 2009-11-18T03:05:54Z Agreed. If I end up writing some sort of git-tfs (which seems unlikely at this point), surely it would be on my own time. There is no way I could justify doing it on my employers time. http://stackoverflow.com/questions/1687883/using-git-in-a-tfs-shop/1734352#1734352 Comment by Paul Batum on Using Git in a TFS shop Paul Batum 2009-11-17T00:31:56Z 2009-11-17T00:31:56Z Also, what are your thoughts on the existence of git-svn? In my opinion it would have been a real shame if the developers had decided that there was no point in writing git-svn because it would be better to just tell everyone to switch to git. http://stackoverflow.com/questions/1687883/using-git-in-a-tfs-shop/1734352#1734352 Comment by Paul Batum on Using Git in a TFS shop Paul Batum 2009-11-17T00:24:07Z 2009-11-17T00:24:07Z Its the difference between rewriting a core component in a system and developing a facade to make that component easier to work with. If you try to change the core component, you potentially have to change all the other components it is coupled to. Using a facade avoids those problems - its a low-cost means of easing pain. http://stackoverflow.com/questions/1687883/using-git-in-a-tfs-shop/1734352#1734352 Comment by Paul Batum on Using Git in a TFS shop Paul Batum 2009-11-16T10:35:37Z 2009-11-16T10:35:37Z I also have reservations regarding your aside on 'shops'. It is a simple fact that many software development shops specialize by targeting a specific platform or industry. In general, Java and .NET provide very similar facilities and it could be dangerous for a relatively small software shop (~ 40 staff) to dilute its skill set by targeting multiple development platforms. I never said it in my original post, but my employer IS a .NET shop, and I contend that it is not detrimental to use this terminology. http://stackoverflow.com/questions/1687883/using-git-in-a-tfs-shop/1734352#1734352 Comment by Paul Batum on Using Git in a TFS shop Paul Batum 2009-11-16T10:19:12Z 2009-11-16T10:19:12Z I use the term 'TFS shop' because we use TFS for source control, bug tracking, and build management among other things. This is not a red flag - we are talking about core software development functions where stability is vital. I find your suggestion naive, because it makes no mention of analyzing the risk and potential return on investment offered by replacing one source control system with another. Right now I think the risks outweigh the rewards. http://stackoverflow.com/questions/1687883/using-git-in-a-tfs-shop Comment by Paul Batum on Using Git in a TFS shop Paul Batum 2009-11-06T14:36:29Z 2009-11-06T14:36:29Z Ahh so someone HAD posted about this before. I didn't think to search for &quot;Team Foundation Server&quot;, duh. Thanks Jason. http://stackoverflow.com/questions/1687883/using-git-in-a-tfs-shop Comment by Paul Batum on Using Git in a TFS shop Paul Batum 2009-11-06T14:34:34Z 2009-11-06T14:34:34Z @Charles I was thinking about reversing Jason's change, but I think its worth keeping because your comment made me LOL. http://stackoverflow.com/questions/1687883/using-git-in-a-tfs-shop Comment by Paul Batum on Using Git in a TFS shop Paul Batum 2009-11-06T14:25:17Z 2009-11-06T14:25:17Z I am confused about this related question edit - what is the point of putting in a self referencing link? http://stackoverflow.com/questions/828103/dataset-visualizer/1087772#1087772 Comment by Paul Batum on dataset visualizer Paul Batum 2009-10-23T00:59:42Z 2009-10-23T00:59:42Z It works good. I especially like how it allows you to view original values, deleted rows, etc. http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/871420#871420 Comment by Paul Batum on Why do I need an IoC container as opposed to straightforward DI code? Paul Batum 2009-10-08T05:39:31Z 2009-10-08T05:39:31Z There are a few commenters that are supporting Joel's argument, citing KISS. The thing these people don't realise is that using and IoC container is the KISS way. KISS stands for &quot;keep it simple, stupid&quot;, not &quot;start off simple, end up with a mess, stupid&quot; (SOSEUWMS). An IoC container helps you KEEP your application simple as it grows over time. I'm sure Joel is a fan of SOSEUWMS, because it helps keep bug trackers in high demand. http://stackoverflow.com/questions/1339985/fluent-nhibernate-subclasses-inside-subclasses Comment by Paul Batum on Fluent NHibernate: subclasses inside subclasses Paul Batum 2009-08-29T00:06:47Z 2009-08-29T00:06:47Z It would probably be helpful if you included the db schema you are trying to map this model to. I'm struggling to understand what your intentions are without it. http://stackoverflow.com/questions/1299216/more-private-than-private-c/1299470#1299470 Comment by Paul Batum on More private than private? (C#) Paul Batum 2009-08-19T22:32:49Z 2009-08-19T22:32:49Z Argh, went to paste in my own version of this particular solution and found you beat me to it! +1 http://stackoverflow.com/questions/1299216/more-private-than-private-c/1299255#1299255 Comment by Paul Batum on More private than private? (C#) Paul Batum 2009-08-19T11:42:25Z 2009-08-19T11:42:25Z No, it would be public readonly string Name { get; set; }. Works just like a normal auto property but the setter only works from a constructor, just like a normal readonly field.