User zvolkov - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T06:38:04Z http://stackoverflow.com/feeds/user/76859 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1726656/why-is-nhibernate-autoflush-check-so-expensive/1743624#1743624 1 Answer by zvolkov for Why is NHibernate AutoFlush check so expensive? zvolkov 2009-11-16T17:25:43Z 2009-11-16T17:25:43Z <p>This slowness is a known issue and is tracked in NH Jira as <a href="http://nhjira.koah.net/browse/NH-1365" rel="nofollow">NH-1365</a></p> <p>There are three flush modes in NH:</p> <ul> <li>FlushMode.Auto = Flush when needed (on commit and before queries, if needed). This is the default.</li> <li>FlushMode.Commit = flush on commit of NH transaction only</li> <li>FlushMode.Never = never flush (until Flush is called). This will <a href="http://stackoverflow.com/questions/432087/nhibernate-flushmode-on-save">still go to DB</a> on insert of entities that use native (identity) PK generator.</li> </ul> http://stackoverflow.com/questions/1711869/unable-to-load-type-nhibernate-bytecode-linfu-proxyfactoryfactory-nhibernate-by/1719135#1719135 0 Answer by zvolkov for Unable to load type 'NHibernate.ByteCode.LinFu.ProxyFactoryFactory, NHibernate.ByteCode.LinFu' zvolkov 2009-11-12T00:45:42Z 2009-11-12T00:45:42Z <p>Did you try <a href="http://www.hanselman.com/blog/BackToBasicsUsingFusionLogViewerToDebugObscureLoaderErrors.aspx" rel="nofollow">enabling Fusion logs</a>? Sometimes they're very helpful</p> http://stackoverflow.com/questions/1677301/linq-for-nhibernate-filtering-on-many-to-one-foreign-key-causes-extra-lookup/1682802#1682802 0 Answer by zvolkov for Linq for NHibernate - filtering on <many-to-one> foreign key causes extra lookup zvolkov 2009-11-05T18:58:37Z 2009-11-05T19:46:02Z <p>@reach4thelasers, re: cachable and fetch mode, I thought you could do things like the following, no?</p> <pre><code>var uthings = session.Linq&lt;UserThings&gt;(); uthings.QueryOptions.SetCachable(true); uthings.QueryOptions.RegisterCustomAction(c =&gt; c.SetFetchMode("/UserThing/User", FetchMode.Eager)) return uthings.Where(ut =&gt; ut.User == user); </code></pre> <p>Instead of the not-so-beautiful RegisterCustomAction+SetFetchMode you can also do uthings.Expand("User") but that only works with single property, can't combine two Expands until <a href="http://nhjira.koah.net/browse/NHLQ-35" rel="nofollow">NHLQ-35</a> is fixed.</p> http://stackoverflow.com/questions/820598/what-is-the-preferred-method-of-creating-mock-objects-for-use-with-visual-studi/1132388#1132388 2 Answer by zvolkov for What is the "preferred" method of creating mock objects for use with Visual Studio unit testing? zvolkov 2009-07-15T16:13:37Z 2009-11-05T19:37:05Z <p>IMHO Rhino Mock is overly complicated due to many layers of extra features added to it over time.</p> <p>Moq has most of same features that Rhino Mock but is designed from scratch and therefore provides much cleaner API. Moq misses a few features, most importantly the ability to assert exact sequence of mocked methods invoked.</p> <p>I still find myself using Rhino Mock though, I guess at this point it's just a bad habit. I do recommend using Moq for all new projects though.</p> http://stackoverflow.com/questions/1652552/nhibernate-caches-syscache-version-issues-with-nhibernate-2-1-0-branch/1680803#1680803 0 Answer by zvolkov for NHibernate.Caches.SysCache version issues with Nhibernate 2.1.0 branch zvolkov 2009-11-05T14:07:12Z 2009-11-05T14:07:12Z <p>There's a new version of NH Caches available that's built against NH 2.1: <a href="http://nhforge.org/blogs/nhibernate/archive/2009/07/19/nhibernate-caches-2-1-0ga.aspx" rel="nofollow">http://nhforge.org/blogs/nhibernate/archive/2009/07/19/nhibernate-caches-2-1-0ga.aspx</a></p> http://stackoverflow.com/questions/1680297/store-static-data-in-an-array-or-in-a-database/1680361#1680361 0 Answer by zvolkov for Store static data in an array, or in a database? zvolkov 2009-11-05T12:49:03Z 2009-11-05T12:49:03Z <p>Yeah I agree with your implied assessment that databases are overused and basic flat files may work in multitude of scenarios. If your application is read-only (and writes are done by the admin when app restarts) I would definitely go with the file. Even if application writes to the file, but only in append mode (vs random inserts/updates) in one thread, I would also use file. Anything else -- need a real database with random updates, queries, concurrency control etc.</p> http://stackoverflow.com/questions/1679558/how-to-wait-for-particular-funtion-to-complete-for-starting-next-funtion-without/1680308#1680308 0 Answer by zvolkov for How to wait for particular funtion to complete for starting next funtion? Without using thread in C# zvolkov 2009-11-05T12:38:54Z 2009-11-05T12:38:54Z <p>Read <a href="http://zvolkov.com/blog/post/2009/07/10/Better-ways-to-wait-for-queued-threads-to-complete.aspx" rel="nofollow">this</a> (explains how to do things like that in .NET 3.x and also 4.0)</p> http://stackoverflow.com/questions/1680111/int32-vs-int64-vs-int-in-c/1680293#1680293 0 Answer by zvolkov for Int32 vs. Int64 vs. Int in C# zvolkov 2009-11-05T12:36:40Z 2009-11-05T12:36:40Z <p>I used Int32 in my first year with .NET (then 1.0). Mostly did it for cross-language readability, as Int32 looks the same in VB as in C#. Looking back, I see this entire concern was silly. Use native types and don't sweat it.</p> http://stackoverflow.com/questions/1675753/sql-server-isolation-levels-repeatable-read/1675872#1675872 0 Answer by zvolkov for SQL Server Isolation Levels - Repeatable Read zvolkov 2009-11-04T18:55:05Z 2009-11-04T19:50:36Z <p>SQL Server uses indexes to do range locks (which is what repeatable reads often use) so if you don't have index on Type perhaps it locks entire table...</p> http://stackoverflow.com/questions/1675936/to-make-a-choice-between-manualresetevent-or-thread-sleep/1675998#1675998 1 Answer by zvolkov for To make a choice between ManualResetEvent or Thread.Sleep() zvolkov 2009-11-04T19:19:10Z 2009-11-04T19:19:10Z <p>In .NET 3.x the recommended way is to use ManualResetEvent. For more options and for new 4.0-enabled solutions see my blog post: <a href="http://zvolkov.com/blog/post/2009/07/10/Better-ways-to-wait-for-queued-threads-to-complete.aspx" rel="nofollow">http://zvolkov.com/blog/post/2009/07/10/Better-ways-to-wait-for-queued-threads-to-complete.aspx</a></p> http://stackoverflow.com/questions/1662957/best-sql-server-isolation-level-for-web-application/1663429#1663429 2 Answer by zvolkov for Best SQL Server isolation level for web application? zvolkov 2009-11-02T20:17:52Z 2009-11-04T17:05:32Z <p>I suppose this question may be a better fit for serverfault.com, that said here's my understanding of the topic:</p> <p>First, since when the default isolation level became Serializable, I thought it was Read Committed!</p> <p>Second, Snapshot may not be a good idea as that effectively uses the tempdb(which for the most part sits in the memory) to store concurrent versions of the data, so with any luck you will run out of RAM on 1-2-3.</p> <p>Third, serialization level is not an all-or-nothing endeavor, instead you should look at each and every query and set it per query, using query hints or whatever. I would say for your magic select statement that is used everywhere you may even want to go with (nolock) hint (assuming the underlying table is 99.99% readonly; BTW if you notice yourself doing too much readonly stuff that's an indication that you should look into caching, whether native ASP.NET cache or Memcached or whatever) while the rest may use read committed. Only on rare occasions (e.g. an automaintained lookup table) you want anything higher than that. </p> <p>Forth, don't overuse pessimistic locking altogether. Much smarter choice is to go optimistic locking instead, e.g. insert hoping there's no dupe and deal with a failing constraint afterward and things like that. For updates, you can add timestamp column and include that in your where clause. If somebody else hijacked the update before you, the rowcount will be 0. Etc.</p> <p>Hope this makes sense.</p> http://stackoverflow.com/questions/1638361/how-can-i-make-xmlserializer-deserialize-more-strict/1669298#1669298 0 Answer by zvolkov for How can I make XmlSerializer.Deserialize more strict? zvolkov 2009-11-03T18:35:30Z 2009-11-03T18:35:30Z <p>I once used validating reader to validate XML against schema as I read it into the deserializer. </p> http://stackoverflow.com/questions/1668634/what-happens-when-a-net-thread-throws-an-exception/1669172#1669172 0 Answer by zvolkov for What happens when a .NET thread throws an exception? zvolkov 2009-11-03T18:16:12Z 2009-11-03T18:16:12Z <p>In .NET 4.0 you should use Tasks instead of threads. <a href="http://blogs.msdn.com/pfxteam/archive/2009/05/31/9674669.aspx" rel="nofollow">Here's a nice article</a> on exception handling in Task Parallel Library</p> http://stackoverflow.com/questions/1668940/basic-clarifications-about-nhibernate/1669131#1669131 1 Answer by zvolkov for Basic clarifications about NHibernate zvolkov 2009-11-03T18:10:20Z 2009-11-03T18:10:20Z <ol> <li>No, I tried Fluent NH and Castle Active Record and Spring Framework NH Extensions but they all obscure basic operations and make things less visible. Start using native NH, then add a layer after a year.</li> <li>Yes, NH is a library, not a service. But the way you use it in your code makes it feel almost like a service (e.g. a data repository service)</li> <li>I tried EF and found it nauseating so I would go with NH</li> <li>For OLTP-like systems, ORM is the way of the future. Not using ORM for me is like not using unit-tests or programming in non-OOP language.</li> </ol> http://stackoverflow.com/questions/689778/high-level-description-of-program-stages/1668834#1668834 0 Answer by zvolkov for High level description of program stages zvolkov 2009-11-03T17:16:09Z 2009-11-03T17:16:09Z <p>The DLLs and executables are loaded using memory-mapped-files, so they're not actually copied to RAM, they are still on disk, just having their bytes mapped to process' virtual address space.</p> http://stackoverflow.com/questions/1668691/free-syntax-highlighting-component-in-net/1668767#1668767 0 Answer by zvolkov for Free syntax highlighting component in .NET zvolkov 2009-11-03T17:09:01Z 2009-11-03T17:09:01Z <ul> <li>For open source options, check out ICSharpCode.TextEditor (a text editing component used inside Resharper). It supports configurable highlighting like <a href="http://ayende.com/Blog/archive/2008/08/19/Smarter-Syntax-Highlighting.aspx" rel="nofollow">this</a> and <a href="http://ayende.com/Blog/archive/2008/08/20/Custom-Syntax-Highlighting.aspx" rel="nofollow">this</a></li> <li>For commercial options, try <a href="http://www.actiprosoftware.com/Products/DotNet/WPF/SyntaxEditor/Default.aspx" rel="nofollow">Actipro's SyntaxEditor control</a>, they have both WinForms and WPF version</li> <li>If you want to add custom language support to Visual Studio, take a look at <a href="http://msdn.microsoft.com/en-us/bb985513.aspx" rel="nofollow">language services</a></li> </ul> http://stackoverflow.com/questions/1662926/what-is-your-recommendation-for-a-good-book-on-the-net-clr-and-cil/1663911#1663911 0 Answer by zvolkov for What is your recommendation for a good book on the .NET CLR and CIL? zvolkov 2009-11-02T21:42:43Z 2009-11-02T21:42:43Z <p>This is a little dated but this is the book I used to learn .NET back then. Still relevant today as most things expanded but not changed. <a href="http://rads.stackoverflow.com/amzn/click/0201734117" rel="nofollow">Essential .NET, Volume I: The Common Language Runtime</a> </p> http://stackoverflow.com/questions/1663785/how-to-change-the-value-of-datetime-utcnow-for-a-process-or-thread/1663895#1663895 0 Answer by zvolkov for How to change the value of DateTime.UtcNow for a Process or Thread? zvolkov 2009-11-02T21:39:22Z 2009-11-02T21:39:22Z <p>Yeah, define interface IKnowCurrentTime with single property UtcNow. Use dependency injection to inject that into your classes. Make default implementation call DateTime.UtcNow and pass that to your classes in PROD. For testing purposes, make a mock of IKnowCurrentTime and have that return whatever. The way of the future baby.</p> http://stackoverflow.com/questions/1529298/whats-your-modus-operandi-to-solving-a-programming-problem/1658046#1658046 0 Answer by zvolkov for What's your Modus Operandi to solving a (programming) problem? zvolkov 2009-11-01T19:17:09Z 2009-11-01T19:24:42Z <p>One of my ex-colleagues had a unique <em>Modus Operandi</em>. Whenever faced with a hard programming problem (e.g. <a href="http://en.wikipedia.org/wiki/Knapsack%5Fproblem" rel="nofollow">Knapsack problem</a> or some kind of non-standard <a href="http://en.wikipedia.org/wiki/Optimization%5Fproblem" rel="nofollow">optimization problem</a>) he would get stoned on weed, claiming his ability to visualize complex state (such as that of recursive function doing operations on set passed on the stack) was greatly improved. The only difficulty, the next day he could not understand his own code. So eventually I showed him TDD and he has quit smoking...</p> http://stackoverflow.com/questions/1654140/orm-persistence-layer-advice/1654713#1654713 3 Answer by zvolkov for ORM/Persistence layer Advice zvolkov 2009-10-31T15:28:11Z 2009-10-31T15:28:11Z <p>With all respect, I tend to absolutely disagree with your assessment of NHibernate weaknesses.</p> <p>I think XML mappings are extremely simple and intuitive to create. Adding reference to NHibernate.dll and creating SessionFactory is a piece of cake too. Maintenance and change management is significantly simplified. Session Factories and Sessions are very easy to understand and deal with. </p> <p>Overall I think you're being emotional and not rational with your assessment. </p> http://stackoverflow.com/questions/1654642/what-is-the-difference-between-web-servers-and-application-servers/1654682#1654682 0 Answer by zvolkov for what is the difference between web servers and application servers? zvolkov 2009-10-31T15:17:07Z 2009-10-31T15:17:07Z <p>While there may be overlaps between the two (some web servers may even be used as application servers) the biggest difference IMHO is in the processing model and the session management:</p> <p>In Web server processing model, the focus is on handling requests; the notion of "session" is pretty much virtual. That is to say that "session" is simulated by transferring the representation of state between client and server (hence REST) and/or serializing it to an external persistent storage (SQL Server, Memcached etc). </p> <p>In Application server the session is usually more explicit and often takes form of an object living in memory of the application server for the entire duration of the "session".</p> http://stackoverflow.com/questions/1651411/frameworks-for-building-so-called-crud-admin-uis-over-sql-tables 0 Frameworks for building so-called CRUD Admin UIs (over SQL tables) zvolkov 2009-10-30T18:04:15Z 2009-10-30T19:09:42Z <p>What frameworks are targeted specifically at building so-called "CRUD Admin UIs" (basically, a set of screens for editing related SQL tables), whether Web Apps or Thick Clients. </p> <p>The ones I know of:</p> <ul> <li><strong>ASP.NET DynamicData</strong></li> <li><strong>Django Admin</strong> (from Nick's answer below)</li> </ul> <p>General purpose frameworks like <strong>Ruby-on-Rails</strong> and <strong>ASP.NET MVC</strong> don't count.</p> http://stackoverflow.com/questions/1646712/nhibernate-how-do-i-change-schemas-during-run-time/1646756#1646756 1 Answer by zvolkov for NHibernate - How do I change schemas during run time? zvolkov 2009-10-29T21:43:23Z 2009-10-29T21:43:23Z <p>No need to specify schema in the mappings: there's a SessionFactory-level setting called <a href="http://stackoverflow.com/questions/1100499/what-does-hibernate-defaultschema-mean">default_schema</a>. However, you can't change it at runtime, as NHibernate pregenerates and/or caches SQL queries, including the schema part.</p> http://stackoverflow.com/questions/1511665/converting-pdf-to-images/1645533#1645533 0 Answer by zvolkov for Converting PDF to images? zvolkov 2009-10-29T18:04:14Z 2009-10-29T19:52:31Z <p>You can even convert them into MS Word! <a href="http://www.pdftoword.com/" rel="nofollow">http://www.pdftoword.com/</a>.</p> http://stackoverflow.com/questions/1644356/net-threading-api-resources/1644436#1644436 1 Answer by zvolkov for .NET threading API resources zvolkov 2009-10-29T15:13:30Z 2009-10-29T15:13:30Z <p><a href="http://rads.stackoverflow.com/amzn/click/032143482X" rel="nofollow">Concurrent Programming on Windows by Joe Duffy</a> -- everything you will ever need to know and more.</p> http://stackoverflow.com/questions/1636731/what-should-i-name-this-extension-method/1636937#1636937 0 Answer by zvolkov for What should I name this Extension method ? zvolkov 2009-10-28T12:26:29Z 2009-10-28T12:26:29Z <p>CollapseExtraWhitespace</p> http://stackoverflow.com/questions/1633555/summer-of-nhibernate-session-01-why-am-i-getting-nhibernate-bytecode-proxyfactor/1633611#1633611 5 Answer by zvolkov for Summer of Nhibernate Session 01, why am I getting NHibernate.Bytecode.ProxyFactoryFactoryNotConfiguredException? zvolkov 2009-10-27T20:54:34Z 2009-10-27T20:54:34Z <p>I bet you use NH 2.1 while the screencast used 2.0. </p> <p>In 2.1 you have to set <a href="http://nhforge.org/blogs/nhibernate/archive/2008/11/09/nh2-1-0-bytecode-providers.aspx" rel="nofollow">proxyfactory.factory_class</a> to one of NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.LinFu.ProxyFactoryFactory or NHibernate.ByteCode.Spring.ProxyFactoryFactor</p> http://stackoverflow.com/questions/1633196/design-pattern-for-class-with-upwards-of-100-properties/1633224#1633224 2 Answer by zvolkov for Design pattern for class with upwards of 100 properties zvolkov 2009-10-27T19:45:53Z 2009-10-27T20:06:57Z <p>Unless your <em>code</em> actually uses many of the attributes at many places, I'd go for a dictionary instead.</p> <p>Having real properties has its advantages(type-safety, discoverability/intellisense, refactorability) but these don't matter if all the code does is gets these from elsewhere, displays on UI, sends in a web-service, saves to a file etc.</p> http://stackoverflow.com/questions/1633255/good-net-application-installer/1633266#1633266 4 Answer by zvolkov for Good .NET Application Installer zvolkov 2009-10-27T19:52:05Z 2009-10-27T19:52:05Z <p><a href="http://wix.sourceforge.net/" rel="nofollow">WiX</a></p> http://stackoverflow.com/questions/1630979/easiest-way-to-read-write-a-file-asynchronously/1631135#1631135 0 Answer by zvolkov for Easiest way to read/write a file asynchronously? zvolkov 2009-10-27T14:18:08Z 2009-10-27T14:18:08Z <p>As soon as you step into the async territory you should forget the word "easiest" Seriously, the easiest would be to use .NET's System.IO.FileStream with isAsync=true in constructor and BeginRead/EndRead methods.</p> http://stackoverflow.com/questions/1724307/nhibernate-poor-performance-on-auto-flush-events/1725717#1725717 Comment by zvolkov on NHibernate poor performance on auto flush events? zvolkov 2009-11-16T17:30:56Z 2009-11-16T17:30:56Z Do you use Spring.Data.NHibernate for nested transactions? http://stackoverflow.com/questions/1724307/nhibernate-poor-performance-on-auto-flush-events Comment by zvolkov on NHibernate poor performance on auto flush events? zvolkov 2009-11-16T17:00:19Z 2009-11-16T17:00:19Z related question: <a href="http://stackoverflow.com/questions/1726656/why-is-nhibernate-autoflush-check-so-expensive" rel="nofollow" title="why is nhibernate autoflush check so expensive">stackoverflow.com/questions/1726656/&hellip;</a> http://stackoverflow.com/questions/1726656/why-is-nhibernate-autoflush-check-so-expensive Comment by zvolkov on Why is NHibernate AutoFlush check so expensive? zvolkov 2009-11-16T16:46:24Z 2009-11-16T16:46:24Z related question: <a href="http://stackoverflow.com/questions/1724307/nhibernate-poor-performance-on-auto-flush-events" rel="nofollow" title="nhibernate poor performance on auto flush events">stackoverflow.com/questions/1724307/&hellip;</a> http://stackoverflow.com/questions/1469262/nhibernate-mapping-for-sql-server-2008-hierarchy-data-type/1719080#1719080 Comment by zvolkov on NHibernate mapping for SQL Server 2008 Hierarchy Data Type zvolkov 2009-11-12T00:40:35Z 2009-11-12T00:40:35Z Critics of NH has nothing to do with answering this question. -1 http://stackoverflow.com/questions/1692056/crafting-a-class-representing-a-fraction Comment by zvolkov on crafting a class representing a fraction zvolkov 2009-11-07T15:18:11Z 2009-11-07T15:18:11Z this question reminded me that Ruby has built-in Rational class http://stackoverflow.com/questions/1693313/is-there-a-memcached-equivalent-written-in-c/1693352#1693352 Comment by zvolkov on is there a Memcached equivalent written in c# ? zvolkov 2009-11-07T15:13:40Z 2009-11-07T15:13:40Z note this is not compatible with memcached (if that's what Yassir meant by &quot;equivalent&quot;) http://stackoverflow.com/questions/1677301/linq-for-nhibernate-filtering-on-many-to-one-foreign-key-causes-extra-lookup Comment by zvolkov on Linq for NHibernate - filtering on <many-to-one> foreign key causes extra lookup zvolkov 2009-11-05T19:48:47Z 2009-11-05T19:48:47Z possible duplicate: <a href="http://stackoverflow.com/questions/1211621/linq-to-nhibernate-vs-icriteria" rel="nofollow" title="linq to nhibernate vs icriteria">stackoverflow.com/questions/1211621/&hellip;</a> http://stackoverflow.com/questions/1362794/eager-loading-child-and-child-of-child-collections-in-nhibernate/1396257#1396257 Comment by zvolkov on Eager loading child and child-of-child collections in NHibernate zvolkov 2009-11-05T19:35:31Z 2009-11-05T19:35:31Z @Simon, you can specify default fetch type in the mappings http://stackoverflow.com/questions/1679184/how-to-cache-reading-from-a-file-net-2-0 Comment by zvolkov on How to cache reading from a file .NET 2.0 zvolkov 2009-11-05T12:45:04Z 2009-11-05T12:45:04Z if it was .NET 4.0 you could use memory-mapped files. This way you would both eat your cake and have it. http://stackoverflow.com/questions/1680255/show-error-message-using-popup-in-a-mvc-project Comment by zvolkov on Show error message using popup in a mvc project zvolkov 2009-11-05T12:32:28Z 2009-11-05T12:32:28Z You should not use desktop techniques in a web app. http://stackoverflow.com/questions/624425/phonetically-memorable-password-generation-algorithms/624445#624445 Comment by zvolkov on Phonetically Memorable Password Generation Algorithms zvolkov 2009-11-04T21:31:08Z 2009-11-04T21:31:08Z ok kids, re:Markov Chains, basically scan some English text, letter by letter, and gather probability of each letter following each other letter. Then use those probabilities to generate random password, letter by letter. http://stackoverflow.com/questions/1675753/sql-server-isolation-levels-repeatable-read/1675872#1675872 Comment by zvolkov on SQL Server Isolation Levels - Repeatable Read zvolkov 2009-11-04T19:50:56Z 2009-11-04T19:50:56Z Got it. Removed the readonly part of my answer. http://stackoverflow.com/questions/1668940/basic-clarifications-about-nhibernate/1669131#1669131 Comment by zvolkov on Basic clarifications about NHibernate zvolkov 2009-11-03T20:30:15Z 2009-11-03T20:30:15Z Hm... you may be right. Still my answer addresses an important question he should have asked! :) http://stackoverflow.com/questions/1669196/c-what-is-the-value-added-by-commanding Comment by zvolkov on C#: What is the value added by commanding? zvolkov 2009-11-03T18:42:31Z 2009-11-03T18:42:31Z The first two answers not satisfactory for me, waiting for more http://stackoverflow.com/questions/1668679/data-access-design-patterns/1669030#1669030 Comment by zvolkov on Data Access Design Patterns zvolkov 2009-11-03T18:03:57Z 2009-11-03T18:03:57Z +1 for NHibernate but I don't think how TransactionScope will help, so -1 for that