User Chris Conway - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T12:52:19Z http://stackoverflow.com/feeds/user/2849 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1914502/linq-to-sql-first-call/1914688#1914688 0 Answer by Chris Conway for LINQ to SQL: First call Chris Conway 2009-12-16T13:36:21Z 2009-12-16T13:36:21Z <p>I think what you're experiencing is the Asp.Net compilation process the first time the page is loaded, not a performance problem with LTS. One way to measure performance is to profile it with the <a href="http://l2sprof.com/" rel="nofollow">Linq to Sql Profiler</a>. It will tell you exactly what the query is that is being generated as well as execution times for both the query and your code.</p> http://stackoverflow.com/questions/1911549/domain-driven-design-data-centric-module-inside-larger-ddd-system/1911754#1911754 0 Answer by Chris Conway for Domain Driven Design - data centric module inside larger DDD system Chris Conway 2009-12-16T01:45:35Z 2009-12-16T01:45:35Z <p>Your question is a little unclear. DDD is all about the repository pattern to persist your value objects. Are you looking for other patterns to deal with something in particular? It's not clear what you're trying to accomplish here.</p> http://stackoverflow.com/questions/27242/where-can-i-learn-jquery-is-it-worth-it/27260#27260 2 Answer by Chris Conway for Where can I learn jQuery? Is it worth it? Chris Conway 2008-08-26T02:07:50Z 2009-12-12T12:38:15Z <p>There are a number of resources to learn jQuery (which is completely worth it IMHO). Start here <a href="http://docs.jquery.com/Main%5FPage" rel="nofollow">http://docs.jquery.com/Main_Page</a> to read the jQuery documentation. This is a great site for seeing visually what it has to offer: <a href="http://visualjquery.com/1.1.2.html" rel="nofollow">http://visualjquery.com/1.1.2.html</a>. Manning publications also has a great book which is highly recommended called <a href="http://www.manning.com/bibeault/" rel="nofollow">jQuery in Action</a>. As far as JavaScript libraries are concerned, this one and Prototype are probably the most popular if you're looking to compare jQuery to something else.</p> http://stackoverflow.com/questions/1857579/how-hard-is-it-to-tamper-with-a-strong-named-assembly/1857604#1857604 0 Answer by Chris Conway for How hard is it to tamper with a strong named assembly? Chris Conway 2009-12-07T03:11:30Z 2009-12-07T03:11:30Z <p>It's no different from modifying a non-strongly typed assembly. The only real difference is that they would have to run the strong name utility (sn.exe) in order to use the modified assembly.</p> http://stackoverflow.com/questions/1846806/nhibernate-2-1-0-4000-slower-than-2-0-1-4000-any-nh-default-setting-changed/1846853#1846853 0 Answer by Chris Conway for Nhibernate 2.1.0.4000 slower than 2.0.1.4000? Any NH default setting changed? Chris Conway 2009-12-04T13:10:20Z 2009-12-04T13:50:09Z <p>Take a look at <a href="http://nhprof.com/" rel="nofollow">NHProfiler</a> and analyze what's going on under the cover. It'll show you exactly what SQL queries are being run as a result of the save method. You can get a free trial but it's easily worth the price if you're a heavy NHibernate user. Perhaps there's some extra stuff happening because of the cascades you have?</p> http://stackoverflow.com/questions/1840349/how-can-i-get-a-session-timeout-page-to-bubble-up-out-of-an-iframe 0 How can I get a session timeout page to bubble up out of an iframe? Chris Conway 2009-12-03T14:47:51Z 2009-12-03T14:57:35Z <p>I've got a web app in asp.net that uses an Infragistics control for making tabs. Each tab is an iframe, which is nice because only the current tab's page is rendered instead of rendering all of the tabs.</p> <p>However, when a page times out within one of the iframes, only that iframe redirects to the login page instead of the whole window. Is it possible to bubble this up somehow to have the whole site redirect to the login page instead of just the iframe?</p> http://stackoverflow.com/questions/1834337/c-books-that-cover-real-world-uses/1834411#1834411 1 Answer by Chris Conway for C# books that cover 'real world' uses Chris Conway 2009-12-02T17:15:36Z 2009-12-02T17:15:36Z <p>we use collections in every day use all the time. i'm not sure there's a page in our website that doesn't use some kind of collection whether it be a simple Array, a <code>List&lt;T&gt;</code> <code>IEnumerable&lt;T&gt;</code> or whatever. I think you need to explain what you mean by "real world".</p> http://stackoverflow.com/questions/387093/add-non-gac-reference-to-project 1 Add Non-GAC reference to project Chris Conway 2008-12-22T19:22:48Z 2009-12-02T16:08:08Z <p>Every time I add a reference to a web project in visual studio 2008 that is in my GAC, it adds the reference as a GAC reference and doesn't copy the file to my bin directory. But for deployment purposes, I would like to add the reference as a non-GAC reference so it adds the dll to my bin directory. I've tried using the browse button to select the reference instead of picking from the list window, but that adds a GAC reference too.</p> <p>These references all have the .refresh file with them and there is not an option to copy local in the properties of the file.</p> <p>Any help please?!?</p> http://stackoverflow.com/questions/208493/search-all-fields-in-all-tables-for-a-specific-value-oracle 6 Search All Fields In All Tables For A Specific Value (Oracle) Chris Conway 2008-10-16T13:14:26Z 2009-11-10T18:53:37Z <p>Is it possible to search every field of every table for a particular value in Oracle? <br><br> There are hundreds of tables with thousands of rows in some tables so I know this could take a very long time to query. But the only thing I know is that a value for the field I would like to query against is '1/22/2008P09RR8'. <br><br> I've tried using this statement below to find an appropriate column based on what I think it should be named but it returned no results. <br><br></p> <p>SELECT * from dba_objects WHERE object_name like '%DTN%' <br><br><br> There is absolutely no documentation on this database and I have no idea where this field is being pulled from. <br><br> Any thoughts???</p> http://stackoverflow.com/questions/1688193/cascade-delete-multiple-levels-with-nhibernate 2 cascade delete multiple levels with nhibernate? Chris Conway 2009-11-06T15:08:14Z 2009-11-06T15:48:36Z <p>I have a hierarchy of tables 3 levels deep (QualificaionType has many QualificationGroups, which have many Qualifications) mapped like this:</p> <pre><code>// QualificationType HasMany(x =&gt; x.QualificationGroups) .Inverse() .KeyColumns.Add("QualificationGroupId") .AsBag() .Cascade.AllDeleteOrphan() .Access.CamelCaseField(Prefix.Underscore); // Qualification Group HasMany(x =&gt; x.Qualifications) .Inverse() .KeyColumns.Add("QualificationId") .AsBag() .Cascade.AllDeleteOrphan() .Access.CamelCaseField(Prefix.Underscore); </code></pre> <p>When I delete a Qualification Group, it deletes all qualifications related to it. But when I try to delete a Qualification Type, it tries to delete all related Qualification Groups but not their Qualifications.</p> <p>How can I get it to cascade all the way down so that if I delete a Type, it deletes all the Groups and all of their Qualifications? Do I need to loop through all the Groups first and delete them? It seems this should be able to be handled through mappings alone.</p> <p>FYI, I'm using Fluent NHibernate 1.0RTM and NHibernate 2.1</p> http://stackoverflow.com/questions/1688193/cascade-delete-multiple-levels-with-nhibernate/1688433#1688433 0 Answer by Chris Conway for cascade delete multiple levels with nhibernate? Chris Conway 2009-11-06T15:48:36Z 2009-11-06T15:48:36Z <p>I figured it out... mappings were incorrect.</p> <p>They should be this:</p> <pre><code>// QualificationType HasMany(x =&gt; x.QualificationGroups) .Inverse() .KeyColumn("QualificationTypeId") .AsBag() .Cascade.AllDeleteOrphan() .Access.CamelCaseField(Prefix.Underscore); // Qualification Group HasMany(x =&gt; x.Qualifications) .Inverse() .KeyColumn("QualificationGroupId") .AsBag() .Cascade.AllDeleteOrphan() .Access.CamelCaseField(Prefix.Underscore); </code></pre> <p>I had the wrong key column in each.</p> http://stackoverflow.com/questions/1682321/find-unused-stored-procedures-in-code 0 Find unused stored procedures in code? Chris Conway 2009-11-05T17:42:40Z 2009-11-05T18:56:07Z <p>Is there an easier way of cleaning up a database that has a ton of stored procedures that I'm sure there are some that aren't used anymore other than one by one search.</p> <p>I'd like to search my visual studio solution for stored procedures and see which ones from the database aren't used any longer.</p> http://stackoverflow.com/questions/445300/postback-problem-downloading-zip-file 0 Postback problem downloading zip file Chris Conway 2009-01-15T01:12:34Z 2009-11-03T05:00:03Z <p>I've got a problem on a webforms application where a user selects some criteria from dropdowns on the page and hits a button on the page which calls this method:</p> <pre><code>protected void btnSearch_Click(object sender, EventArgs e) </code></pre> <p>They then click on button to download a zip file based on the criteria which calls this method:</p> <pre><code>protected void btnDownload_Click(object sender, EventArgs e) </code></pre> <p>In IE, they are prompted with the bar at the top of the browser that tells them "To help protect your security, Internet Explorer blocked this site from downloading files to your computer". When they click on that bar to download the file, it fires the btnSearch_Click event again.</p> <p>Response.ContentType and Response.AddHeader has been set up correctly.</p> <p>The problem is, that btnSearch appends criteria so basically it is being appended twice and causing problems.</p> <p>Is there something I can do to prevent this?</p> <p>This is a vs2008 web app using c# 3.5 for what it's worth.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1615647/is-it-possible-to-map-a-composite-key-in-fluent-nhibernate-where-half-of-the-key 0 Is it possible to map a composite key in fluent nhibernate where half of the key is an identity field in the database? Chris Conway 2009-10-23T20:11:43Z 2009-10-23T20:36:59Z <p>As the question states, is it possible to map a composite key in fluent nhibernate (or non fluent i suppose) where one of the two fields used in the composite is an identity field?</p> <p>I have a table where one part of the primary key is an identity field and the other is a tenant id. This is a legacy database where the composite key is used as foreign keys all over, so modifying the database would be quite significant.</p> <p>thanks!</p> http://stackoverflow.com/questions/1412003/are-there-any-in-memory-databases-that-support-computed-columns 0 Are there any in-memory databases that support computed columns? Chris Conway 2009-09-11T16:33:46Z 2009-10-20T13:01:53Z <p>We have a SQL 2005/2008 database that has a table with a computed column. We're using the computed column as a discriminator in NHibernate so having it in the database is proving to be very useful.</p> <p>In order to gain the benefits of faster integration tests, I'd like to be able to run our integration tests against an in-memory database such as SQLite or SQL CE. But I don't think either of those support the computed column.</p> <p>Are there any other solutions to my problem? I have complete access to the database and can modify it if there's a better solution available. I've seen <a href="http://stackoverflow.com/questions/1124695/can-i-create-computed-columns-in-sqlite">this post</a> that suggests using a view instead of a computed column, is this the best alternative?</p> http://stackoverflow.com/questions/936626/how-can-i-force-a-hard-refresh-ctrlf5 2 How can I force a hard refresh (ctrl+F5)? Chris Conway 2009-06-01T20:32:24Z 2009-10-10T04:46:26Z <p>We are actively developing a website using .Net and MVC and our testers are having fits trying to get the latest stuff to test. Every time we modify the style sheet or external javascript files, testers need to do a hard refresh (ctrl+F5 in IE) in order to see the latest stuff.</p> <p>Is it possible for me to force their browsers to get the latest version of these files instead of them relying on their cached versions? We're not doing any kind of special caching from IIS or anything.</p> <p>Once this goes into production, it will be hard to tell clients that they need to hard refresh in order to see the latest changes.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1328730/integration-testing-best-practices 8 Integration Testing best practices Chris Conway 2009-08-25T14:38:49Z 2009-10-02T20:30:17Z <p>Our team has hundreds of integration tests that hit a database and verify results. I've got two base classes for all the integration tests, one for retrieve-only tests and one for create/update/delete tests. The retrieve-only base class regenerates the database during the TestFixtureSetup so it only executes once per test class. The CUD base class regenerates the database before each test. Each repository class has its own corresponding test class.</p> <p>As you can imagine, this whole thing takes quite some time (approaching 7-8 minutes to run and growing quickly). Having this run as part of our CI (CruiseControl.Net) is not a problem, but running locally takes a long time and really prohibits running them before committing code.</p> <p>My question is are there any best practices to help speed up the execution of these types of integration tests?</p> <p>I'm unable to execute them in-memory (a la sqlite) because we use some database specific functionality (computed columns, etc.) that aren't supported in sqlite.</p> <p>Also, the whole team has to be able to execute them, so running them on a local instance of SQL Server Express or something could be error prone unless the connection strings are all the same for those instances.</p> <p>How are you accomplishing this in your shop and what works well?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1505382/c-encryption-gone-wrong-part-2-please-help/1505434#1505434 0 Answer by Chris Conway for C# Encryption gone wrong part 2... please help Chris Conway 2009-10-01T17:49:29Z 2009-10-01T17:49:29Z <p>Have you looked into the <a href="http://www.bouncycastle.org/csharp/" rel="nofollow">Bouncy Castle API</a>? </p> http://stackoverflow.com/questions/1505363/deploying-asp-net-mvc-application-in-visual-studio-2008/1505406#1505406 1 Answer by Chris Conway for Deploying ASP.NET MVC application in Visual Studio 2008 Chris Conway 2009-10-01T17:44:32Z 2009-10-01T17:44:32Z <p>Best practice is definitely to have a build script that automates the building, testing and deployment process so all you have to do is run a batch file or command to run the whole thing. We do that very successfully here using NAnt to build, test, check code coverage and deploy to test environment and production environment. </p> <p>It saves an incredible amount of time not having to remember what files need copied, where they go and what configuration changes need made once deployed.</p> http://stackoverflow.com/questions/503310/how-do-you-map-an-enum-as-string-in-fluent-nhibernate 2 How do you map an enum as string in fluent nhibernate? Chris Conway 2009-02-02T14:08:55Z 2009-09-25T00:19:19Z <p>Is it possible to map an enum as a string using Fluent Nhibernate?</p> http://stackoverflow.com/questions/32100/what-is-the-simplest-sql-query-to-find-the-second-largest-value/32114#32114 0 Answer by Chris Conway for What is the simplest SQL Query to find the second largest value? Chris Conway 2008-08-28T12:44:49Z 2009-09-16T00:18:25Z <pre><code>select top 1 MyIntColumn from MyTable where MyIntColumn &lt;&gt; (select top 1 MyIntColumn from MyTable order by MyIntColumn desc) order by MyIntColumn desc </code></pre> http://stackoverflow.com/questions/34403/is-there-a-good-ide-for-sqlite 15 Is there a good IDE for SQLite ? Chris Conway 2008-08-29T14:57:01Z 2009-09-10T16:54:24Z <p>Is there a tool out there that can interact with a SQLite database in a similar way that TOAD works with Oracle or Management Studio works with SQL Server? </p> <p>I'm looking for something that visually shows table structures, views, etc.</p> <p>Looking to target the Windows platform (preferably Vista).</p> <p>Thanks!</p> http://stackoverflow.com/questions/688222/add-background-color-and-border-to-table-row-on-hover-using-jquery 0 Add background color and border to table row on hover using jquery Chris Conway 2009-03-27T01:47:48Z 2009-09-05T13:36:44Z <p>Does anyone know of a way to add a border to a table row with a different background color when the mouse hovers over the row?</p> <p>I've been able to change the background color of the row with this:</p> <pre><code>$(document).ready(function() { $(function() { $('.actionRow').hover(function() { $(this).css('background-color', '#FFFF99'); }, function() { $(this).css('background-color', '#FFFFFF'); }); }); }); </code></pre> <p>But I'm unable to add a border color. I realize borders can't be directly applied to a table row tag, but I'm hoping someone know some jQuery voodoo magic that can find the table cells within the selected row and apply some styles to those to create the border.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1362429/linq-to-xml-read-hibernate-file 0 linq to xml - read hibernate file Chris Conway 2009-09-01T13:15:45Z 2009-09-01T13:31:38Z <p>How can I get the connection.connection_string value from the following hibernate xml file using linq?</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;hibernate-configuration xmlns="urn:nhibernate-configuration-2.2"&gt; &lt;session-factory&gt; &lt;property name="connection.provider"&gt;NHibernate.Connection.DriverConnectionProvider&lt;/property&gt; &lt;property name="dialect"&gt;NHibernate.Dialect.MsSqlCeDialect&lt;/property&gt; &lt;property name="connection.driver_class"&gt;NHibernate.Driver.SqlServerCeDriver&lt;/property&gt; &lt;property name="connection.connection_string"&gt;Data Source=temp.sdf&lt;/property&gt; &lt;property name="connection.release_mode"&gt;auto&lt;/property&gt; &lt;property name="show_sql"&gt;false&lt;/property&gt; &lt;property name="adonet.batch_size"&gt;500&lt;/property&gt; &lt;property name="cache.provider_class"&gt;NHibernate.Caches.SysCache2.SysCacheProvider, NHibernate.Caches.SysCache2&lt;/property&gt; &lt;property name="cache.use_query_cache"&gt;true&lt;/property&gt; &lt;property name="proxyfactory.factory_class"&gt;NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle&lt;/property&gt; &lt;/session-factory&gt; &lt;/hibernate-configuration&gt; </code></pre> <p>Thank you!</p> http://stackoverflow.com/questions/1338517/how-can-i-write-xml-with-a-namespace-and-prefix-with-xelement 0 How can I write xml with a namespace and prefix with XElement? Chris Conway 2009-08-27T02:12:01Z 2009-08-27T02:27:55Z <p>This may be a beginner xml question, but how can I generate an xml document that looks like the following?</p> <pre><code>&lt;root xmlns:ci="http://somewhere.com" xmlns:ca="http://somewhereelse.com"&gt; &lt;ci:field1&gt;test&lt;/ci:field1&gt; &lt;ca:field2&gt;another test&lt;/ca:field2&gt; &lt;/root&gt; </code></pre> <p>If I can get this to be written, I can get the rest of my problem to work.</p> <p>Ideally, I'd like to use LINQ to XML (XElement, XNamespace, etc.) with c#, but if this can be accomplished easier/better with XmlDocuments and XmlElements, I'd go with that.</p> <p>Thanks!!!</p> http://stackoverflow.com/questions/1307126/help-me-test-a-one-to-many-realtionship-with-nhibernate-and-nunit/1307169#1307169 0 Answer by Chris Conway for Help me test a one-to-many realtionship with NHibernate and NUnit. Chris Conway 2009-08-20T15:59:07Z 2009-08-20T15:59:07Z <p>did you try setting Lazy="false" in your mapping? <a href="http://code-redefined.blogspot.com/2007/07/hibernate-lazy-fetch-problems-could-not.html" rel="nofollow">http://code-redefined.blogspot.com/2007/07/hibernate-lazy-fetch-problems-could-not.html</a></p> http://stackoverflow.com/questions/1275725/restrictions-disjunction-between-condition-a-and-condition-b-or-condition-c-and 1 Restrictions.Disjunction() between condition a AND condition b OR condition c AND condition d Chris Conway 2009-08-14T02:20:59Z 2009-08-14T05:23:05Z <p>How can I create a disjunction in NHibernate that would accomplish the following sql:</p> <blockquote> <p>Select * from MyTable<br> Where (conditionA = true AND conditionB = true) <br> OR (conditionC = true AND conditionD = true)</p> </blockquote> <p>From what I've seen, the Disjuntion() takes single criterions and "ORs" them together. Is it possible to group to criterion together and "OR" it against another pair of criterion?</p> <p>I hope this question is clear enough.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1019833/how-can-i-mock-elmahs-errorsignal-routine 0 How can I mock Elmah's ErrorSignal routine? Chris Conway 2009-06-19T20:10:53Z 2009-08-11T20:22:55Z <p>We're using ELMAH for handling errors in our ASP.Net MVC c# application and in our caught exceptions, we're doing something like this:</p> <pre><code>ErrorSignal.FromCurrentContext().Raise(exception); </code></pre> <p>but when I try to unit test the caught exceptions, I get this message:</p> <p>System.ArgumentNullException: Value cannot be null.<br> Parameter name: context</p> <p>How can I mock the FromCurrentContext() call? Is there something else I should be doing instead?</p> <p>FYI... We're currently using Moq and RhinoMocks.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1230781/how-do-i-bind-a-list-of-objects-with-composite-key-to-a-checkbox-list 0 How do I bind a list of objects with composite-key to a checkbox list? Chris Conway 2009-08-05T01:44:39Z 2009-08-05T13:11:02Z <p>I have a list of objects that contain a composite key because of the legacy database that supports multi-tenancy. How can I then bind that list to a checkbox list in asp.net? We're currently using c# 3.5.</p> <p>Here's the class:</p> <pre><code>public class SiteKey { public int Id { get; set; } public int CustomerId { get; set; } } public class Order { public SiteKey Key { get; set; } public string Name { get; set; } } </code></pre> <p>My repository returns an <code>IList&lt;Order&gt;</code> that I want to then bind to a checkbox list. This code:</p> <pre><code>chkList.DataValueField = "Key"; chkList.DataTextField = "Name"; </code></pre> <p>displays properly, but the value (<code>chkList.Items[0].Value</code>) coming back simply contains "MyAssemblyName.SiteKey" and not the key.</p> <p>How can I effectively accomplish this?</p> <p>Thanks!</p> http://stackoverflow.com/questions/398378/get-last-10-lines-of-very-large-text-file-10gb-c 13 Get last 10 lines of very large text file > 10GB c# Chris Conway 2008-12-29T19:16:08Z 2009-07-31T16:24:49Z <p>What is the most efficient way to display the last 10 lines of a very large text file (this particular file is over 10GB). I was thinking of just writing a simple c# app but I'm not sure how to do this effectively.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1863884/which-orm-supports-this/1863905#1863905 Comment by Chris Conway on Which ORM Supports this Chris Conway 2009-12-12T13:36:12Z 2009-12-12T13:36:12Z Kevin's answer nailed it. http://stackoverflow.com/questions/1863884/which-orm-supports-this/1863925#1863925 Comment by Chris Conway on Which ORM Supports this Chris Conway 2009-12-12T13:35:33Z 2009-12-12T13:35:33Z I totally agree with this. The ICriteria was designed specifically for this type of scenario, dynamic queries defined at runtime. http://stackoverflow.com/questions/1857579/how-hard-is-it-to-tamper-with-a-strong-named-assembly/1857604#1857604 Comment by Chris Conway on How hard is it to tamper with a strong named assembly? Chris Conway 2009-12-07T13:29:01Z 2009-12-07T13:29:01Z Sorry, that is what I meant. They would use the sn.exe with the the -Vr option to bypass the strong name requirement. http://stackoverflow.com/questions/1774313/nhibernate-no-class-mappings Comment by Chris Conway on Nhibernate - No Class Mappings! Chris Conway 2009-11-21T02:37:38Z 2009-11-21T02:37:38Z what does your nhibernate.config (or hibernate.cfg.xml) file look like? http://stackoverflow.com/questions/1712575/asynchronous-queries-in-a-web-app-using-nhibernate Comment by Chris Conway on Asynchronous queries in a web app, using NHibernate Chris Conway 2009-11-11T15:58:05Z 2009-11-11T15:58:05Z I'm having this same issue. The NHibernate ISession is stored in the HttpContext which isn't available in asynchronous methods. Is there a way around this? http://stackoverflow.com/questions/1678045/how-do-i-get-started-with-unit-testing-total-n00b-question-thoughts/1678116#1678116 Comment by Chris Conway on How do I get started with Unit Testing? Total n00b question, thoughts? Chris Conway 2009-11-05T04:23:47Z 2009-11-05T04:23:47Z just about anything roy osherove does with unit testing is gold! http://stackoverflow.com/questions/208493/search-all-fields-in-all-tables-for-a-specific-value-oracle/1332894#1332894 Comment by Chris Conway on Search All Fields In All Tables For A Specific Value (Oracle) Chris Conway 2009-10-08T18:48:20Z 2009-10-08T18:48:20Z were you typing with your forehead? http://stackoverflow.com/questions/1522422/how-to-develop-a-standard-c-vs-vb-net/1522638#1522638 Comment by Chris Conway on How to develop a standard (C# vs. VB.NET) Chris Conway 2009-10-06T13:23:34Z 2009-10-06T13:23:34Z If you were coding your application in Notepad, then yes, the verbosity of VB.Net gets annoying quickly. With Visual Studio, Intellisense and ReSharper (if you've got it), the language verbosity is a non issue as far as I'm concerned. FYI, I'm a c# developer. http://stackoverflow.com/questions/1522422/how-to-develop-a-standard-c-vs-vb-net Comment by Chris Conway on How to develop a standard (C# vs. VB.NET) Chris Conway 2009-10-06T13:18:06Z 2009-10-06T13:18:06Z how big is your shop? if it's 3 out of 6 that specialize in c#, it'd be relatively easy to switch over. if it's 3 out 30, that would be harder to get going in c#. http://stackoverflow.com/questions/1362429/linq-to-xml-read-hibernate-file/1362505#1362505 Comment by Chris Conway on linq to xml - read hibernate file Chris Conway 2009-09-01T13:39:50Z 2009-09-01T13:39:50Z Worked beautifully! Thanks! http://stackoverflow.com/questions/1331781/good-polished-web-sites-for-business-apps-for-inspiration/1331803#1331803 Comment by Chris Conway on Good polished web sites for business apps for inspiration? Chris Conway 2009-08-26T01:00:04Z 2009-08-26T01:00:04Z Basecamp is an excellent app by 37 signals and an inspiration to any web app http://stackoverflow.com/questions/1328730/integration-testing-best-practices/1328886#1328886 Comment by Chris Conway on Integration Testing best practices Chris Conway 2009-08-25T15:13:03Z 2009-08-25T15:13:03Z i like the idea of that, for sure! http://stackoverflow.com/questions/1307126/help-me-test-a-one-to-many-realtionship-with-nhibernate-and-nunit/1307169#1307169 Comment by Chris Conway on Help me test a one-to-many realtionship with NHibernate and NUnit. Chris Conway 2009-08-20T16:03:24Z 2009-08-20T16:03:24Z Also check the unit of work you're dealing with... if each access is wrapped in it's own transaction, you could be getting the No Session error. See this for an example: <a href="http://stackoverflow.com/questions/345705/hibernate-lazyinitializationexception-could-not-initialize-proxy" rel="nofollow" title="hibernate lazyinitializationexception could not initialize proxy">stackoverflow.com/questions/345705/&hellip;</a> http://stackoverflow.com/questions/1275725/restrictions-disjunction-between-condition-a-and-condition-b-or-condition-c-and/1275892#1275892 Comment by Chris Conway on Restrictions.Disjunction() between condition a AND condition b OR condition c AND condition d Chris Conway 2009-08-14T14:28:15Z 2009-08-14T14:28:15Z I ended up doing it completely differently from this because of the dynamic nature of my query builder, but this does answer the question as stated. Thanks! I used the operator overload features of nhibernate to create an AbstractCriterion and then added all the abstractcriterion to a Restrictions.Disjunction(). http://stackoverflow.com/questions/1230781/how-do-i-bind-a-list-of-objects-with-composite-key-to-a-checkbox-list/1230849#1230849 Comment by Chris Conway on How do I bind a list of objects with composite-key to a checkbox list? Chris Conway 2009-08-05T02:46:04Z 2009-08-05T02:46:04Z worked like a charm. many thanks!