User Andrew Bullock - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T07:05:43Z http://stackoverflow.com/feeds/user/28543 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1835050/storing-an-ordered-child-collection-in-nhibernate 0 Storing an ordered child collection in NHibernate Andrew Bullock 2009-12-02T18:57:42Z 2009-12-02T23:53:30Z <p>I'm having trouble getting my head around the way I should implement an ordered child relationship with NH.</p> <p>In the code world, I have:</p> <pre><code>class Parent { public Guid Id; public IList&lt;Child&gt; Children; } class Child { public Guid Id; public Parent Parent; } </code></pre> <p>A <code>Parent</code> has a list of <code>Child[ren]</code> with an order. In reality, the <code>Children</code> collection will contain unique <code>Child</code>s which will be enforced by other code (i.e. it will never be possible to add the same child to the collection twice - so i dont <em>really care</em> if the NH collection enforces this)</p> <p>How should I implement the mappings for both classes?</p> <p>From my understanding:</p> <ul> <li><code>Bags</code> have no order, so i dont want this</li> <li><code>Sets</code> have no order, but i could use <code>order-by</code> to do some sql ordering, but what do i order by? I can't rely on a sequential ID. so i dont want this?</li> <li><code>Lists</code> are a duplicate-free collection, where the unique-key is the <code>PK</code> and the <code>index</code> column, so i do want this?</li> </ul> <p>So, using a <code>list</code>, i have the following:</p> <pre><code>&lt;list cascade="all-delete-orphan" inverse="true" name="Children"&gt; &lt;key&gt; &lt;column name="Parent_id" /&gt; &lt;/key&gt; &lt;index&gt; &lt;column name="SortOrder" /&gt; &lt;/index&gt; &lt;one-to-many class="Child" /&gt; &lt;/list&gt; </code></pre> <p>When I insert a parent which a child on it, i see the following SQL:</p> <pre><code>Insert into Child (id, Parent_id) values (@p0, @p1) </code></pre> <p>I.e, why doesn't it insert the SortOrder?</p> <p>If I do a <code>SchemaExport</code> the SortOrder column is created on the Child table.</p> <p>:(</p> <p>If I set <code>Inverse="false"</code> on the relationship, i see the same SQL as above, followed by:</p> <pre><code>UPDATE "Child" SET Parent_id = @p0, SortOrder = @p1 WHERE Id = @p2 </code></pre> <p>Why does it still <code>INSERT</code> the Parent_id with <code>inverse="false"</code> and why doesn't it insert the SortOrder with <code>inverse="true"</code>?</p> <p>Am I approaching this totally wrong?</p> <p>Is it also true that assuming this was working, if I were to do:</p> <pre><code>parentInstance.Children.Remove(parentInstance.Children[0]); </code></pre> <p>save the parent and reload it, that the <code>list</code> would have a null in position 0, instead of shuffling the rest up?</p> <p>Thanks</p> http://stackoverflow.com/questions/1826407/c-user-controls-access-controls-properties/1826420#1826420 2 Answer by Andrew Bullock for C# User Controls: access controls properties Andrew Bullock 2009-12-01T14:11:13Z 2009-12-01T14:11:13Z <p>you want something like this on your usercontrol</p> <pre><code>public string textBoxValue { get { return this.myTextBoxId.Text; } set { this.myTextBoxId.Text = value; } } </code></pre> http://stackoverflow.com/questions/1679952/input-typesubmit-text-vertical-alignment-in-firefox 0 input type=submit text vertical alignment in FireFox Andrew Bullock 2009-11-05T11:30:40Z 2009-11-21T10:52:25Z <p>I'm trying to style my form buttons and I'm experiencing a problem in FireFox that I can't get to the bottom of...</p> <p>I want to style certain <code>&lt;a /&gt;</code>s and <code>&lt;input type="submit" /&gt;</code>s to look the same (I have a button background image, using a sliding-doors technique to apply a hover effect.)</p> <p>This all works great, except in FireFox, the input submit text is slightly lower down than it should be. IE and Safari/Chrome work fine.</p> <p><img src="http://blog.muonlab.com/wp-content/uploads/2009/11/b0rked-buttons.png" alt="alt text"></p> <p>Anyone got any ideas?</p> <p>Thanks</p> <pre><code>&lt;div class="buttons"&gt; &lt;a href="#" class="button btn-small-grey"&gt;&amp;laquo Back&lt;/a&gt; &lt;input type="submit" class="button btn-large-green" value="Save changes" /&gt; &lt;/div&gt; .button { cursor: pointer; border: 0; background-color: #fff; color: #fff; font-size: 1.4em; font-weight: bold; outline: 0; font-family: Arial, Verdana, Sans-Serif; } a.button { display: block; float: left; text-align: center; text-decoration: none; padding: 5px 0 0 0; height: 22px; margin-right: 1em; } .btn-small-grey { height: 27px; width: 96px; background-position: 0 -81px; background-image: url(/assets/images/buttons/buttons-small.gif); } .btn-large-green { height: 27px; width: 175px; background-position: 0px -54px; background-image: url(/assets/images/buttons/buttons-large.gif); } </code></pre> http://stackoverflow.com/questions/472951/how-do-i-print-an-iframe-from-javascript-in-safari-chrome 1 How do I print an IFrame from javascript in Safari/Chrome Andrew Bullock 2009-01-23T13:53:08Z 2009-11-20T15:57:15Z <p>Hi,</p> <p>Can someone please help me out with printing the contents of an IFrame via a javascript call in Safari/Chrome.</p> <p>This works in firefox:</p> <pre><code>$('#' + id)[0].focus(); $('#' + id)[0].contentWindow.print(); </code></pre> <p>this works in IE:</p> <pre><code>window.frames[id].focus(); window.frames[id].print(); </code></pre> <p>But I can't get anything to work in Safari/Chrome.</p> <p>Thanks</p> <p>Andrew</p> http://stackoverflow.com/questions/1483799/nhibernate-search-projection-returning-null-values 1 NHibernate search projection returning null values Andrew Bullock 2009-09-27T15:38:23Z 2009-11-17T15:00:03Z <p>I have a property on an indexed object:</p> <pre><code>[Field(Index = Index.Tokenized, Store = Store.Yes)] public string SearchableContent { get; protected set; } </code></pre> <p>If i examine my index with Luke I see this field, and the stored data, all is good :)</p> <p>The following query works fine, returning exactly the objects i expect (cross referencing with a query inside Luke)</p> <pre><code>var parser = new QueryParser("SearchableContent", new StandardAnalyzer()); var query = parser.Parse(search); var textQuery = fullTextSession.CreateFullTextQuery(query, typeof(ClassWithSearchableContentPropertyOnIt)); var results = textQuery.List(); </code></pre> <p>however, if i add:</p> <pre><code>textQuery.SetProjection("Id", "SearchableContent"); </code></pre> <p>before I call <code>.List()</code>, I get a list of <code>object[]</code>s returned, as I'd expect, but...</p> <p><code>[0]</code> contains the correct id (as per <code>"Id"</code>), but [1] - <code>"SearchableContent"</code> is always null, despite the data being present in the index.</p> <p>What am I doing wrong?</p> <p><b>Update:</b></p> <p>If I do:</p> <pre><code>textQuery.SetProjection("Id", "SearchableContent", ProjectionConstants.DOCUMENT); </code></pre> <p>Then both object[0] are [1] are populated with the data i expect, and [2] with the document.</p> http://stackoverflow.com/questions/1717444/combining-two-lamba-expressions-in-c 6 combining two lamba expressions in c# Andrew Bullock 2009-11-11T19:20:25Z 2009-11-12T19:05:44Z <p>Given a class structure like this:</p> <pre><code>public class GrandParent { public Parent Parent { get; set;} } public class Parent { public Child Child { get; set;} } public class Child { public string Name { get; set;} } </code></pre> <p>and the following method signature:</p> <pre><code>Expression&lt;Func&lt;TOuter, TInner&gt;&gt; Combine (Expression&lt;Func&lt;TOuter, TMiddle&gt;&gt;&gt; first, Expression&lt;Func&lt;TMiddle, TInner&gt;&gt; second); </code></pre> <p>How can I implement said method so that I can call it like this:</p> <pre><code>Expression&lt;Func&lt;GrandParent, Parent&gt;&gt;&gt; myFirst = gp =&gt; gp.Parent; Expression&lt;Func&lt;Parent, string&gt;&gt; mySecond = p =&gt; p.Child.Name; Expression&lt;Func&lt;GrandParent, string&gt;&gt; output = Combine(myFirst, mySecond); </code></pre> <p>such that output ends up as:</p> <pre><code>gp =&gt; gp.Parent.Child.Name </code></pre> <p>Is this possible?</p> <p>The contents of each Func will only ever be a <code>MemberAccess</code>. I'd rather not end up with <code>output</code> being a nested function call.</p> <p>Thanks</p> http://stackoverflow.com/questions/536932/how-to-create-expression-tree-lambda-for-a-deep-property-from-a-string 2 how to create expression tree / lambda for a deep property from a string Andrew Bullock 2009-02-11T14:07:13Z 2009-11-12T15:55:53Z <p>Hi,</p> <p>Given a string: "Person.Address.Postcode" I want to be able to get/set this postcode property on an instance of Person. How can I do this? My idea was to split the string by "." and then iterate over the parts, looking for the property on the previous type, then build up an expression tree that would look something like (apologies for the pseudo syntax):</p> <pre><code>(person =&gt; person.Address) address =&gt; address.Postcode </code></pre> <p>I'm having real trouble acutally creating the expression tree though! If this is the best way, can someone suggest how to go about it, or is there an easier alternative?</p> <p>Thanks</p> <p>Andrew</p> <pre><code>public class Person { public int Age { get; set; } public string Name { get; set; } public Address Address{ get; set; } public Person() { Address = new Address(); } } public class Address { public string Postcode { get; set; } } </code></pre> http://stackoverflow.com/questions/1460469/assembly-getexportedtypes-throws-filenotfoundexception/1722877#1722877 0 Answer by Andrew Bullock for .Assembly / GetExportedTypes throws FileNotFoundException Andrew Bullock 2009-11-12T15:09:53Z 2009-11-12T15:09:53Z <p>This doesn't exactly answer your question, but I just had a related problem to this and I thought I'd post some info to help others who may stumble across this as I did!</p> <p><code>Assembly</code> has </p> <pre><code>.LoadFile(string path) </code></pre> <p>and </p> <pre><code>.LoadFrom(string path) </code></pre> <p><code>LoadFile</code> will throw a <code>FileNotFoundException</code> if loading the assembly from some remote (not the same as the executing dll) folder. You need to use <code>LoadFrom</code> as you do above ;)</p> http://stackoverflow.com/questions/367178/usage-of-ioc-containers-specifically-windsor 5 Usage of IoC Containers; specifically Windsor Andrew Bullock 2008-12-14T23:52:08Z 2009-11-09T01:29:26Z <p>I think the answer to this question is so obivous that noone has bothered writing about this, but its late and I really can't get my head around this.</p> <p>I've been reading into IoC containers (Windsor in this case) and I'm missing how you talk to the container from the various parts of your code.</p> <p>I get DI, I've been doing poor mans DI (empty constructors calling overloaded injection constructors with default parameter implementations) for some time and I can completely see the benefit of the container. However, Im missing one vital piece of info; how are you supposed to reference the container every time you need a service from it?</p> <p>Do I create a single global insance which I pass around? Surely not!</p> <p>I know I should call this:</p> <pre><code>WindsorContainer container = new WindsorContainer(new XmlInterpreter()); </code></pre> <p>(for example) when I want to load my XML config, but then what do I do with container? Does creating a new container every time thereafter persist the loaded config through some internal static majicks or otherwise, or do I have to reload the config every time (i guess not, or lifecycles couldnt work).</p> <p>Failing to understand this is preventing me from working out how the lifecycles work, and getting on with using some IoC awsomeness</p> <p>Thanks,</p> <p>Andrew</p> http://stackoverflow.com/questions/1684276/invoking-delegate-with-generics-arguments-in-c 1 invoking delegate with generics arguments in c# Andrew Bullock 2009-11-05T23:03:17Z 2009-11-05T23:59:21Z <p>I have a class:</p> <pre><code>public class MyClass&lt;T&gt; { public string TestProperty { get; set; } } </code></pre> <p>and I want to create a delegate to run on instances of this class, such as:</p> <pre><code>Action&lt;MyClass&lt;object&gt;&gt; myDelegate = myclass =&gt; myclass.TestProperty = "hello"; </code></pre> <p>However, the above delegate can't be invoked with anything other than a <code>MyClass&lt;object&gt;</code>, such as <code>MyClass&lt;DateTime&gt;</code> or <code>MyClass&lt;string&gt;</code>.</p> <p>How can I either define the delegate, or modify the delegate so that I can execute the delegate on a <code>MyClass&lt;T&gt;</code> where <code>T</code> is anything which extends <code>object</code>?</p> <p><strong>Edit:</strong> This <em>can</em> wait until C# 4 if thats when this becomes possible (if so, please still tell me how) although i'd prefer to get on with it now in 3.5</p> <p><strong>Edit:</strong> I actually also have a 2nd class:</p> <pre><code>public class MyDerivedClass&lt;T1, T2&gt; : MyClass&lt;T1&gt; { public int OtherProp { get; set; } } </code></pre> <p>Ideally id like to use the following syntax to define some delegates:</p> <pre><code>CreateDelegate&lt;MyClass&lt;object&gt;&gt;(mc =&gt; mc.TestProperty = "hello"); CreateDelegate&lt;MyDerivedClass&lt;object, object&gt;&gt;(mc =&gt; mc.OtherProp = 4); </code></pre> <p>Then given an object, id like to see which delegate arguments match, and then run them</p> <p>Is this possible? What alternatives do I have to create such delegates?</p> <p>Thanks</p> http://stackoverflow.com/questions/1660921/smtp-relaying-in-c 0 SMTP relaying in C#? Andrew Bullock 2009-11-02T12:08:10Z 2009-11-02T14:13:11Z <p>I need to create a Windows service that can listen for <a href="http://en.wikipedia.org/wiki/Simple%5FMail%5FTransfer%5FProtocol" rel="nofollow">SMTP</a>.</p> <p>When it receives an email I need to process it, and then forward it to my real SMTP server for sending proper.</p> <p>Can anyone point me at any <em>useful</em> source code, libraries or tutorials on how I can get started doing this?</p> <p>Seems like all I need is a simple TCP listener and message parser, then I can simply resend the message with the .NET SmtpClient API?</p> http://stackoverflow.com/questions/309101/how-do-i-get-a-gridview-to-render-thead 3 How do i get a gridview to render <thead> Andrew Bullock 2008-11-21T15:27:39Z 2009-10-29T20:19:39Z <p>Hi,</p> <p>I've done this before but I can't remember the properties i need to set. How do i get the gridview control to render the &lt;thead&gt; (and &lt;tbody if possible)? I know .UseAccessibleHeaders makes it put THs instead of TDs, but i cant get the thead to appear!</p> <p>Thanks</p> http://stackoverflow.com/questions/1631060/jquery-plugin-default-option-modification-once-applied 0 jquery plugin default option modification once applied Andrew Bullock 2009-10-27T14:07:41Z 2009-10-27T15:37:28Z <p>Hi,</p> <p>Take the following example plugin:</p> <pre><code>(function($) { $.fn.alertOnClick = function(text) { return this.each(function(){ $(this).click(alert(text)); }); } })(jQuery); </code></pre> <p>that I might use like this:</p> <pre><code>$('p').alertOnClick("this is a silly plugin"); </code></pre> <p>How do I modify the plugin code to support doing the following:</p> <pre><code>$('p').alertOnClick("this is a silly plugin"); $('p#someSpecificP').setAlertText("different alert text"); </code></pre> <p>this would have the effect that all <code>p</code>'s when clicked should display <code>"this is a silly plugin"</code> <em>except</em> the <code>p</code> with id <code>"someSpecificP"</code> which would display <code>"different alert text"</code>.</p> <p>This example is obviously not my real code, but serves as an analogy. I have a plugin applied to many elements with defaults. During the life of the page, I may want to change some of the default settings for individual elements with the plugin applied to them, but not all.</p> <p>Thanks</p> http://stackoverflow.com/questions/1631060/jquery-plugin-default-option-modification-once-applied/1631680#1631680 1 Answer by Andrew Bullock for jquery plugin default option modification once applied Andrew Bullock 2009-10-27T15:37:28Z 2009-10-27T15:37:28Z <p>solved it with <code>data()</code>, not sure if thats the best approach though...</p> <pre><code>(function($) { $.fn.alertOnClick = function(text) { return this.each(function(){ $(this).data('alertText', text).click(function(){ alert($(this).data('alertText')); }); }); } $.fn.setAlertText = function(text) { return this.data('alertText', text); } })(jQuery); </code></pre> http://stackoverflow.com/questions/381485/nhibernate-efficiency 6 NHibernate efficiency Andrew Bullock 2008-12-19T16:43:26Z 2009-10-16T14:21:02Z <p>Having fallen behind in the world of ORM and modern data access, I'm looking to move away from DataSets (<em>shudder</em>) and into a proper mapping framework.</p> <p>I've just about got my head around Linq to SQL, an I'm now looking into NHibernate with the view to using it in our next project.</p> <p>With old school sql and data sets, your sql queries obviously only return the data you want. I also understand that L2S is also clever enough to evaluate its where clauses so that it only ever returns the objects you requested. Is NHibernate the same? And is it the same with Ayende's Linq to NHibernate?</p> <p>By this i mean, if i do the equivalent of:</p> <pre><code>Select * from customers where name = "fred" </code></pre> <p>will it fetch every customer into memory, and then filter out the non-freds, or is it clever enough to only get what it needs in the first place?</p> <p>If it is intelligent, what are the caveats? Are there certains types of query which cannot be evaluated in this way? What performance issues do i need to be aware of?</p> <p>Thanks</p> <p>Andrew</p> http://stackoverflow.com/questions/1567610/browser-textbox-autocomplete-event-when-does-this-happen 2 browser textbox autocomplete event, when does this happen? Andrew Bullock 2009-10-14T16:54:33Z 2009-10-14T17:07:46Z <p>If i <strong>dont</strong> put <code>autocomplete="off"</code> on my <code>&lt;input type="text" /&gt;</code>s the browser will sometimes fill them in with likely/remembered data.</p> <p>When does this happen in the DOM-load-lifecycle? </p> <p>It appears to be after:</p> <pre><code>$(function(){ alert('i happen before autocomplete'); }); </code></pre> <p>Is there a dom-load event which occurs after form-autocompletion? </p> <p>If so, what is it?</p> <p>If not, meh, what can I do to execute some JS "on page load", but after autocompletion?</p> <p>Solutions needs to be cross browser</p> <p>Thanks</p> <p>Andrew</p> http://stackoverflow.com/questions/1537412/managing-site-deployments-between-demo-staging-live-on-production-servers 2 Managing site deployments between demo/staging/live on production servers Andrew Bullock 2009-10-08T12:08:26Z 2009-10-13T07:40:47Z <p>The way we currently manage site roll outs to the server and then switching sites between demo/acc/live "mode" is a bit hap-hazard and i'm looking to improve the whole process.</p> <p>I've been reviewing automated deployment tools, but also the way the server is structured. I'll save the automated deployment questions for another post, here i'm interested in how people organise code on their production servers.</p> <p>We currently have 3 top level folders on the data drive, "demo", "acceptance" and "live". There's tenuous differences between what classifies something as "demo" or "acc" which i won't go into, suffice to say i want to be rid of all argument/ambiguity.</p> <p>Our rollout procedure is as follows, once a site is developed, roll it out under an "acceptance" host header such as <code>acceptance.project-domain.com</code> under the "acceptance" folder. The client reviews the site, we give it a test to make sure all connection strings/permissions etc are correct. The client gives the OK to go live. At this point, we completely re-roll out the site under the "live" folder and give it the live host header. of course at this point the site is totally untested in its deployed state (not talking about unit tests here, i mean file permissions, iis setup mistakes etc). The site then has to be re-tested :(</p> <p>I think a structure something like this, would be much better:</p> <pre><code>/&lt;customer&gt;/&lt;project&gt;/&lt;fullversion&gt;/wwwroot </code></pre> <p>This way, a new site can be rolled out to a <code>version1</code> folder under an "acc" host header. If the client gives the OK, you simply switch the headers and youre away. If there are change requsts, they go under a <code>v1.1</code> which can have the acceptance header, once it gets the ok, swap the headers and youre good. Rinse and repeat.</p> <p>This process would also be much easier to manage for an automated deployment script. Having all the code for a site under a single parent folder means upload permissions can be restricted to a single site, so you cant accidentally overwrite another site's code, its much easier to keep a track of what versions there are on the server, the project management wiki can easily be maintained... the list goes on!</p> <p>What are your methods of code organisation and rollout management?</p> http://stackoverflow.com/questions/1530685/html-sup-tag-affecting-line-height-how-to-make-it-consistent 1 HTML <sup /> tag affecting line height, how to make it consistent? Andrew Bullock 2009-10-07T10:11:56Z 2009-10-07T10:42:09Z <p>If I have a <code>&lt;sup /&gt;</code> tag in a multi-line <code>&lt;p /&gt;</code> tag, the line with the superscript on it has a larger line spacing above it than the other lines, irregardless of what line-height I put on the <code>&lt;p /&gt;</code>.</p> <p><b>Edit for clarification</b>: I don't mean i have lots of <code>&lt;p /&gt;</code>s, each which is on a single line. I have a single <code>&lt;p /&gt;</code> with enough content in it to cause wrapping onto multiple lines. Somewhere (anywhere) in the text there may be a <code>&lt;sup&gt;</code> or <code>&lt;sub&gt;</code>. This affects the line height for that line by adding extra spacing above/below. If I set a larger line-height on the <code>&lt;p /&gt;</code> this makes no difference to the problem. The line-height is increased, but the extra spacing still remains.</p> <p>How can I make it consistent - i.e. all lines have the same spacing whether they contain a <code>&lt;sup /&gt;</code> or not?</p> <p>Your solutions must be cross-browser (IE 6+, FF, safari, opera, chrome)</p> <p>Thanks</p> <p>Andrew</p> http://stackoverflow.com/questions/755465/do-you-say-no-to-c-regions/755482#755482 75 Answer by Andrew Bullock for Do you say No to C# Regions? Andrew Bullock 2009-04-16T10:16:16Z 2009-10-06T09:31:39Z <p>Absolutely an unresounding yes.</p> <p>Its a little known fact that regions were actually added to the C# language by Satan himself.</p> <p>Edit: The only excuse for using them is to hide designer generated code. Using them to group methods/properties by protection level is the most infuriating thing, ever! It achieves absolutely nothing but confusion. If you have THAT MUCH code in a single file, you need to refactor. SRP anyone?</p> http://stackoverflow.com/questions/1505823/visual-studio-2008-crazy-debugger-skipping 1 visual studio 2008 crazy debugger skipping! Andrew Bullock 2009-10-01T19:00:35Z 2009-10-01T19:28:06Z <p>Hi</p> <p>What the hell could be causing this....</p> <p>I'm developing my C# 3.5 ASP.NET MVC web app, same as I do all day every day. Not doing anything clever, just standard methods on classes calling other methods...</p> <p>I build my project, fire up a url in Chrome, and get the response I expect. I attach the debugger to w3wp.exe, set a breakpoint and f5 in Chrome. The debugger stops at the breakpoint as I'd expect....</p> <p>I hit f11 to step through the code, and it will move to the next line/part line, do it a few times and it will randomly skip to an arbitrary line in the execution path!!!</p> <p>The line it skips to is a line that would have been executed, it doesn't skip to any old line, it just decides to miss out a whole bunch of lines in between??!!!</p> <p>I've never seen this before, how the hell do I debug what's going on???</p> <p>For a while I thought perhaps Chrome is making two requests, and the debugger isnt really skipping, its just swapping between request threads making it look like its jumping about, but thats not it! If i set a breakpoint on every single line i can partially prevent it, but take the following:</p> <pre><code>1. public string Method() 2. { 3. string s; 4. s = OtherMethod(); 5. return s; 6. 7. } </code></pre> <p>the type of behaviour im seeing (with a breakpoint on every line above) is 1,2,3,4,5,6,7 (i.e. it wont step into OtherMethod();</p> <p>Other behaviour im seeing is 1,2,3 and then thats it, off back to wherever called Method() or even further away :s</p> <p>Thanks</p> http://stackoverflow.com/questions/1505823/visual-studio-2008-crazy-debugger-skipping/1505964#1505964 0 Answer by Andrew Bullock for visual studio 2008 crazy debugger skipping! Andrew Bullock 2009-10-01T19:28:06Z 2009-10-01T19:28:06Z <p>Thanks for your responses,</p> <p>Cleaning everything (bin, obj, temp asp.net folder) and restarting my machine seems to have fixed things, how strange!</p> http://stackoverflow.com/questions/1478194/tricky-jquery-question/1478218#1478218 1 Answer by Andrew Bullock for Tricky Jquery Question!! Andrew Bullock 2009-09-25T16:08:13Z 2009-09-25T16:08:13Z <p>You cant call <code>$('#Url').hide()</code> there because you havent added it to the dom yet, do something like this:</p> <pre><code>var Name = a.text(); $.ajax({ type: "POST", url: "EmpServices.asmx/GetInfo", data: '{ "fieldName": "' + a.attr("id") + '"}', contentType: "application/json; charset=utf-8", dataType: "json", success: function(results) { if (results.d.EmpName.length &gt; 1) { var html = '&lt;div style="width:25%;"&gt;&lt;img src="' + results.d.image + '" /&gt;&lt;/div&gt;' + '&lt;div style="width:75%;"&gt;' + '&lt;div&gt;&lt;h3&gt;' + results.d.EmpName + '&lt;/h3&gt;&lt;/div&gt;' + '&lt;/div&gt;'; if (results.d.Url.length &gt;= 2) { html += '&lt;div id="url"&gt;&lt;a href="' + results.d.Url+ '"&gt;Info&gt;&lt;/a&gt;&lt;/div&gt;'; } if (results.d.ProductUrl.length &lt; 2) { html += '&lt;div id="url"&gt;&lt;a href="' + results.d.Url+ '"&gt;Info&gt;&lt;/a&gt;&lt;/div&gt;'; } $(contentElement).html(html); } }, error: function() { $(contentElement).html('Error'); } }); } </code></pre> <p>What im doing here is instead of adding a url div, then trying to hide it, just don't add the div if you dont have the url!</p> http://stackoverflow.com/questions/1476992/msbuild-publish-website-with-embedded-resources/1478175#1478175 1 Answer by Andrew Bullock for MSBuild publish website with embedded resources Andrew Bullock 2009-09-25T15:59:28Z 2009-09-25T15:59:28Z <p>It appears </p> <pre><code>/t:PrepareResources </code></pre> <p>calls all the targets youve added to your msbuild call, try that</p> <p>heres the top few levels of what gets called</p> <pre><code>PrepareResources PrepareResourceNames AssignTargetPaths SplitResourcesByCulture CreateManifestResourceNames CreateCustomManifestResourceNames ResGen ResolveAssemblyReferences SplitResourcesByCulture BeforeResGen CoreResGen AfterResGen CompileLicxFiles </code></pre> http://stackoverflow.com/questions/1232358/how-do-i-get-teamcity-to-pick-up-my-nunit-tests-run-from-rake 0 how do i get teamcity to pick up my nunit tests run from rake? Andrew Bullock 2009-08-05T10:23:37Z 2009-09-25T07:31:40Z <p>when i run this:</p> <pre><code>sh "#{MBUNIT_PATH}Gallio.Echo.exe /no-echo-results src/#{dll}/bin/Debug/#{dll}.dll" </code></pre> <p>in my rakefile, gallio runs my mbunit tests, and TC picks up the results :D</p> <p>but this:</p> <pre><code>sh "#{NUNIT_PATH}nunit-console.exe /nologo src/#{dll}/bin/Debug/#{dll}.dll" </code></pre> <p>does run my tests, but TC doesnt pick up the result :(</p> <p>I first tried running my nunit tests through gallio, but it doesnt detect any tests :(</p> <p>using the teamcity nunit launcher i get:</p> <pre><code>Failure executing test(s) on assembly nunittests.dll with NUnit 2.5.0.9122. Version 2.0 is not a compatible version. </code></pre> <p>Can anyone help me with a solution to this? Either how i can get gallio to pick up my nunit tests or how to get nunit-console to be picked up by tc.</p> <p>Thanks</p> http://stackoverflow.com/questions/1425983/nhibernate-one-to-many-relationship-lazy-loading-when-already-loaded 0 NHibernate one-to-many relationship lazy loading when already loaded Andrew Bullock 2009-09-15T08:53:07Z 2009-09-15T12:29:34Z <p>I have a tree where every node is a Resource class: </p> <pre><code>public abstract class Resource { public virtual Guid Id { get; set; } public virtual Resource Parent { get; set; } public virtual IList&lt;Resource&gt; ChildResources { get; set; } } </code></pre> <p>as you can see this class is abstract and there are many different derived classes from Resource (3 at the moment, more to come). </p> <p>In my database i have a table for Resource, and a table for each class which derives from Resource. These are mapped together with <code>&lt;joined-subclass&gt;</code>. </p> <p>I've read this: </p> <p><a href="http://ayende.com/Blog/archive/2009/08/28/nhibernate-tips-amp-tricks-efficiently-selecting-a-tree.aspx" rel="nofollow">http://ayende.com/Blog/archive/2009/08/28/nhibernate-tips-amp-tricks-efficiently-selecting-a-tree.aspx</a></p> <p>and i have the same code as Ayende to load my tree:</p> <pre><code>var resource = UnitOfWork.Current.Session .CreateQuery("from Resource r join fetch r.ChildResources") .SetResultTransformer(new DistinctRootEntityResultTransformer()) .SetReadOnly(true) .List&lt;Resource&gt;(); </code></pre> <p>which is all working fine (all Resources are returned with a single select) However, I'm seeing extra selects occurring as I enumerate a Resource's ChildResources list. </p> <p>Is that because of this?: </p> <p><a href="http://ayende.com/Blog/archive/2009/09/03/answer-the-lazy-loaded-inheritance-many-to-one-association-orm.aspx" rel="nofollow">http://ayende.com/Blog/archive/2009/09/03/answer-the-lazy-loaded-inheritance-many-to-one-association-orm.aspx</a></p> <p>Either way, how do I prevent this from happening? </p> <p>Here's the part of the mappings for the relationships (class names trimmed for clarity): </p> <pre><code>&lt;bag cascade="save-update" fetch="join" lazy="false" inverse="true" name="ChildResources"&gt; &lt;key&gt; &lt;column name="Parent_Id" /&gt; &lt;/key&gt; &lt;one-to-many class="Resource" /&gt; &lt;/bag&gt; &lt;many-to-one class="Resource" name="Parent"&gt; &lt;column name="Parent_Id" /&gt; &lt;/many-to-one&gt; </code></pre> <p>Thanks</p> <p><b>UPDATE</b></p> <p>Slight oversight, its only issuing extra selects when enumerating the child collections of the leaf nodes in the tree...</p> http://stackoverflow.com/questions/1394041/asp-net-httpapplication-lifecycle 2 ASP.NET HttpApplication lifecycle Andrew Bullock 2009-09-08T13:29:26Z 2009-09-08T13:40:45Z <p>Does the HttpApplication class extended by Global.asax.cs exist for the lifetime of the application?</p> <p>At what point can instances be created/destroyed?</p> <p>I'm experiencing application_start firing twice, it appears to be something to do with the app pool recycling and making requests part way though this process. I've not quite debugged it and I dont have time at the moment to do so in depth. So, in relation to the above question, is the following a safe solution?</p> <pre><code>public class MvcApplication : System.Web.HttpApplication { public static object syncLock = new object(); public static bool applicationBooted; protected void Application_Start() { if(!applicationBooted) lock (syncLock) if(!applicationBooted) { // bootstrap here applicationBooted = true; } } } </code></pre> http://stackoverflow.com/questions/1385871/how-to-remove-keyvalue-from-hash-in-javascript 2 how to remove key+value from hash in javascript Andrew Bullock 2009-09-06T15:04:10Z 2009-09-06T15:38:05Z <p>Given</p> <pre><code>var myHash = new Array(); myHash['key1'] = { Name: 'Object 1' }; myHash['key2'] = { Name: 'Object 2' }; myHash['key3'] = { Name: 'Object 3' }; </code></pre> <p>how do I remove <code>key2</code>, and <code>object 2</code> from the hash, that it ends up in a state as if i did:</p> <pre><code>var myHash = new Array(); myHash['key1'] = { Name: 'Object 1' }; myHash['key3'] = { Name: 'Object 3' }; </code></pre> <p>delete doesnt do what i want;</p> <pre><code>delete myHash['key2'] </code></pre> <p>simply gives me this:</p> <pre><code>var myHash = new Array(); myHash['key1'] = { Name: 'Object 1' }; myhash['key2'] = null; myHash['key3'] = { Name: 'Object 3' }; </code></pre> <p>the only docs i can find on <code>splice</code> and <code>slice</code> deal with integer indexers, which i dont have.</p> <p>Edit: I also do not know that 'key2' is necessarily in position [1]</p> <p><b>UPDATE</b></p> <p>OK slight red herring, delete does seem to do what i want on the surface, however, im using json2.js to stringify my object to json for pushing back to the server,</p> <p>after ive deleted, myHash gets serialised as:</p> <pre><code>[ { Name: 'Object 1' }, null, { Name: 'Object 3' } ] </code></pre> <p>Is this a bug in json2.js? or is it something im doing wrong with delete?</p> <p>Thanks</p> http://stackoverflow.com/questions/1385871/how-to-remove-keyvalue-from-hash-in-javascript/1385942#1385942 1 Answer by Andrew Bullock for how to remove key+value from hash in javascript Andrew Bullock 2009-09-06T15:36:58Z 2009-09-06T15:36:58Z <p>Thanks everyone for your tellings about <code>Object</code> vs <code>Array</code></p> <p>In my code i have an array and hash of the same data and i'm confusing them, leading me to this question based on my confused understanding of the problem. doh!</p> <p>Deleting from my object works properly, deleting from the array leaves a hole.</p> <p>sorry for the confusion, got there in the end!</p> <p>@JonSkeet, it wasnt an array, hence the missing method!</p> http://stackoverflow.com/questions/1385504/what-is-the-best-url-rewriter-to-use/1385512#1385512 0 Answer by Andrew Bullock for What is the best URL Rewriter to use? Andrew Bullock 2009-09-06T12:00:35Z 2009-09-06T12:00:35Z <p>If you need rewriting in IIS, I use Helicon ISAPI ReWrite 3, works really well, cheap license.</p> http://stackoverflow.com/questions/1385421/most-elegant-way-to-convert-string-array-into-a-dictionary-of-strings/1385425#1385425 2 Answer by Andrew Bullock for most elegant way to convert string array into a dictionary of strings Andrew Bullock 2009-09-06T11:20:10Z 2009-09-06T11:20:10Z <p>What do you mean?</p> <p>A dictionary is a hash, where keys map to values.</p> <p>What are your keys and what are your values?</p> <pre><code>foreach(var entry in myStringArray) myDictionary.Add(????, entry); </code></pre> http://stackoverflow.com/questions/1826407/c-user-controls-access-controls-properties/1826429#1826429 Comment by Andrew Bullock on C# User Controls: access controls properties Andrew Bullock 2009-12-01T14:14:56Z 2009-12-01T14:14:56Z dirty webforms madness http://stackoverflow.com/questions/1826414/whats-the-value-of-i-i Comment by Andrew Bullock on What's the value of i++ + i++? Andrew Bullock 2009-12-01T14:13:14Z 2009-12-01T14:13:14Z id have said it was 9 :s http://stackoverflow.com/questions/1679952/input-typesubmit-text-vertical-alignment-in-firefox/1775043#1775043 Comment by Andrew Bullock on input type=submit text vertical alignment in FireFox Andrew Bullock 2009-11-23T15:20:18Z 2009-11-23T15:20:18Z ha! victory! nice one :) http://stackoverflow.com/questions/1606966/generic-method-executed-with-a-runtime-type/1606988#1606988 Comment by Andrew Bullock on Generic Method Executed with a runtime type. Andrew Bullock 2009-11-16T21:54:58Z 2009-11-16T21:54:58Z shame this is the only solution, meh http://stackoverflow.com/questions/1717444/combining-two-lamba-expressions-in-c/1720642#1720642 Comment by Andrew Bullock on combining two lamba expressions in c# Andrew Bullock 2009-11-12T10:34:07Z 2009-11-12T10:34:07Z aceness! seems to work! - not that i doubted you ;) http://stackoverflow.com/questions/1717444/combining-two-lamba-expressions-in-c/1720642#1720642 Comment by Andrew Bullock on combining two lamba expressions in c# Andrew Bullock 2009-11-12T09:36:28Z 2009-11-12T09:36:28Z wow! thanks! I'll check this out shortly :) http://stackoverflow.com/questions/1717444/combining-two-lamba-expressions-in-c/1717608#1717608 Comment by Andrew Bullock on combining two lamba expressions in c# Andrew Bullock 2009-11-12T00:29:40Z 2009-11-12T00:29:40Z meh, im stuck. How do I build the Expressions once traversed up the tree to the secondParam? Do i need Expression.PropertyOrField? http://stackoverflow.com/questions/1717444/combining-two-lamba-expressions-in-c Comment by Andrew Bullock on combining two lamba expressions in c# Andrew Bullock 2009-11-11T22:31:14Z 2009-11-11T22:31:14Z youre right, i could do, it just feels hacky. Im going to spike both approaches and see which one feels best. An answer might have been that its really simple to combine the expressions, in which case that would have been preferable. http://stackoverflow.com/questions/1717444/combining-two-lamba-expressions-in-c/1717800#1717800 Comment by Andrew Bullock on combining two lamba expressions in c# Andrew Bullock 2009-11-11T21:25:23Z 2009-11-11T21:25:23Z you're unneccessary http://stackoverflow.com/questions/1717444/combining-two-lamba-expressions-in-c/1717608#1717608 Comment by Andrew Bullock on combining two lamba expressions in c# Andrew Bullock 2009-11-11T20:58:34Z 2009-11-11T20:58:34Z your first point of &quot;obtain the expression tree that you would have obtained&quot; is correct. I want the expression as If id just gone <code>gp =&gt; gp.Parent.Child.Name</code> in the first place. I don't actually need to invoke this, I have a vistor elsewhere which will examine it which is what i meant by &quot;i dont want nested calls&quot;. I cant have a wrapper which invokes both in a chain, because i won't be invoking ;) http://stackoverflow.com/questions/1717444/combining-two-lamba-expressions-in-c/1717608#1717608 Comment by Andrew Bullock on combining two lamba expressions in c# Andrew Bullock 2009-11-11T20:54:57Z 2009-11-11T20:54:57Z This sounds like exactly what I need. I understand all that in principle, but where my knowledge breaks down is how exactly to do step 5, how to build the new lambda. Ill google for Matt Warren's blog. @Marc id be interested to see it :) http://stackoverflow.com/questions/1707408/wierd-firefox-form-autocompletion-occuring-onblur Comment by Andrew Bullock on Wierd FireFox form autocompletion occuring onblur() Andrew Bullock 2009-11-10T12:04:44Z 2009-11-10T12:04:44Z doh, id saved the details before adding automcomplete=&quot;false&quot; http://stackoverflow.com/questions/1684276/invoking-delegate-with-generics-arguments-in-c/1684303#1684303 Comment by Andrew Bullock on invoking delegate with generics arguments in c# Andrew Bullock 2009-11-06T11:04:58Z 2009-11-06T11:04:58Z interfaces were the answer, just needed to stop being daft! http://stackoverflow.com/questions/1686452/how-to-modify-an-expressiontdelegates-parameters/1686480#1686480 Comment by Andrew Bullock on How to modify an Expression<TDelegate>s parameters Andrew Bullock 2009-11-06T10:00:56Z 2009-11-06T10:00:56Z ok, this is the same problem, see the 2nd edit. <a href="http://stackoverflow.com/questions/1684276/invoking-delegate-with-generics-arguments-in-c" rel="nofollow" title="invoking delegate with generics arguments in c">stackoverflow.com/questions/1684276/&hellip;</a> i dont really need an Expression, just an Action http://stackoverflow.com/questions/1686452/how-to-modify-an-expressiontdelegates-parameters/1686480#1686480 Comment by Andrew Bullock on How to modify an Expression<TDelegate>s parameters Andrew Bullock 2009-11-06T09:45:17Z 2009-11-06T09:45:17Z it would take all day to explain the real situation, what extra contextual info do you need? :)