User zvolkov - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T06:38:04Zhttp://stackoverflow.com/feeds/user/76859http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1726656/why-is-nhibernate-autoflush-check-so-expensive/1743624#17436241Answer by zvolkov for Why is NHibernate AutoFlush check so expensive?zvolkov2009-11-16T17:25:43Z2009-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#17191350Answer by zvolkov for Unable to load type 'NHibernate.ByteCode.LinFu.ProxyFactoryFactory, NHibernate.ByteCode.LinFu'zvolkov2009-11-12T00:45:42Z2009-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#16828020Answer by zvolkov for Linq for NHibernate - filtering on <many-to-one> foreign key causes extra lookupzvolkov2009-11-05T18:58:37Z2009-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<UserThings>();
uthings.QueryOptions.SetCachable(true);
uthings.QueryOptions.RegisterCustomAction(c => c.SetFetchMode("/UserThing/User", FetchMode.Eager))
return uthings.Where(ut => 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#11323882Answer by zvolkov for What is the "preferred" method of creating mock objects for use with Visual Studio unit testing?zvolkov2009-07-15T16:13:37Z2009-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#16808030Answer by zvolkov for NHibernate.Caches.SysCache version issues with Nhibernate 2.1.0 branchzvolkov2009-11-05T14:07:12Z2009-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#16803610Answer by zvolkov for Store static data in an array, or in a database?zvolkov2009-11-05T12:49:03Z2009-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#16803080Answer by zvolkov for How to wait for particular funtion to complete for starting next funtion? Without using thread in C#zvolkov2009-11-05T12:38:54Z2009-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#16802930Answer by zvolkov for Int32 vs. Int64 vs. Int in C#zvolkov2009-11-05T12:36:40Z2009-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#16758720Answer by zvolkov for SQL Server Isolation Levels - Repeatable Readzvolkov2009-11-04T18:55:05Z2009-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#16759981Answer by zvolkov for To make a choice between ManualResetEvent or Thread.Sleep() zvolkov2009-11-04T19:19:10Z2009-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#16634292Answer by zvolkov for Best SQL Server isolation level for web application?zvolkov2009-11-02T20:17:52Z2009-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#16692980Answer by zvolkov for How can I make XmlSerializer.Deserialize more strict?zvolkov2009-11-03T18:35:30Z2009-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#16691720Answer by zvolkov for What happens when a .NET thread throws an exception?zvolkov2009-11-03T18:16:12Z2009-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#16691311Answer by zvolkov for Basic clarifications about NHibernatezvolkov2009-11-03T18:10:20Z2009-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#16688340Answer by zvolkov for High level description of program stages zvolkov2009-11-03T17:16:09Z2009-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#16687670Answer by zvolkov for Free syntax highlighting component in .NETzvolkov2009-11-03T17:09:01Z2009-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#16639110Answer by zvolkov for What is your recommendation for a good book on the .NET CLR and CIL?zvolkov2009-11-02T21:42:43Z2009-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#16638950Answer by zvolkov for How to change the value of DateTime.UtcNow for a Process or Thread?zvolkov2009-11-02T21:39:22Z2009-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#16580460Answer by zvolkov for What's your Modus Operandi to solving a (programming) problem?zvolkov2009-11-01T19:17:09Z2009-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#16547133Answer by zvolkov for ORM/Persistence layer Advicezvolkov2009-10-31T15:28:11Z2009-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#16546820Answer by zvolkov for what is the difference between web servers and application servers?zvolkov2009-10-31T15:17:07Z2009-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-tables0Frameworks for building so-called CRUD Admin UIs (over SQL tables)zvolkov2009-10-30T18:04:15Z2009-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#16467561Answer by zvolkov for NHibernate - How do I change schemas during run time?zvolkov2009-10-29T21:43:23Z2009-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#16455330Answer by zvolkov for Converting PDF to images?zvolkov2009-10-29T18:04:14Z2009-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#16444361Answer by zvolkov for .NET threading API resourceszvolkov2009-10-29T15:13:30Z2009-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#16369370Answer by zvolkov for What should I name this Extension method ?zvolkov2009-10-28T12:26:29Z2009-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#16336115Answer by zvolkov for Summer of Nhibernate Session 01, why am I getting NHibernate.Bytecode.ProxyFactoryFactoryNotConfiguredException?zvolkov2009-10-27T20:54:34Z2009-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#16332242Answer by zvolkov for Design pattern for class with upwards of 100 propertieszvolkov2009-10-27T19:45:53Z2009-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#16332664Answer by zvolkov for Good .NET Application Installerzvolkov2009-10-27T19:52:05Z2009-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#16311350Answer by zvolkov for Easiest way to read/write a file asynchronously?zvolkov2009-10-27T14:18:08Z2009-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#1725717Comment by zvolkov on NHibernate poor performance on auto flush events?zvolkov2009-11-16T17:30:56Z2009-11-16T17:30:56ZDo you use Spring.Data.NHibernate for nested transactions?http://stackoverflow.com/questions/1724307/nhibernate-poor-performance-on-auto-flush-eventsComment by zvolkov on NHibernate poor performance on auto flush events?zvolkov2009-11-16T17:00:19Z2009-11-16T17:00:19Zrelated 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/…</a>http://stackoverflow.com/questions/1726656/why-is-nhibernate-autoflush-check-so-expensiveComment by zvolkov on Why is NHibernate AutoFlush check so expensive?zvolkov2009-11-16T16:46:24Z2009-11-16T16:46:24Zrelated 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/…</a>http://stackoverflow.com/questions/1469262/nhibernate-mapping-for-sql-server-2008-hierarchy-data-type/1719080#1719080Comment by zvolkov on NHibernate mapping for SQL Server 2008 Hierarchy Data Typezvolkov2009-11-12T00:40:35Z2009-11-12T00:40:35ZCritics of NH has nothing to do with answering this question. -1http://stackoverflow.com/questions/1692056/crafting-a-class-representing-a-fractionComment by zvolkov on crafting a class representing a fractionzvolkov2009-11-07T15:18:11Z2009-11-07T15:18:11Zthis question reminded me that Ruby has built-in Rational classhttp://stackoverflow.com/questions/1693313/is-there-a-memcached-equivalent-written-in-c/1693352#1693352Comment by zvolkov on is there a Memcached equivalent written in c# ?zvolkov2009-11-07T15:13:40Z2009-11-07T15:13:40Znote this is not compatible with memcached (if that's what Yassir meant by "equivalent")http://stackoverflow.com/questions/1677301/linq-for-nhibernate-filtering-on-many-to-one-foreign-key-causes-extra-lookupComment by zvolkov on Linq for NHibernate - filtering on <many-to-one> foreign key causes extra lookupzvolkov2009-11-05T19:48:47Z2009-11-05T19:48:47Zpossible 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/…</a>http://stackoverflow.com/questions/1362794/eager-loading-child-and-child-of-child-collections-in-nhibernate/1396257#1396257Comment by zvolkov on Eager loading child and child-of-child collections in NHibernatezvolkov2009-11-05T19:35:31Z2009-11-05T19:35:31Z@Simon, you can specify default fetch type in the mappingshttp://stackoverflow.com/questions/1679184/how-to-cache-reading-from-a-file-net-2-0Comment by zvolkov on How to cache reading from a file .NET 2.0zvolkov2009-11-05T12:45:04Z2009-11-05T12:45:04Zif 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-projectComment by zvolkov on Show error message using popup in a mvc projectzvolkov2009-11-05T12:32:28Z2009-11-05T12:32:28ZYou should not use desktop techniques in a web app. http://stackoverflow.com/questions/624425/phonetically-memorable-password-generation-algorithms/624445#624445Comment by zvolkov on Phonetically Memorable Password Generation Algorithmszvolkov2009-11-04T21:31:08Z2009-11-04T21:31:08Zok 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#1675872Comment by zvolkov on SQL Server Isolation Levels - Repeatable Readzvolkov2009-11-04T19:50:56Z2009-11-04T19:50:56ZGot it. Removed the readonly part of my answer.http://stackoverflow.com/questions/1668940/basic-clarifications-about-nhibernate/1669131#1669131Comment by zvolkov on Basic clarifications about NHibernatezvolkov2009-11-03T20:30:15Z2009-11-03T20:30:15ZHm... 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-commandingComment by zvolkov on C#: What is the value added by commanding?zvolkov2009-11-03T18:42:31Z2009-11-03T18:42:31ZThe first two answers not satisfactory for me, waiting for morehttp://stackoverflow.com/questions/1668679/data-access-design-patterns/1669030#1669030Comment by zvolkov on Data Access Design Patternszvolkov2009-11-03T18:03:57Z2009-11-03T18:03:57Z+1 for NHibernate but I don't think how TransactionScope will help, so -1 for that