Paul Batum

1,048
Reputation
104 views

Registered User

Name Paul Batum
Member for 1 year
Seen 5 hours ago
Website
Location Canberra, Australia
Age 28
Gimme that autobiographer badge.
1d
accepted Fluent NHibernate - unit-testing a one-to-many *inverse* mapping
Dec
3
answered Fluent NHibernate - unit-testing a one-to-many *inverse* mapping
Dec
2
comment Fluent NHibernate Join with Constraint
Forgetting FNH for a second, do you have any idea how this can be solved using normal NHibernate hbm xml?
Nov
25
comment Fluent NHibernate and Schema update/execute - indexes on foreign keys
You don't have to build from source. The download page has the latest builds. revision 595 should have this change. fluentnhibernate.org/downloads
Nov
24
accepted Fluent NHibernate and Schema update/execute - indexes on foreign keys
Nov
24
answered Fluent NHibernate and Schema update/execute - indexes on foreign keys
Nov
19
answered Generate table indexes using Fluent NHibernate
Nov
18
comment Using Git in a TFS shop
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.
Nov
17
comment Using Git in a TFS shop
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.
Nov
17
comment Using Git in a TFS shop
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.
Nov
16
comment Using Git in a TFS shop
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.
Nov
16
comment Using Git in a TFS shop
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.
Nov
6
revised Using Git in a TFS shop
Added link to post on using SvnBridge and git-svn together
Nov
6
comment Using Git in a TFS shop
Ahh so someone HAD posted about this before. I didn't think to search for "Team Foundation Server", duh. Thanks Jason.
Nov
6
comment Using Git in a TFS shop
@Charles I was thinking about reversing Jason's change, but I think its worth keeping because your comment made me LOL.
Nov
6
comment Using Git in a TFS shop
I am confused about this related question edit - what is the point of putting in a self referencing link?
Nov
6
asked Using Git in a TFS shop
Oct
23
comment dataset visualizer
It works good. I especially like how it allows you to view original values, deleted rows, etc.
Oct
22
answered Read from .msg files
Oct
8
accepted How to map Type with Nhibernate (and Fluent NHibernate)
Oct
8
comment Why do I need an IoC container as opposed to straightforward DI code?
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 "keep it simple, stupid", not "start off simple, end up with a mess, stupid" (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.
Oct
6
answered How to map Type with Nhibernate (and Fluent NHibernate)
Sep
14
accepted NHibernate: using an existing public int field as record Id
Sep
13
answered NHibernate: using an existing public int field as record Id
Aug
29
comment Fluent NHibernate: subclasses inside subclasses
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.
Aug
19
comment More private than private? (C#)
Argh, went to paste in my own version of this particular solution and found you beat me to it! +1
Aug
19
comment More private than private? (C#)
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.
Aug
19
comment Using nHibernate and the repository pattern, need some direction
Flushing on every call to your repo is a bad idea. This is why I said the two patterns solve different problems. The repositories serve as an architectural seam that makes it clear where and how your application is retrieving and inserting entities, while the ISession is your unit of work that does change tracking. IMHO you should take another look at the repository pattern, such as the one used in S#arp Architecture - because the picture you have of it (with flushing handled by the repository) is a very poor implementation.
Aug
18
comment Using nHibernate and the repository pattern, need some direction
I think its misleading to imply that The unit of work and repository patterns are interchangeable as they solve different problems. I'm familiar with that post from Ayende and while I do think there is certainly some truth to it, please remember it is just an opinion, and should not be presented as fact.
Aug
18
answered Using nHibernate and the repository pattern, need some direction
Aug
18
awarded  Yearling
Aug
17
comment How can I display my current git branch name in my PowerShell prompt?
Cheers David, I ewas easily able to modify this and use the instructions from the linked blogged post to get something up and running that suits me.
Aug
17
asked How can I display my current git branch name in my PowerShell prompt?
Aug
9
comment ASP.NET MVC 1.0 AfterBuilding Views fails on TFS Build
Yes it contains multiple projects, and yes your answer did point me in the right direction. I'm not sure why the $PublishDir works for you and not me, but I'm not too hung up over it, the fix was straightforward and I just thought I'd put it out there if anyone else runs into the same issue.
Aug
6
answered ASP.NET MVC 1.0 AfterBuilding Views fails on TFS Build