zvolkov

3,650
Reputation
498 views

Registered User

Name zvolkov
Member for 8 months
Seen 5 hours ago
Website
Location USA, MD
Age 31
Half geek / half new agey / half normal family-bound shitkicker (yes, that's 3 halves). Besides geeky stuff I like listening to my vinyl stereo system, getting drunk while talking philosophy, and pretending I'll never return to civilization as I sit by the fire after a 3 days hike.
Nov
27
accepted How to define a basic custom configuration section?
Nov
16
accepted Why is NHibernate AutoFlush check so expensive?
Nov
16
comment NHibernate poor performance on auto flush events?
Do you use Spring.Data.NHibernate for nested transactions?
Nov
16
answered Why is NHibernate AutoFlush check so expensive?
Nov
16
comment NHibernate poor performance on auto flush events?
related question: stackoverflow.com/questions/1726656/…
Nov
16
comment Why is NHibernate AutoFlush check so expensive?
related question: stackoverflow.com/questions/1724307/…
Nov
12
answered Unable to load type ‘NHibernate.ByteCode.LinFu.ProxyFactoryFactory, NHibernate.ByteCode.LinFu’
Nov
12
comment NHibernate mapping for SQL Server 2008 Hierarchy Data Type
Critics of NH has nothing to do with answering this question. -1
Nov
7
comment crafting a class representing a fraction
this question reminded me that Ruby has built-in Rational class
Nov
7
comment is there a Memcached equivalent written in c# ?
note this is not compatible with memcached (if that's what Yassir meant by "equivalent")
Nov
5
comment Linq for NHibernate - filtering on <many-to-one> foreign key causes extra lookup
possible duplicate: stackoverflow.com/questions/1211621/…
Nov
5
revised Linq for NHibernate - filtering on <many-to-one> foreign key causes extra lookup
added 253 characters in body
Nov
5
revised Linq for NHibernate - filtering on <many-to-one> foreign key causes extra lookup
added 11 characters in body
Nov
5
revised What is the “preferred” method of creating mock objects for use with Visual Studio unit testing?
deleted 1 characters in body
Nov
5
comment Eager loading child and child-of-child collections in NHibernate
@Simon, you can specify default fetch type in the mappings
Nov
5
revised Linq for NHibernate - filtering on <many-to-one> foreign key causes extra lookup
added 67 characters in body
Nov
5
answered Linq for NHibernate - filtering on <many-to-one> foreign key causes extra lookup
Nov
5
answered NHibernate.Caches.SysCache version issues with Nhibernate 2.1.0 branch
Nov
5
answered Store static data in an array, or in a database?
Nov
5
comment How to cache reading from a file .NET 2.0
if it was .NET 4.0 you could use memory-mapped files. This way you would both eat your cake and have it.
Nov
5
answered How to wait for particular funtion to complete for starting next funtion? Without using thread in C#
Nov
5
answered Int32 vs. Int64 vs. Int in C#
Nov
5
comment Show error message using popup in a mvc project
You should not use desktop techniques in a web app.
Nov
4
comment Phonetically Memorable Password Generation Algorithms
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.
Nov
4
comment SQL Server Isolation Levels - Repeatable Read
Got it. Removed the readonly part of my answer.
Nov
4
revised SQL Server Isolation Levels - Repeatable Read
deleted 84 characters in body
Nov
4
answered To make a choice between ManualResetEvent or Thread.Sleep()
Nov
4
answered SQL Server Isolation Levels - Repeatable Read
Nov
4
revised Best SQL Server isolation level for web application?
added 159 characters in body
Nov
3
comment Basic clarifications about NHibernate
Hm... you may be right. Still my answer addresses an important question he should have asked! :)
Nov
3
comment C#: What is the value added by commanding?
The first two answers not satisfactory for me, waiting for more
Nov
3
answered How can I make XmlSerializer.Deserialize more strict?
Nov
3
answered What happens when a .NET thread throws an exception?
Nov
3
answered Basic clarifications about NHibernate
Nov
3
comment Data Access Design Patterns
+1 for NHibernate but I don't think how TransactionScope will help, so -1 for that
Nov
3
answered High level description of program stages
Nov
3
answered Free syntax highlighting component in .NET
Nov
3
comment Combined area of overlapping circles
how the heck would you ever encounter such problem in real programmer's life?
Nov
3
comment Dependency Injection Best Practises
also, the setter vs. constructor injections is a religious argument and as such should be avoided.
Nov
3
comment Dependency Injection Best Practises
what's kernel? is that a Ninject specific concept (haven't seen it anywhere else)?
Nov
2
comment Using Sqlite InMemory DB for unittesting MSSQL-DB
Nenad, Neal, that is the least of my worries. My biggest problem is incompatibilities and other differences that undermine credibility of unit-testing altogether.
Nov
2
answered What is your recommendation for a good book on the .NET CLR and CIL?
Nov
2
answered How to change the value of DateTime.UtcNow for a Process or Thread?
Nov
2
comment Frameworks for building so-called CRUD Admin UIs (over SQL tables)
thanks man, at least you replied!
Nov
2
answered Best SQL Server isolation level for web application?
Nov
2
comment What is a Value Class and what is a reference Class in C#?
Not accurate. Value types that are fields of classes are stored on the heap among the rest of the object state.
Nov
1
comment What is software development at your company really like (methodologies, tools, …)?
yeah, same here, Big Ball of Mud, except of course MY code ;)
Nov
1
revised What’s your Modus Operandi to solving a (programming) problem?
added 95 characters in body; deleted 3 characters in body; added 71 characters in body; added 2 characters in body
Nov
1
answered What’s your Modus Operandi to solving a (programming) problem?
Nov
1
comment ORM/Persistence layer Advice
@emaster70 for me the online manual and nhforge.org/doc/nh/en/index.html and the book NHibernate in Action manning.com/kuate is plenty documentation. 0-maintenance ORM is impossible, unless your DB schema is created by ORM (possible with NH and Fluent NH's AutoMappings)