User Stefan Steinegger - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T12:39:30Z http://stackoverflow.com/feeds/user/27343 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1554018/unit-test-nunit-or-visual-studio/1554265#1554265 2 Answer by Stefan Steinegger for Unit test, NUnit or Visual studio ? Stefan Steinegger 2009-10-12T12:25:07Z 2009-12-17T09:50:45Z <p>Here is my experience with MS Test</p> <ul> <li>We are running MS Test with around 3800 Test.</li> <li>It takes very long for the tests just to start executing, which is painful when running single tests.</li> <li>It takes around 1GB Memory to execute the tests. No, it is not due to memory leaks in our tests. Frequently we run into OutOfMemoryExceptions.</li> <li>Because it uses that much resource, we are starting to execute the tests from batch-files. So what's the whole integration good for?</li> <li>It is buggy and unstable: <ul> <li>For instance, if you remove the [Ignore] Attribute from a test, it does not recognize it, because it caches information about tests somewhere. You need to refresh the testlist, which sometimes solves the problem, or restart VS.</li> <li>It randomly does not copy reference assemblies to theout directory.</li> <li>Deployment Items (additional files to be used) just don't work properly. They are ignored randomly.</li> </ul></li> <li>There is hidden (not visible in the test code) information in vsmdi and testrunconfig files. If you don't care about it, it might not work.</li> <li>Functionally it might be comparable to NUnit, but it is very expensive if you consider using VS tester edition.</li> </ul> http://stackoverflow.com/questions/1917845/nhibernate-parent-mapping-does-not-create-child-foreign-key/1917959#1917959 0 Answer by Stefan Steinegger for NHibernate parent mapping does not create child foreign-key Stefan Steinegger 2009-12-16T21:42:00Z 2009-12-16T21:42:00Z <p>I had the same problem, for now I just removed the not-null constraints on this kind of foreign keys. Since the database is only used with NH, it is not possible to get any null values there.</p> <p>I think NHibernate stores the child first. Then it stores the parent. Because you need identity ids, it does not have a primary key for the parent before it is inserted to the database. Then it needs to update the child afterwards.</p> <p>Try another id generator. <code>hilo</code> is recommended. This is also faster.</p> http://stackoverflow.com/questions/1893611/nhibernate-failed-to-lazily-initialize-a-collection-of-role/1893627#1893627 1 Answer by Stefan Steinegger for NHibernate -failed to lazily initialize a collection of role. Stefan Steinegger 2009-12-12T14:40:11Z 2009-12-12T14:58:46Z <p>The problem is that you create and also close the session in you models <code>GetById</code> method. (the using statement closes the session) The session must be available during the whole business transaction.</p> <p>There are several ways to achieve this. You can configure NHibernate to use the session factories GetCurrentSession method. See <a href="http://nhforge.org/wikis/reference2-0en/context-sessions.aspx" rel="nofollow">this post on NHForge</a> or <a href="http://www.codeproject.com/KB/architecture/NHibernateBestPractices.aspx" rel="nofollow">this post on Code Project</a>.</p> <pre><code>public SomeModel GetById(Guid id) { // no using keyword here, take the session from the manager which // manages it as configured ISession session = NHibernateSessionManager.Instance.GetSession(); return session.Get&lt;SomeModel &gt;(id); } </code></pre> <p>I don't use this. I wrote my own transaction service which allows the following:</p> <pre><code>using (TransactionService.CreateTransactionScope()) { // same session is used by any repository var entity = xyRepository.Get(id); // session still there and allows lazy loading entity.Roles.Add(new Role()); // all changes made in memory a flushed to the db TransactionService.Commit(); } </code></pre> <p>However you implement it, sessions and transactions should live as long as a business transaction (or system function). Unless you can't rely on transaction isolation nor rollback the whole thing.</p> http://stackoverflow.com/questions/1892433/c-globalization-satellite-dlls/1892621#1892621 0 Answer by Stefan Steinegger for C# Globalization & Satellite DLL's Stefan Steinegger 2009-12-12T07:04:52Z 2009-12-12T07:04:52Z <p>IMHO, I wouldn't change anything here. There is a standard mechanism for localization in .NET, which is based on satellite dlls and these subdirectories. If you use a tool for localization, eg. Passolo, it will also support exactly this structure and nothing else.</p> <p>There will be a lot of subdirectories ... so what? Everything else will be quite complicated.</p> http://stackoverflow.com/questions/1879079/how-would-you-like-an-api-to-expose-error-handling/1879279#1879279 2 Answer by Stefan Steinegger for How would you like an API to expose error handling? Stefan Steinegger 2009-12-10T07:45:42Z 2009-12-10T07:45:42Z <p>I wouldn't implement fancy error technologies (like events and stuff like this). It's not easy to judge where and how to use exceptions, but this is no reason to implements other stuff.</p> <p>When you request an object by an id which doesn't exist, what do you have to tell the caller about this? If you just return null, the client knows that it doesn't exist, there is nothing more to say.</p> <p>Exceptions force the caller to care about it. So they should only be used where the caller is expected to do something special. Exception can provide the information why something didn't work. But if it is an "error" the user could also ignore, an exception is not the best choice.</p> <p>There are two common alternatives to exceptions. </p> <ul> <li>Use return values which provide information about the result of an action. For instance, <code>logon</code> could return a <code>LogonResult</code> instead of throwing an exception.</li> <li>Write two methods, one throwing an exception, and one (Try...) returning a boolean. The caller decides if it wants to ignore the "error" or not.</li> </ul> http://stackoverflow.com/questions/1867483/which-orm-supports-multiple-row-updates-and-deletes/1867561#1867561 1 Answer by Stefan Steinegger for Which ORM Supports Multiple row Updates and Deletes Stefan Steinegger 2009-12-08T15:05:16Z 2009-12-08T15:17:35Z <p>NHibernate supports HQL (the object oriented <strong>H</strong>ibernate <strong>Q</strong>uery <strong>L</strong>anguage) updates and deletes.</p> <p>There are some examples in <a href="http://nhforge.org/blogs/nhibernate/archive/2009/05/05/nh2-1-executable-hql.aspx" rel="nofollow">this Blog Post by Fabio Maulo</a> and <a href="http://ayende.com/Blog/archive/2009/05/28/nhibernate-ndash-executable-dml.aspx" rel="nofollow">this Blog Post by Ayende Rahien</a>.</p> <p>It would probably look like this:</p> <pre><code>using (var session = OpenSession()) using (var tx = s.BeginTransaction()) { session .CreateQuery("delete from Whatever where IsDelete = true") .ExecuteUpdate(); tx.Commit(); } </code></pre> <p>Note: this is not SQL. This is HQL containing class names and property names and it translates to (almost) any database.</p> http://stackoverflow.com/questions/1867417/use-resx-internationalization-in-data-objects-bad-idea/1867541#1867541 1 Answer by Stefan Steinegger for Use RESX internationalization in Data Objects, bad idea? Stefan Steinegger 2009-12-08T15:02:25Z 2009-12-08T15:02:25Z <p>If the texts are constants (not changing while working with the application), they could actually belong to the resx files. A advantage is that it automatically falls back to the closest known language (for instance, if you don't support en-uk, it falls back to en-us, English people will hate me for this example :-)</p> <p>Put it to the highest layer that needs the texts. For instance, if you only need in the UI, put the texts to the UI layer. Business logic can easily (or even better) live with keys. If you need it in your business layer, for instance for export features or log files, you need to put it there.</p> http://stackoverflow.com/questions/1845884/custom-sql-function-for-nhibernate-dialect/1846087#1846087 0 Answer by Stefan Steinegger for Custom SQL function for NHibernate dialect Stefan Steinegger 2009-12-04T10:22:05Z 2009-12-04T10:22:05Z <p>I think, <code>Where</code> is a SQL statement, not a HQL statement. So it doesn't know the function. It only works for HQL, in queries or filters.</p> http://stackoverflow.com/questions/1827425/how-to-check-programatically-if-a-type-is-a-struct-or-a-class/1827499#1827499 6 Answer by Stefan Steinegger for How to check programatically if a type is a struct or a class? Stefan Steinegger 2009-12-01T16:54:59Z 2009-12-03T09:23:05Z <pre><code>Type type = typeof(Foo); bool isStruct = type.IsValueType &amp;&amp; !type.IsPrimitive; bool isClass = type.IsClass; </code></pre> <p>It could still be: a primitive type or an interface.</p> <p><hr></p> <p><strong>Edit:</strong> There is a lot of discussion about the definition of a struct. A struct and a value type are actually the same, so <code>IsValueType</code> is the correct answer. I usually had to know whether a type is a <em>user defined struct</em>, this means a type which is implemented using the keyword <code>struct</code> and not a primitive type. So I keep my answer for everyone who has the same problem then me.</p> <p><hr></p> <p><strong>Edit 2</strong>: According to the <a href="http://msdn.microsoft.com/en-us/library/s1ax56ch.aspx" rel="nofollow">C# Reference</a>, enums are not structs, while any other value type is. Therefore, the correct answer how to determine if a type is a struct is:</p> <pre><code>bool isStruct = type.IsValueType &amp;&amp; !type.IsEnum; </code></pre> <p>IMHO, the definition of a struct is more confusing then logical. I actually doubt that this definition is of any relevance in praxis.</p> http://stackoverflow.com/questions/1831747/is-there-a-better-way-to-implment-equals-for-object-with-lots-of-fields/1831805#1831805 0 Answer by Stefan Steinegger for Is there a better way to implment Equals for object with lots of fields? Stefan Steinegger 2009-12-02T09:44:06Z 2009-12-02T09:51:09Z <p><strong>Edit</strong>: sorry, I didn't notice that you are asking for serialization testing. So this approach definitely doesn't work for you.</p> <p><hr></p> <p>There is another "dirty" way. If your object is serializable anyway, you can <strong>serialize</strong> them and compare the resulting streams.</p> <p>This is rather slow, but should be quite reliable and easy to implement. </p> <p>We are doing this sometimes to check if someone changed any data in an editor.</p> http://stackoverflow.com/questions/1819300/why-do-we-have-generics-when-we-can-store-thingsvalues-and-ref-in-a-arraylist/1819319#1819319 0 Answer by Stefan Steinegger for Why do we have generics when we can store things(values and ref) in a ArrayList? Stefan Steinegger 2009-11-30T11:40:53Z 2009-11-30T11:40:53Z <p>A simple explanation. </p> <p>When you have an list of integers, you just want to make sure that some part of the program adds a string into it. Using generics, you tell the compiler that you decide to only have integers (or whatever type) in the list and it makes sure that you don't break your own law.</p> <p>You can say, it is another language (and runtime) feature to <strong>express your intention in code</strong>. This allows the tools to support you.</p> http://stackoverflow.com/questions/1819034/dont-flush-the-session-after-an-exception-occurs-nhibernate/1819150#1819150 1 Answer by Stefan Steinegger for don't flush the Session after an exception occurs - NHibernate Stefan Steinegger 2009-11-30T11:03:14Z 2009-11-30T11:03:14Z <p>You should never catch exceptions and ignore them during a NHibernate transaction.</p> <p>I try to explain why.</p> <p>There could be exceptions for instance caused by constraints in the database. (it could also be caused by mapping problems, exceptions thrown by properties or anything else.) NHibernate tries to synchronize the state in memory with the database. This is done on commit - and sometime before queries to make sure that queries are done on actual data. When this synchronization fails, <strong>the state in the database is something random</strong>, some changed are persisted, others are not. The only thing you can do in such a case is close the session.</p> <p><strong>Consider that decisions and calculations of your code is based on values in memory</strong>. But - in case of an ignored exception, this values are not the values in the database, they will never be there. So your logic will decide and calculate on 'fantasy-data'.</p> <p>By the way, <strong>it is never a good idea to catch any exception (untyped) and ignore them</strong>. You should always know the exceptions you handle, and be sure that you can continue.</p> <p>What your doing here is swallowing programming errors. Believe me, the system will not be more stable. The question is only: do you notice the error when it occurs, or do you ignore it there and even <strong>persist the result of the error to the database</strong>? When you do the latter, you don't have to be surprised when your database is inconsistent and other error arise when you try to get the data from the database. And you will never ever find the code that is the actual cause of the error.</p> http://stackoverflow.com/questions/1809032/nhibernate-parent-list-properties-and-related-child-properties-are-not-synchroni/1809075#1809075 0 Answer by Stefan Steinegger for NHibernate: Parent list properties and related child properties are not synchronized Stefan Steinegger 2009-11-27T14:25:30Z 2009-11-27T14:25:30Z <p>Not sure if I understand everything what you are doing here. Some thoughts:</p> <p>If you decide to move <code>ProgramTasks</code> around, then they get independent and should not be mapped using <code>cascade="all-delete-orphan"</code>. If you do this, NH removes the <code>ProgramTask</code> from the database when you remove it from a <code>ProgramSession</code>.</p> <p>Map it using <code>cascade="none"</code> and control the lifecycle of the object yourself. (this means: store it before a <code>ProgramSession</code> gets stored. Delete it when it is not used anymore.)</p> <p>Not sure if this this is also a problem, but note that if you have a inverse reference, you code is responsible to make the references consistent. Of course, references get cleaned up after storing to the database and loading into an empty session, this is because there is only one foreign key in the database. But this is not the way it should be done. It is not responsibility of NH to manage your references. (Its only responsibility is to persist what you are doing in memory.) So you need to make it consistent in memory, and implement your business logic as if there wasn't NHibernate behind.</p> http://stackoverflow.com/questions/1803051/how-to-speedup-wcf-unit-tests-creating-closing-the-servicehost-is-slow/1803159#1803159 1 Answer by Stefan Steinegger for How to Speedup WCF “unit” tests? (Creating/closing the ServiceHost is slow...) Stefan Steinegger 2009-11-26T11:32:50Z 2009-11-27T09:07:41Z <p>We stopped writing integration tests which use WCF. It was too much of an effort to make the whole system up and running within reasonable time. </p> <p>Instead, we're testing the logic isolated. Serialization of data contracts, which is the biggest source for errors in this area, is also tested independent from WCF (just calling the DataContractSerializer). After some initial effort, WCF itself didn't make trouble until now.</p> <p>I'm not sure if this helps.</p> <p><hr></p> <p><strong>Edit:</strong> Think of what you are actually testing. </p> <ul> <li>What kind of errors do you expect to be found? </li> <li>Is there really no other way to test it? (eg. we found another way for serialization problems)</li> <li>How big is the chance that this kind of error occurs? Is it easy for developers to avoid it?</li> <li>How hard would it be to find it by manual testing? (eg. serialization problems are hard to find, because just one property could be lost, on the other hand, if the client can't even connect, it's very easy to find)</li> </ul> http://stackoverflow.com/questions/1803258/the-same-property-name-but-different-return-type-in-a-generic-list/1803293#1803293 1 Answer by Stefan Steinegger for The same property name but different return type in a generic list Stefan Steinegger 2009-11-26T12:02:11Z 2009-11-26T12:02:11Z <p>Not 100% sure if I understand the problem.</p> <p>I usually use an interface with an untyped property:</p> <pre><code>interface IUntypedItem { object UntypedData {get; } } interface IItem&lt;T&gt; : IUntypedItem { T Data {get; set;} } class abstract ItemGeneric&lt;T&gt; : IItem&lt;T&gt; { T Data { get; set; } object UntypedData { get { return Data; }} } class ItemText : ItemGeneric&lt;string&gt; { } </code></pre> <p>Then you can have alist of UntypedItems</p> <pre><code>List&lt;IUntypedItem&gt; list; foreach (IUntypedItem item in list) { // use item.UntypedData // or downcast to use typed property } </code></pre> <p>You can't avoid casting or objects when you want to handle different types in the same list. You just can make clear what you are doing.</p> http://stackoverflow.com/questions/1803160/ms-sql-how-to-seperate-out-records-which-have-no-childs-in-the-same-table/1803197#1803197 0 Answer by Stefan Steinegger for MS SQL: How to seperate out records which have no childs in the same table? Stefan Steinegger 2009-11-26T11:40:23Z 2009-11-26T11:40:23Z <pre><code>SELECT * FROM Table as parent WHERE EXISTS ( SELECT child.ParentID FROM Table as child WHERE parent.ParentId = child.id and parent.id != child.id ) </code></pre> <p>If the rows without parent aways reference itself, it's easy:</p> <pre><code>SELECT * FROM Table as parent WHERE parent.parentId != parent.id </code></pre> http://stackoverflow.com/questions/1802580/how-to-find-the-value-that-has-been-passed-to-a-method-on-my-mocked-moq-or-rhino/1803141#1803141 1 Answer by Stefan Steinegger for How to find the value that has been passed to a method on my mocked (Moq or Rhino Mocks) interface? Stefan Steinegger 2009-11-26T11:27:59Z 2009-11-26T11:27:59Z <p>In rhino, you use <code>WhenCalled</code> or <code>GetArgumentsForCallsmadeOn</code>:</p> <pre><code>Thingy argument; mock .Stub(x =&gt; x.SetClientCallbackSender(Arg&lt;IClientCallbackSender&gt;.Is.Anything)) .WhenCalled(call =&gt; argument = (Thingy)call.Arguments[0]); // act //... // assert Assert.AreEqual(7, argument.X); </code></pre> <p>The problem with this implementation is, that you just get the latest argument. You could put more control to this by using argument contraints (instead of Is.Anything).</p> <p>or</p> <pre><code>// act //... // assert Thingy argument = (Thingy)mock .GetArgumentsFormCalsMadeOn(x =&gt; x.SetClientCallbackSender( Arg&lt;IClientCallbackSender&gt;.Is.Anything))[0][0]; </code></pre> <p>The problem with the <code>GetArgumentsFormCalsMadeOn</code> is, that it returns a two dimensional array, a row for each call and a column for each argument. So you have to know exactly how many calls your unit under test performs.</p> http://stackoverflow.com/questions/1802380/does-extension-method-come-under-object-oriented-concept-in-c/1802466#1802466 1 Answer by Stefan Steinegger for Does extension method come under object oriented concept in c#? Stefan Steinegger 2009-11-26T09:07:50Z 2009-11-26T09:07:50Z <p>Extension methods are not an object oriented language feature. (compared to: classes, inheritance, polymorphism etc).</p> <p>Like every language feature, it should be used where it is appropriate and for what it is designed for. There are already dozens of questions about when and how to use Extension methods.</p> <ul> <li><a href="http://stackoverflow.com/questions/3147/what-are-the-best-practices-for-using-extension-methods-in-net">What are the best practices for using Extension Methods in .Net?</a></li> <li><a href="http://stackoverflow.com/questions/1169422/possible-overuses-of-extension-methods">Possible overuses of Extension Methods</a></li> <li><a href="http://stackoverflow.com/questions/1296953/do-extension-methods-hide-dependencies">Do Extension Methods Hide Dependencies?</a></li> </ul> http://stackoverflow.com/questions/1800003/which-is-better-using-a-nullable-or-a-boolean-returnout-parameter/1800034#1800034 4 Answer by Stefan Steinegger for which is better, using a nullable or a boolean return+out parameter Stefan Steinegger 2009-11-25T21:21:20Z 2009-11-26T07:52:01Z <p><strong>It depends on how you think the calling code should look like.</strong> And therefore what your function is used for.</p> <p>Generally, you should avoid out arguments. On the other hand, it could be nice to have code like this:</p> <pre><code>int parameter; if (DoSomething(out paramameter)) { // use parameter } </code></pre> <p>When you have a nullable int, it would look like this:</p> <pre><code>int? result = DoSomething(); if (result != null) { // use result } </code></pre> <p>This is somewhat better because you don't have an out argument, but the code that decides if the function succeeded doesn't look very obvious.</p> <p>Don't forget that there is another option: use Exeptions. Only do this if the case where your function fails is really an exceptional and kind of a error-case.</p> <pre><code>try { // normal case int result = DoSomething() } catch (SomethingFailedException ex) { // exceptional case } </code></pre> <p>One advantage of the exception is that you can't just ignore it. The normal case is also straight forward to implement. If the exceptional case something you could ignore, you shouldn't use exceptions.</p> <p><strong>Edit:</strong> Forgot to mention: another advantage of an Exception is that you also can provide information <em>why</em> the operation failed. This information is provided by the Exception type, properties of the Exception and the message text.</p> http://stackoverflow.com/questions/1798980/how-to-avoid-double-check-locking-when-adding-items-to-a-dictionary-object-in/1799058#1799058 1 Answer by Stefan Steinegger for How to avoid double check locking when adding items to a Dictionary<> object in .NET? Stefan Steinegger 2009-11-25T18:36:43Z 2009-11-25T18:36:43Z <p>IMHO, if this piece of code is called from many thread simultaneous, it is recommended to check it twice.</p> <p>(But: I'm not sure that you can safely call <code>ContainsKey</code> while some other thread is call <code>Add</code>. So it might not be possible to avoid the lock at all.)</p> <p>If you just want to avoid the Thingy is created but not used, just create it within the locking block:</p> <pre><code>private Dictionary&lt;string, Thingey&gt; Thingeys; public Thingey GetThingey(Request request) { string thingeyName = request.ThingeyName; if (!this.Thingeys.ContainsKey(thingeyName)) { lock (this.Thingeys) { // only one can create the same Thingy Thingey newThingey = new Thingey(request); if (!this.Thingeys.ContainsKey(thingeyName)) { this.Thingeys.Add(thingeyName, newThingey); } } } return this. Thingeys[thingeyName]; } </code></pre> http://stackoverflow.com/questions/1798680/nhibernate-polymorphic-query-on-a-collection/1798805#1798805 1 Answer by Stefan Steinegger for NHibernate Polymorphic Query on a Collection Stefan Steinegger 2009-11-25T17:59:18Z 2009-11-25T17:59:18Z <p>I don't know if there is a better way, but I use subqueries for this:</p> <pre><code>from Workflow w join w.Log l where l in ( select n from Note n where n.Content like '%keyword%' ) </code></pre> <p>(if this doesn't work, write <code>l.id in (select n.id...</code>)</p> <p>In criteria, you <em>can</em> directly filter properties that are only available on a subclass, but you shouldn't, because it only filters for the first subtype it finds where this property is defined. </p> <p>I use subqueries as well:</p> <pre><code>DetachedCriteria subquery = DetachedCriteria.For&lt;Note&gt;("n") .Add(Expression.Like("n.Content", "%keyword%")) .SetProjection(Projections.Property("n.id")); IList&lt;Workflow&gt; workflows = session.CreateCriteria&lt;Workflow&gt;("w") .CreateCriteria("w.Log", "l") .Add(Subqueries.PropertyIn("l.id", subquery)) .List&lt;Workflow&gt;(); </code></pre> http://stackoverflow.com/questions/1796221/hibernate-saveorupdate-fails-when-i-execute-it-on-empty-table/1796254#1796254 2 Answer by Stefan Steinegger for Hibernate saveOrUpdate fails when I execute it on empty table. Stefan Steinegger 2009-11-25T11:13:35Z 2009-11-25T11:20:16Z <p>This is by design.</p> <p>Hibernate only decides based on the id if it should perform an update or an insert. If it would consider what's already there in the database, it would have to perform an additional query, but it doesn't do this.</p> <p>Ids are normally managed by Hibernate, unless you map it as <code>generator="assigned"</code> (don't know how this looks using annotations). So you shouldn't just assign a value to it.</p> <p>In this case, the Id is even given by the database. So if your application would generate Ids at the same time, it would result in duplicated Ids. (And most database do not allow inserting values to auto columns, so it would technically be impossible to store your id).</p> <p>If you want to generate your own Ids, use <code>generator="assigned"</code>, and store it using <code>merge</code>. This will do what you expect: it searches the record in the database, when it exists it will update it, when not it will insert it.</p> http://stackoverflow.com/questions/1790145/propertyinfo-canread-and-propertyinfo-canwrite/1790272#1790272 1 Answer by Stefan Steinegger for PropertyInfo.CanRead and PropertyInfo.CanWrite Stefan Steinegger 2009-11-24T14:03:56Z 2009-11-24T14:03:56Z <p><code>CanRead</code> only indicates that the property has a get accessor. It doesn't say that you are allowed to call it, it could still be private. Use <code>BindingFlags</code> to call private properties.</p> http://stackoverflow.com/questions/1789045/convert-string-to-value-type/1789091#1789091 2 Answer by Stefan Steinegger for convert string to value type Stefan Steinegger 2009-11-24T10:03:45Z 2009-11-24T10:03:45Z <p>Since string is constant (every mutation results in a new instance), there is no need to handle strings as value types. <strong>The actually behave the same as value types.</strong> Even comparison operations (<code>Equals</code> and <code>==</code>) are based on the strings content, not on the reference.</p> http://stackoverflow.com/questions/1782389/nested-join-on-same-table-tree-structure/1782418#1782418 0 Answer by Stefan Steinegger for Nested join on same table (tree structure) Stefan Steinegger 2009-11-23T11:02:02Z 2009-11-23T11:02:02Z <p>You could use <code>union</code> for this, and you need to limit the depth of the tree to make it possible to select it in one query.</p> <pre><code>SELECT id, name FROM TREE as node WHERE node.id = :id UNION SELECT child1.id, child1.name FROM TREE as node inner join TREE as child1 on node.id = child1.parent WHERE node.id = :id UNION SELECT child2.id, child2.name FROM TREE as node inner join TREE as child1 on node.id = child1.parent inner join TREE as child2 on child1.id = child2.parent WHERE node.id = :id </code></pre> <p>The problem here is, SQL is very bad in recursion (while relational structures are actually great in this).</p> <p>To make it fully dynamic, use a query for each level in the tree, or use a database engine specific SQL extension if there is anything usable.</p> http://stackoverflow.com/questions/1762333/difference-between-join-and-no-join-select/1762365#1762365 0 Answer by Stefan Steinegger for difference between join and no join select ? Stefan Steinegger 2009-11-19T10:36:50Z 2009-11-19T10:36:50Z <p>Joins are the newer syntax to express relations in queries. They offer the benefit of outer joins, which are not really possible in a where clause (Oracle had a language extension for this, by adding a (+) to the filter, but it was very limited and not very easy to understand). When using inner joins, it doesn't matter, the result is the same.</p> <p>This is subjective, but in my opinion, joins are much easier to read.</p> http://stackoverflow.com/questions/1748999/c-how-do-i-insert-a-tab/1749068#1749068 0 Answer by Stefan Steinegger for C# @"" how do i insert a tab? Stefan Steinegger 2009-11-17T13:56:44Z 2009-11-17T13:56:44Z <p>The correctest way to do this:</p> <pre><code>string str = string.Format( CultureInfo.CurrentCulture, // or InvariantCulture @"abc{0}cde", "\t"); </code></pre> <p>and</p> <pre><code>string str = string.Format( CultureInfo.CurrentCulture, // or InvariantCulture @"abc{0}cde", Environment.NewLine); </code></pre> <p>you could have more then one appearance of <code>{0}</code> in the string.</p> http://stackoverflow.com/questions/1745691/linq-when-to-use-singleordefault-vs-firstordefault-with-filtering-criteria/1745709#1745709 2 Answer by Stefan Steinegger for LINQ: When to use SingleOrDefault vs. FirstOrDefault() with filtering criteria Stefan Steinegger 2009-11-17T00:03:05Z 2009-11-17T00:03:05Z <p><code>FirstOrDefault</code> is most probably faster,because <code>SingleOrDefault</code> needs to check if there is only one element.</p> <p>I would say, use <code>FirstOrDefault</code> if you don't care how many items there are, use <code>SingleOrDefault</code> to make sure that you select a unique item.</p> http://stackoverflow.com/questions/1744146/why-does-nhibernate-pass-default-values-to-an-insert-if-save-is-called-before-the/1744215#1744215 1 Answer by Stefan Steinegger for Why does NHibernate pass default values to an insert if Save is called before the object is populated? Stefan Steinegger 2009-11-16T19:12:51Z 2009-11-16T19:12:51Z <p>I also wonder why this happens. NH should really wait to insert the object to the database.</p> <p>Reasons why could do this:</p> <ul> <li>the id, you already said that you are using guids, so this shouldn't be the reason.</li> <li>there is a query. To ensure that it is performed on actual data, the session is flushed.</li> <li>there are calculated columns, which need to be read back from the database</li> <li>there might be other reasons I don't remember.</li> </ul> <p>Is this really the code you are running to reproduce the test? </p> <p>How does the mapping file look like?</p> http://stackoverflow.com/questions/1742599/should-we-use-the-same-business-classes-on-server-and-client/1743157#1743157 4 Answer by Stefan Steinegger for Should we use the same business classes on server and client? Stefan Steinegger 2009-11-16T16:06:56Z 2009-11-16T17:46:50Z <p>We just had a hard time to find the answer to exactly this question in our project. This is the story:</p> <p>We thought that reusing classes is great and will reduce many repetitive stuff. NHibernate allows to detach and reattach classes from sessions, so it seemed to be trivial.</p> <ul> <li><p>First and biggest problem we had was that you can't send the whole database around, so we had to split the entity model into pieces and linked them by guids instead of normal references. This made queries very complicated.</p></li> <li><p>We had to implement some tricks because serialization, persistency and data binding all had their issues. This rather ugly hacks went all into the same classes. They became larger and larger.</p></li> <li><p>Attributes seem to be harmless, until you see a large list of attributes on each class and each property, because every layer adds its attributes.</p></li> <li><p>Entities implicitly started to support two "modes": an <em>DTO-mode</em> and a <em>persistency-mode</em>. This got evident when methods like <code>PrepareSerialization</code> or <code>AfterDatabaseRetrieval</code> and others of this kind showed up. Some properties could only be used in the server, others only in the client.</p></li> </ul> <p>Obviously, maintenance became a nightmare. Nobody took the risk of changing an entity anymore, because you had to change things in the whole system.</p> <p>Then we started to switch to Dtos.</p> <p>After a huge amount of work we managed to rewrite some important parts of the system to use Dtos. And - suddenly everyone got happy. </p> <p>You can maintain the serialization. You can maintain the database model and optimize queries. You could make changes on the cient model without breaking anything.</p> <p><strong>Conclusion:</strong> The effort to maintaining similar classes for each layers is ridiculous compared to the loss of maintainability when the same classes are used through all the layers.</p> <p>There are still some trivial entities and value-type kind of classes which are used as entities and Dtos at the same time.</p> <p>I could imagine that a small application that consists of only trivial entities could live without Dtos.</p> http://stackoverflow.com/questions/1595166/why-is-it-so-bad-to-mock-classes/1595260#1595260 Comment by Stefan Steinegger on Why is it so bad to mock classes? Stefan Steinegger 2009-12-17T11:38:02Z 2009-12-17T11:38:02Z @Rogerio: May be it's specific to certain mock tools. If these limitations aren't there an mocking classes is &quot;practically the same&quot;, then there is no technical disadvantage. The last paragraph sill applies, decoupling classes means running them in isolation must be possible, mocking becomes natural, interfaces as well. Not decoupling classes means bad class design. http://stackoverflow.com/questions/1399234/operator-overloading-net/1399313#1399313 Comment by Stefan Steinegger on operator overloading .net Stefan Steinegger 2009-12-16T21:52:30Z 2009-12-16T21:52:30Z MemebershipUser does not sound like a numeric value. I think that comparison operators are too implicit, you might not understand what they mean when reading the code. A method called <code>HasSufficientPermission</code> or <code>IsSameOrHigherLevel</code> or whatever is self documenting. On the other hand, when your class is called <code>PermissionLevel</code> or the like, it is quite clear what it means when a PermissionLevel is greater then the other. But all the same, explicit methods are much easier to understand and you don't loose anything. http://stackoverflow.com/questions/1893611/nhibernate-failed-to-lazily-initialize-a-collection-of-role/1893639#1893639 Comment by Stefan Steinegger on NHibernate -failed to lazily initialize a collection of role. Stefan Steinegger 2009-12-12T14:56:13Z 2009-12-12T14:56:13Z I wouldn't do this, since opening a transaction for each call is bad practice. Transaction isolation is nor available, NHibernate cache is not useful anymore (every call returns a new instance), persistence ignorance is not possible, lazy loading not working anymore. In short: most advantages of using NHibernate is destroyed. http://stackoverflow.com/questions/1892696/hex-number-of-length-128-which-is-to-be-converted-to-binary-in-c Comment by Stefan Steinegger on hex number of length 128 which is to be converted to binary in c# Stefan Steinegger 2009-12-12T08:24:10Z 2009-12-12T08:24:10Z There hasn't been a hexadecimal number before you created it using <code>String.Format</code>. Before it was binary. Just take it. http://stackoverflow.com/questions/1892696/hex-number-of-length-128-which-is-to-be-converted-to-binary-in-c Comment by Stefan Steinegger on hex number of length 128 which is to be converted to binary in c# Stefan Steinegger 2009-12-12T07:59:50Z 2009-12-12T07:59:50Z <code>foreach (byte b in HashValue)</code>: there you already have a list of bytes. http://stackoverflow.com/questions/1892547/sorry-guys-its-hex-number-of-128-length-which-is-to-be-converted-to-binary-in-c Comment by Stefan Steinegger on sorry guys, its hex number of 128 length which is to be converted to binary in c# Stefan Steinegger 2009-12-12T07:39:09Z 2009-12-12T07:39:09Z foreach (byte b in HashValue): there you already <b>have</b> a list of bytes. So where is the problem? http://stackoverflow.com/questions/1888254/how-does-c-generate-guids/1888274#1888274 Comment by Stefan Steinegger on How does C# generate GUIDs? Stefan Steinegger 2009-12-11T14:06:36Z 2009-12-11T14:06:36Z A guid is not made of any characters, it is made of bytes. Hex characters is just a representation of it. http://stackoverflow.com/questions/1879079/how-would-you-like-an-api-to-expose-error-handling/1879338#1879338 Comment by Stefan Steinegger on How would you like an API to expose error handling? Stefan Steinegger 2009-12-10T08:41:16Z 2009-12-10T08:41:16Z Basically I agree, but CSV parsing is much more general then a specific server API. http://stackoverflow.com/questions/1867296/are-you-multi-tasker Comment by Stefan Steinegger on ARE YOU MULTI TASKER? Stefan Steinegger 2009-12-08T14:55:22Z 2009-12-08T14:55:22Z @jldupont: the purpose of down-voting is not to punish a user, but to classify a question. http://stackoverflow.com/questions/1867417/use-resx-internationalization-in-data-objects-bad-idea Comment by Stefan Steinegger on Use RESX internationalization in Data Objects, bad idea? Stefan Steinegger 2009-12-08T14:50:37Z 2009-12-08T14:50:37Z Don0't really understand. You mean: there is an entity with country names and an entity with language names which should be localized? http://stackoverflow.com/questions/318210/compare-equality-between-two-objects-in-nunit/1319620#1319620 Comment by Stefan Steinegger on Compare equality between two objects in NUnit Stefan Steinegger 2009-12-07T21:29:43Z 2009-12-07T21:29:43Z @Ian: not yet. I'm working on it, since I see that there is a strong demand for something like this. http://stackoverflow.com/questions/1827425/how-to-check-programatically-if-a-type-is-a-struct-or-a-class Comment by Stefan Steinegger on How to check programatically if a type is a struct or a class? Stefan Steinegger 2009-12-02T21:23:25Z 2009-12-02T21:23:25Z Simple question, complicated answer. I edited my answer the second time. http://stackoverflow.com/questions/1827425/how-to-check-programatically-if-a-type-is-a-struct-or-a-class/1827434#1827434 Comment by Stefan Steinegger on How to check programatically if a type is a struct or a class? Stefan Steinegger 2009-12-02T21:11:46Z 2009-12-02T21:11:46Z So the correct answer to the question here should be: <code>type.IsValueType &amp;&amp; !type.IsEnum</code> http://stackoverflow.com/questions/1832684/c-sort-and-orderby-comparison/1832713#1832713 Comment by Stefan Steinegger on C# Sort and OrderBy comparison Stefan Steinegger 2009-12-02T13:19:38Z 2009-12-02T13:19:38Z Interesting results. Thank you for taking the time. http://stackoverflow.com/questions/1832684/c-sort-and-orderby-comparison/1832713#1832713 Comment by Stefan Steinegger on C# Sort and OrderBy comparison Stefan Steinegger 2009-12-02T12:58:53Z 2009-12-02T12:58:53Z I think, it's much different of sorting a very small list (3 items) 1000000 times, or by sorting a very large list (1000000 items) just a few times. Both is very relevant. In practice, medium size of list (what's medium? ... let's say 1000 items for now) is most interesting. IMHO, sorting lists with 3 items is not very meaningful.