User cbp - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T15:28:56Z http://stackoverflow.com/feeds/user/21966 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/633452/programatically-prevent-asp-net-ajax-scripts-from-rendering 0 Programatically prevent ASP .NET AJAX scripts from rendering cbp 2009-03-11T05:28:39Z 2009-12-16T12:57:02Z <p>Does anyone know of a way that I can stop all the .NET AJAX scripts from rendering, even if a ScriptManager exists on the page?</p> <p>The ScriptManager's Visible property has been overridden and disabled so that you receive a NotImplementedException if you try to set the Visible property.</p> <p>The reason I would like to do this is that I don't want these large chunks of javascript all over my pages when they are not required. The ScriptManager needs to be included on the master page to ensure that only one ScriptManager is added, but it would be stupid to to have to have two versions of the same master page - one ajax enabled and one not. </p> <p><strong>Edit:</strong> I am actually using Telerik's RadScriptManager with RadAjax, in case anyone knows a method using these classes instead.</p> http://stackoverflow.com/questions/1911736/nhibernate-using-slightly-different-hbm-mapping-files-depending-on-context 0 NHibernate: Using slightly different hbm mapping files depending on context cbp 2009-12-16T01:40:01Z 2009-12-16T09:58:10Z <p>One of my applications is a public website, the other is an intranet. The public website runs using a limited security user that must access a certain table through a view, whereas the intranet can access the table itself.</p> <p>This seems like it would be quite simple to setup using Fluent NHibernate. In my ClassMap I could do a check like this:</p> <pre><code>public class MyEntityClassMap : ClassMap&lt;MyEntity&gt; { public MyEntityClassMap() { if (NHibernateConfig.Current.Context == "intranet") Table("t_MyEntity"); else Table("v_MyEntity_pub"); ... etc } } </code></pre> <p>Is there a simple way of doing this for embedded hbm files? The only method I can think of would be to have two copies of the hbm file, which would be confusing and far from ideal.</p> <p>Is there perhaps a better way of achieving the same result?</p> http://stackoverflow.com/questions/1905137/force-an-eager-select-in-nhibernate 0 Force an eager select in NHibernate cbp 2009-12-15T04:19:04Z 2009-12-15T15:53:40Z <p>I am trying to eagerly fetch collections using selects, but all I am getting is <em>inner</em> joins. What is going on?</p> <pre><code>Session.CreateCriteria(typeof(Foo)) .SetFetchMode("Bars", FetchMode.Select) .CreateAlias("Bars", "b") .SetFetchMode("b.Bazes", FetchMode.Select) .List(); </code></pre> <p>I have tried changing FetchMode to Eager but that doesn't work - I still get inner joins instead of seperate selects. I'm not sure where it is even getting the inner join from, because nothing in the docs talks about FetchMode causing inner joins. Is it possible to get eager selects? </p> <p><strong>Update</strong> OK I worked out that creating an alias causes an inner join. So I can use .CreateAlias("Bars", "b", JoinType.None), but then the fetching of <em>b.Bazes</em> reverts to lazy loading. Urgh.</p> http://stackoverflow.com/questions/1905022/when-does-nhibernate-cause-sqlbatchstarting-sqlbatchcompleted 0 When does NHibernate cause Sql:BatchStarting/Sql:BatchCompleted cbp 2009-12-15T03:41:48Z 2009-12-15T07:26:30Z <p>I notice that some queries created by NHibernate are executed as batches whereas others are not. When I profile my database using Sql Server Profiler, the event type for these queries is listed as 'SQL:BatchStarting' followed by 'SQL:BatchCompleted', rather than simply RPC:Completed.</p> <p>Is there any reason why some statements are run as batches and some not?</p> <p>How does NHibernate decide which queries should be executed as batches? </p> <p>It seems to execute a lot of single queries as batches - why would this be?</p> http://stackoverflow.com/questions/1898965/one-database-two-applications-2nd-level-caching-and-nhibernate 0 One database, two applications, 2nd-level caching and NHibernate cbp 2009-12-14T04:40:21Z 2009-12-14T12:15:54Z <p>What do I need to know when setting up caching using NHibernate, in the case that I have two applications running on different servers, but only one database. Are table dependencies generally sufficient to make sure that weird caching problems don't arise? If so, what sort of polltime should I look at?</p> http://stackoverflow.com/questions/1898303/nhibernate-where-clause-on-one-to-many-relationships-doesnt-work-when-column-na 0 NHibernate: Where clause on one-to-many relationships doesn't work when column name is ambiguous cbp 2009-12-14T00:07:42Z 2009-12-14T09:29:48Z <p>It is possible to specify an arbitrary SQL where clause for collection mappings. For example:</p> <pre><code>&lt;map name="myEntity" where="foo = 1" /&gt; </code></pre> <p>However if the column name is ambiguous for some reason, the sql fails. For example, this can occur if you are trying to use joins for example. </p> <p>Given that the table aliases are automatically generated, you can't qualify the column name. This makes the feature seem rather silly. Does anyone know if there is a work around?</p> http://stackoverflow.com/questions/1886151/nhibernate-how-to-map-a-sorted-many-to-many-relationship 1 NHibernate: How to map a sorted many-to-many relationship cbp 2009-12-11T06:15:55Z 2009-12-11T10:42:43Z <p>I'm trying to work out the best method (i.e. most simple and foolproof) for mapping a many-to-many collection that should be sorted when it is retrieved.</p> <p>Here is the basic entity and table:</p> <pre><code>public class Person { private IList&lt;AddressHistoryRecord&gt; _addressHistory = new List&lt;AddressHistoryRecord&gt;(); IList&lt;AddressHistoryRecord&gt; AddressHistory { get { return _addressHistory; } set { return _addressHistory; } } } public class AddressHistoryRecord { public Guid Id { get; set; } public Guid AtAddressSince { get; set; } ... } </code></pre> <p>Tables are:</p> <pre><code>table t_Person { ... } table t_PersonAddressHistory { PersonId, AddressHistoryRecordId } table t_AddressHistoryRecord { Id, AtAddressSince ... } </code></pre> <p>So I want to be able to have the Person's address history retrieved in sorted order based on the child <em>AddressHistoryRecord</em> table's <em>AtAddressSince</em> column. What's my best option?</p> http://stackoverflow.com/questions/1871244/nhibernate-one-to-many-relationship-without-bidirectional-association 0 NHibernate one-to-many relationship without bidirectional association cbp 2009-12-09T02:24:08Z 2009-12-09T03:07:03Z <p>Is my understanding correct, that the following class and table design is not possible in NHibernate:</p> <pre><code>public class Parent { public virtual Guid Id { get; set; } public virtual ISet&lt;Child&gt; Children { get; set; } ... } public class Child { public virtual Guid Id { get; set; } ... } table Parent { Id, ... } table Child { Id, ParentId (not null), ... } </code></pre> <p>So notice the following:</p> <ul> <li>a one-to-many association between parent and child</li> <li>using an ISet</li> <li>no bidirectional association from Child back to Parent</li> <li>Child's ParentId column is not null</li> </ul> http://stackoverflow.com/questions/1859243/css-fixed-with-horizontal-menu-with-variable-width-tabs-using-ul 0 CSS: Fixed with horizontal menu, with variable width tabs, using ul cbp 2009-12-07T10:46:09Z 2009-12-07T12:59:35Z <p>I have a horizontal menu. The markup looks like this:</p> <pre><code>&lt;ul class="menu"&gt; &lt;li&gt;Item 1&lt;/li&gt; &lt;li&gt;Longer Item 2&lt;/li&gt; &lt;li&gt;Item 3&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>Submenus and suckerfish dropdowns will come later.</p> <p>The <em>ul</em> needs to span the width of the page (e.g. 100% or 1000px).</p> <p>The <em>lis</em> should vary in width based on their content.</p> <p>So the result would look like this:</p> <pre><code>-----------------100% of page------------ |--Item 1--|--Longer item 2--|--Item 3--| </code></pre> <p>Now it is easy to do this by fixing a width for each li tag, but because the menu will be CMS driven I need to allow the width of the tabs to vary automatically. With a <em>table</em> this would be trivial, but I can't think of a way to do it with a <em>ul</em>.</p> http://stackoverflow.com/questions/1859243/css-fixed-with-horizontal-menu-with-variable-width-tabs-using-ul/1859828#1859828 0 Answer by cbp for CSS: Fixed with horizontal menu, with variable width tabs, using ul cbp 2009-12-07T12:59:35Z 2009-12-07T12:59:35Z <p>Here's my jquery solution:</p> <pre><code>var actualWidth = 1000; var totalLIWidth = 0; // Calculate total width of list items var lis = $('ul li'); lis.each(function(){ totalLIWidth += $(this).width(); }); // Work out how much padding we need var requiredPadding = Math.round(((actualWidth-totalLIWidth)/lis.length)/2); // To account for rounding errors, the error is going to be forced into the first tab. var roundingErrorFix = (requiredPadding*lis.length*2)+totalLIWidth-actualWidth; // Apply padding to list items var isFirst = true; lis.each(function() { if(isFirst) { $(this).css('padding-left',requiredPadding-roundingErrorFix+'px') .css('padding-right',requiredPadding-roundingErrorFix+'px'); isFirst = false; } else $(this).css('padding-left',requiredPadding+'px') .css('padding-right',requiredPadding+'px'); }); </code></pre> http://stackoverflow.com/questions/1843373/asp-net-security-issues-maybe-umbraco-related-but-most-likely-just-general-secu/1844425#1844425 0 Answer by cbp for ASP.NET security issues, maybe Umbraco related, but most likely just general security issue... cbp 2009-12-04T01:57:53Z 2009-12-04T01:57:53Z <p>My guess is that there is a bug in your code to skip the creation/saving of the Umbraco document... although it is strange that the Document.BeforeSave event is not triggered. Are you sure that your event listeners are also working (i.e. do they register the saving of non-spam entries?)</p> <p>By the way, setting "display:none" won't stop spammers as bots will generally ignore CSS anyway.</p> http://stackoverflow.com/questions/1818302/auto-mock-container-rhino-mocks-and-ninject 1 Auto-mock container: Rhino Mocks and NInject cbp 2009-11-30T07:26:17Z 2009-11-30T23:36:40Z <p>Does anyone have an implementation lying around of an auto-mock container using Rhino Mocks and NInject?</p> http://stackoverflow.com/questions/1818302/auto-mock-container-rhino-mocks-and-ninject/1823163#1823163 2 Answer by cbp for Auto-mock container: Rhino Mocks and NInject cbp 2009-11-30T23:36:40Z 2009-11-30T23:36:40Z <p>OK I built one myself using the Moq integration as a starting point. It is very simple. You need these 3 classes:</p> <pre><code>public class AutoMockingKernel : StandardKernel { private readonly IMockProvider _mockProvider; public void Reset() { Components.Get&lt;ICache&gt;().Clear(); } protected override bool HandleMissingBinding(Type service) { var isSelfBindable = TypeIsSelfBindable(service); var binding = new Binding(service) { ProviderCallback = isSelfBindable ? StandardProvider.GetCreationCallback(service) : _mockProvider.GetCreationCallback(), IsImplicit = true }; if (!isSelfBindable) binding.ScopeCallback = ctx =&gt; null; AddBinding(binding); return true; } public AutoMockingKernel(IMockProvider mockProvider, INinjectSettings settings, params INinjectModule[] modules) : base(settings, modules) { _mockProvider = mockProvider; } public AutoMockingKernel(IMockProvider mockProvider, params INinjectModule[] modules) : base(modules) { _mockProvider = mockProvider; } } internal class RhinoMockProvider : IProvider { public Type Type { get; private set; } /// &lt;summary&gt; /// Initializes a new instance of the &lt;see cref="RhinoMockProvider"/&gt; class. /// &lt;/summary&gt; public RhinoMockProvider(Type type) { Type = type; } public object Create(IContext context) { return MockRepository.GenerateMock(Type, Type.EmptyTypes); } } public class RhinoAutoMockProvider : IMockProvider { public Func&lt;IContext, IProvider&gt; GetCreationCallback() { return ctx =&gt; new RhinoMockProvider(ctx.Request.Service); } } </code></pre> <p>You can then create an auto-mocking kernel in your unit test like this:</p> <pre><code>[Test] public void Test() { var kernel = new AutoMockingKernel(new RhinoAutoMockProvider()); ... etc } </code></pre> http://stackoverflow.com/questions/1817302/nhibernate-futurevalue-and-nullable-types 0 NHibernate FutureValue and nullable types cbp 2009-11-30T00:31:41Z 2009-11-30T00:31:41Z <p>I am having trouble using NHibernate's FutureValue method and nullable types. Is this a deficiency of NHibernate, or is the bug on my end? I can't think of a good work around.</p> <p>This is the query I am trying to run:</p> <pre><code>Session.CreateCriteria&lt;MyEntity&gt;() .SetProjection(Projections.Min("NullableDecimalProperty")) .FutureValue&lt;decimal?&gt;(); </code></pre> <p>When the minimum value is a null column, I receive the following exception:</p> <p><em>System.ArgumentException: The value "" is not of type "System.Nullable`1[System.Decimal]" and cannot be used in this generic collection. Parameter name: value</em></p> http://stackoverflow.com/questions/1761026/flush-nhibernate-whilst-still-allowing-transaction-rollback 0 Flush NHibernate whilst still allowing transaction rollback cbp 2009-11-19T05:13:44Z 2009-11-26T05:18:56Z <p>I am trying to use NHibernate with legacy entities that are not mapped with NHibernate. On occaisson this means that I need to manually flush NHibernate data to the database so that I don't receive foreign key exceptions when I try to connect the legacy entities with NHibernate-mapped entities.</p> <p>A problem occurs when this takes place within a transaction that then needs to be rolled back. The data flushed from NHibernate does not rollback.</p> <p>Is there anything I can do about this?</p> http://stackoverflow.com/questions/1801188/nhibernate-how-to-check-if-an-entity-is-persistent 0 NHibernate: How to check if an entity is persistent cbp 2009-11-26T02:07:00Z 2009-11-26T02:13:26Z <p>I find myself writing code like the following quite a lot:</p> <pre><code>if (myEntity.Id == default(Guid)) Session.Save(myEntity); </code></pre> <p>What is the best way to check if an entity is already persistent (and therefore doesnt need to be saved)?</p> <p>Am I doing something wrong writing code like this?</p> http://stackoverflow.com/questions/849664/fluent-nhibernate-how-do-i-map-an-entity-with-a-property-whos-type-is-an-interf/1780428#1780428 1 Answer by cbp for Fluent nhibernate: How do I map an entity with a property who's type is an interface? cbp 2009-11-22T23:37:31Z 2009-11-22T23:37:31Z <p>Just thought I would share a way that I managed to achieve this using Fluent NHibernate rather than the hbm files.</p> <p>This method is a little hacky but the hacks are isolated and easily removed once Fluent NH gains proper support for Union-Subclass.</p> <p>To use your example, the context of my scenario is this - the Employee class is in one project with the AccountManager property specified as an interface, because the concrete AccountManager is in a different project which we don't want to create a dependency to.</p> <p>First I create a 'Helper' class that does most of the Employee mapping and looks like this.</p> <pre><code>public abstract class EmployeeMapperBase { protected abstract Type GetAccountManagerType(); public void DoMapping(ClassMap&lt;Employee&gt; classMap) { classMap.Id(x =&gt; x.Id); classMap.Maps(..... etc.... classMap.References(x =&gt; x.AccountManager) .Class(GetAccountManagerType()); } } </code></pre> <p>Next, in the project with the concrete AccountManager class, I complete the mapping:</p> <pre><code>public class EmployeeClassMap : ClassMap&lt;Employee&gt; { public EmployeeClassMap { new ConcreteEmployeeMapper().DoMapping(this); } private class ConcreteEmployeeMapper : EmployeeMapperBase { public override Type GetAccountManagerType() { return typeof(DefaultAccountManager); } } } </code></pre> http://stackoverflow.com/questions/1761528/sql-server-best-way-to-deny-sql-user-access-to-old-data 0 SQL Server: Best way to deny sql user access to old data cbp 2009-11-19T07:35:23Z 2009-11-19T07:48:06Z <p>Using SQL Server, what is a simple but effective means of denying access to data older than a certain date, for some users?</p> <p>We can do this at the application level (a web application) but this leaves us vulnerable to scenarios such as IIS being hacked or bugs in our application. Ideally only certain SQL users should have access to certain data older than a couple of months. What is a good way of achieving this with minimal fuss?</p> <p>If it makes a difference, our application uses NHibernate.</p> http://stackoverflow.com/questions/1552364/nhibernate-hasmany-components-and-where-contains-clause 2 NHibernate: HasMany components and Where/Contains clause cbp 2009-10-12T01:57:17Z 2009-11-18T13:37:03Z <p>Hi, I'm trying to work out how to create a query using Linq to NHibernate.</p> <p>I have two classes like this:</p> <pre><code>public class Foo { private ISet&lt;Bar&gt; _bars = new HashedSet&lt;Bar&gt;(); public virtual ISet&lt;Bar&gt; Bars { get { return _bars; } set { _bars = value; } } } public class Bar { public string Name { get; set; } public string Color { get; set; } } </code></pre> <p>Foo's Bar collection is mapped as a one-to-many component collection.</p> <p>Now I want to run a query that should look something like this:</p> <pre><code>var myBar = new Bar { Name = "test", Color = "testColor" }; var matchingFoos = Session.Linq&lt;Foo&gt; .Where(foo =&gt; foo.Bars.Contains(myBar), new BarEqualityComparer()) .ToList(); </code></pre> <p>I am not sure if this is correct, but whenever I run this query I get a NullReferenceException from inside a method called NHibernate.Linq.Visitors.WhereArgumentsVisitor.GetCollectionContainsCriteria method.</p> <p>Could anyone help me out with an alternative means of running this query?</p> http://stackoverflow.com/questions/1752792/nhibernate-createcriteria-and-exists-clause 0 NHibernate: CreateCriteria and Exists clause cbp 2009-11-18T00:14:31Z 2009-11-18T01:04:45Z <p>How can I write the following SQL using CreateCriteria:</p> <pre><code>SELECT * FROM FooBar fb WHERE EXISTS (SELECT FooBarId FROM Baz b WHERE b.FooBarId = fb.Id) </code></pre> http://stackoverflow.com/questions/1752792/nhibernate-createcriteria-and-exists-clause/1752922#1752922 0 Answer by cbp for NHibernate: CreateCriteria and Exists clause cbp 2009-11-18T00:50:19Z 2009-11-18T00:50:19Z <p>I worked out how to do this using the IsNotEmpty expression. Here it is using NHibernate Lambda Extensions:</p> <pre><code>Session.CreateCriteria&lt;FooBar&gt;() .Add(SqlExpression.IsNotEmpty&lt;FooBar&gt;(x =&gt; x.Bazes)) .List&lt;FooBar&gt;(); </code></pre> http://stackoverflow.com/questions/1746625/nhibernate-caching-not-working-for-anonymous-type 1 NHibernate caching not working for anonymous type cbp 2009-11-17T04:40:36Z 2009-11-17T14:56:30Z <p>I am trying to get the following query to work:</p> <pre><code>Session.Linq&lt;FooBar&gt;() .SetCachable(true) .SetCacheRegion("foobar") .Select(x =&gt; new Baz(x.Foo, x.Bar)) .ToList(); </code></pre> <p>This works when caching is turned off, but with caching enabled I receive the following exception:</p> <p><em>System.InvalidCastException: Unable to cast object of type 'Baz' to type 'System.Object[]'.</em></p> <p>The rest of the stack trace is:</p> <pre><code>at NHibernate.Cache.StandardQueryCache.Put(QueryKey key, ICacheAssembler[] returnTypes, IList result, Boolean isNaturalKeyLookup, ISessionImplementor session) at NHibernate.Loader.Loader.PutResultInQueryCache(ISessionImplementor session, QueryParameters queryParameters, IType[] resultTypes, IQueryCache queryCache, QueryKey key, IList result) at NHibernate.Loader.Loader.ListUsingQueryCache(ISessionImplementor session, QueryParameters queryParameters, ISet`1 querySpaces, IType[] resultTypes) at NHibernate.Loader.Loader.List(ISessionImplementor session, QueryParameters queryParameters, ISet`1 querySpaces, IType[] resultTypes) at NHibernate.Impl.SessionImpl.List(CriteriaImpl criteria, IList results) </code></pre> <p>Anyone know if this is an NHibernate limitation or am I doing something wrong?</p> http://stackoverflow.com/questions/1746848/synchronizing-intranet-and-web-data 0 Synchronizing intranet and web data cbp 2009-11-17T05:47:38Z 2009-11-17T07:24:07Z <p>I am just getting started breaking a .NET application and its SQL Server database into two systems - an intranet and a public website.</p> <p>The various database tables will need to be synchronised between the two databases in different ways, for example:</p> <ul> <li>Moving from web to intranet, with the intranet data becoming read-only</li> <li>Moving from intranet to web, with the web data becoming read-only</li> <li>Tables that need to be synchronised and are read/write on both the intranet and web databases.</li> </ul> <p>Some of the synchronisation needs to occur relatively quickly with minimal lag, possibly with some type of transaction locking to ensure repeatable reads etc. Other times it doesn't matter if there is a delay between synchronisation.</p> <p>I am not quite sure where to start with all this, as there seems to be many different ways of achieving this. Which technologies and strategies should I be looking at?</p> <p>Any tips?</p> http://stackoverflow.com/questions/1712575/asynchronous-queries-in-a-web-app-using-nhibernate 1 Asynchronous queries in a web app, using NHibernate cbp 2009-11-11T02:15:26Z 2009-11-16T23:54:31Z <p>In a web application, the Session is only available in the current thread.</p> <p>Does anyone have any tips for executing queries through NHibernate in a new asynchronous thread?</p> <p>For example, how could I make something like this work:</p> <pre><code>public void Page_Load() { ThreadPool.QueueUserWorkItem(state =&gt; FooBarRepository.Save(new FooBar())); } </code></pre> http://stackoverflow.com/questions/1740028/linq-to-nhibernate-distinct 0 Linq to NHibernate: Distinct cbp 2009-11-16T04:21:41Z 2009-11-16T04:47:39Z <p>I am trying to get the following SQL output using Linq-to-NHibernate:</p> <pre><code>SELECT DISTINCT Name, at.Year FROM MyTable mt INNER JOIN AnotherTable at ON at.Id = mt.AnotherTableId </code></pre> <p>The Name and Year properties are going to be wrapped up in a new class, so the C# code will look something like this:</p> <pre><code>Session.Linq() .Select(x =&gt; new FooBar { Name = x.Name, Year = x.AnotherTable.Year })) .ToList(); </code></pre> <p>How can I get the DISTINCT keyword to appear in the sql query?</p> http://stackoverflow.com/questions/1727468/xsd-difference-between-element-and-attribute/1727480#1727480 1 Answer by cbp for XSD: difference between Element and Attribute cbp 2009-11-13T06:25:56Z 2009-11-13T06:25:56Z <pre><code>&lt;element myAttribute="value"&gt; &lt;subElement /&gt; &lt;subElement anotherAttribute="this is an attribute's value"&gt;Element value&lt;/subElement&gt; &lt;/element&gt; </code></pre> <p>You can't have more than one attribute with the same name in XML, therefore you can't use minOccurs and maxOccurs for attributes.</p> <p>You don't need use="required" for elements because you can have minOccurs="1" instead.</p> <p>It is your choice when to use attributes and when to use elements. Here are some guidelines: <a href="http://www.ibm.com/developerworks/xml/library/x-eleatt.html" rel="nofollow">http://www.ibm.com/developerworks/xml/library/x-eleatt.html</a></p> http://stackoverflow.com/questions/1727443/how-to-loop-though-a-jquery-result-set/1727459#1727459 1 Answer by cbp for How to loop though a jQuery result set cbp 2009-11-13T06:17:34Z 2009-11-13T06:17:34Z <p>There are lots of ways.</p> <p>For your specific scenario, I would try something like this:</p> <pre><code>$(".divClass .pClass1").each(function() { // Do whatever }); </code></pre> <p>If you wanted to do something with the div tags and the p tags, you could try the <strong>find</strong> method:</p> <pre><code>$(".divClass").each(function() { var p1Tags = $(this).find(".pClass1"); }); </code></pre> http://stackoverflow.com/questions/1630752/configuration-syscache2-with-fluent-nhibernate/1713359#1713359 0 Answer by cbp for Configuration SysCache2 With Fluent NHibernate cbp 2009-11-11T06:04:32Z 2009-11-11T06:04:32Z <p>I don't think you can. You have to configure it through web.config.</p> http://stackoverflow.com/questions/1705738/find-out-why-visual-studio-decides-to-copy-dlls-into-a-bin-directory 0 Find out why Visual Studio decides to copy DLLs into a bin directory cbp 2009-11-10T05:08:03Z 2009-11-10T19:31:20Z <p>I have a web application project. I am trying to find out why certain DLLs are being copied into the bin directory of the web application. As far as I can see there are no references to the DLLs under the list of references.</p> <p>Whilst I don't think it should make a difference, I have been through all the DLLS of the projects that the web application depends upon and selected <strong>Copy Local=False</strong>.</p> <p>But still when I build the solution, the DLLs turn up in the bin directory. I don't want them there. How can I find out what is putting the DLLs there?</p> http://stackoverflow.com/questions/1699197/how-do-you-organise-your-ninject-modules 3 How do you organise your NInject modules? cbp 2009-11-09T05:11:29Z 2009-11-09T08:52:01Z <p>NInject's module architecture seems useful but I'm worried that it is going to get in a bit of a mess. </p> <p>How do you organise your modules? Which assembly do you keep them in and how do you decide what wirings go in which module?</p> http://stackoverflow.com/questions/1911736/nhibernate-using-slightly-different-hbm-mapping-files-depending-on-context/1911954#1911954 Comment by cbp on NHibernate: Using slightly different hbm mapping files depending on context cbp 2009-12-16T03:23:03Z 2009-12-16T03:23:03Z To answer your concerns: 1) I could put the two hbm files in seperate assemblies and then switch which assembly I am using for configuring NHibernate. 2) The view is used to restrict access to sensitive data (e.g. by restricting access to data older than 1 day). This is a common way of implementing such security. 3) It is possible to run inserts and updates on a view - sql will work out that they need to go to the table. 4) I can't think of a better way of implementing this security feature. http://stackoverflow.com/questions/1905137/force-an-eager-select-in-nhibernate/1905198#1905198 Comment by cbp on Force an eager select in NHibernate cbp 2009-12-15T04:52:02Z 2009-12-15T04:52:02Z But the default join type is usually left outer join isn't it? Inner joins don't work if the foreign key is nullable, or as in my case, where Bars could be empty. Also the docs seem to indicate that you can do an eager select. http://stackoverflow.com/questions/1898427/should-i-create-a-new-test-method-for-each-assertion/1898434#1898434 Comment by cbp on Should I create a new test method for each assertion? cbp 2009-12-15T01:00:23Z 2009-12-15T01:00:23Z Btw I'm not arguing that you should be testing significantly different behaviours from one test - just that sometimes its OK to have more than one assertion. For example, something like this would be OK in my books - check that one item is returned and that it is true: Assert.That(result.Count, Is.EqualTo(1)); Assert.That(result[0], Is.True)); http://stackoverflow.com/questions/1898427/should-i-create-a-new-test-method-for-each-assertion/1898523#1898523 Comment by cbp on Should I create a new test method for each assertion? cbp 2009-12-15T00:07:01Z 2009-12-15T00:07:01Z @joerage Why not just fix the problem, rerun the test and see if the other assertions fail? http://stackoverflow.com/questions/1898427/should-i-create-a-new-test-method-for-each-assertion/1898434#1898434 Comment by cbp on Should I create a new test method for each assertion? cbp 2009-12-15T00:05:09Z 2009-12-15T00:05:09Z @Brad From experience - because I've been working with unit testing for a few years in a small team and the problem as you state it simply doesn't occur. From my test runner I can get a line number, click on a link and jump straight to the line that caused the failure. http://stackoverflow.com/questions/1898427/should-i-create-a-new-test-method-for-each-assertion/1898434#1898434 Comment by cbp on Should I create a new test method for each assertion? cbp 2009-12-14T06:08:49Z 2009-12-14T06:08:49Z I can't imagine this really occurring very often in a small-to-medium sized project. 90% of the test runs are being run through the IDE. In larger teams and projects I could see how this could pop up more often. http://stackoverflow.com/questions/1898427/should-i-create-a-new-test-method-for-each-assertion/1898434#1898434 Comment by cbp on Should I create a new test method for each assertion? cbp 2009-12-14T01:01:22Z 2009-12-14T01:01:22Z Won't most test runners print out a line number so you can tell which assertion failed? http://stackoverflow.com/questions/1871244/nhibernate-one-to-many-relationship-without-bidirectional-association/1871259#1871259 Comment by cbp on NHibernate one-to-many relationship without bidirectional association cbp 2009-12-09T07:47:51Z 2009-12-09T07:47:51Z But its one of my requirements that I don't want a bi-directional association, because it makes the model more confusing. http://stackoverflow.com/questions/1871244/nhibernate-one-to-many-relationship-without-bidirectional-association/1871259#1871259 Comment by cbp on NHibernate one-to-many relationship without bidirectional association cbp 2009-12-09T02:33:00Z 2009-12-09T02:33:00Z How can I do this - according to the docs: &quot;If the &lt;key&gt; column of a &lt;one-to-many&gt; association is declared NOT NULL, NHibernate may cause constraint violations when it creates or updates the association. To prevent this problem, you must use a bidirectional association with the many valued end (the set or bag) marked as inverse=&quot;true&quot;.&quot; http://stackoverflow.com/questions/1859243/css-fixed-with-horizontal-menu-with-variable-width-tabs-using-ul/1859291#1859291 Comment by cbp on CSS: Fixed with horizontal menu, with variable width tabs, using ul cbp 2009-12-07T12:54:41Z 2009-12-07T12:54:41Z This also produces kind of an ugly result - the padding adjust proportionally to the width of the items. Really we want fixed sized paddings - I'll answer below. http://stackoverflow.com/questions/1859243/css-fixed-with-horizontal-menu-with-variable-width-tabs-using-ul/1859291#1859291 Comment by cbp on CSS: Fixed with horizontal menu, with variable width tabs, using ul cbp 2009-12-07T12:41:16Z 2009-12-07T12:41:16Z Thanks - yeah this is a starting point but it also has to be more complex to account for rounding errors. My answer is too ugly to post, sorry! http://stackoverflow.com/questions/1859243/css-fixed-with-horizontal-menu-with-variable-width-tabs-using-ul/1859272#1859272 Comment by cbp on CSS: Fixed with horizontal menu, with variable width tabs, using ul cbp 2009-12-07T11:45:27Z 2009-12-07T11:45:27Z Thanks - of course I need at least IE 7 support :) http://stackoverflow.com/questions/1818302/auto-mock-container-rhino-mocks-and-ninject/1823163#1823163 Comment by cbp on Auto-mock container: Rhino Mocks and NInject cbp 2009-12-02T00:43:15Z 2009-12-02T00:43:15Z I use a base class for all my test fixtures which calls Reset during teardown. I also use a static kernel container. Definitely not ideal, but I find this sort of stuff never is. http://stackoverflow.com/questions/1746848/synchronizing-intranet-and-web-data Comment by cbp on Synchronizing intranet and web data cbp 2009-11-18T12:25:14Z 2009-11-18T12:25:14Z The main reason is that from it's not a good idea for us to be storing large amounts of sensitive data on the web server, which is more widely exposed to the Internet than our intranet. http://stackoverflow.com/questions/1740028/linq-to-nhibernate-distinct Comment by cbp on Linq to NHibernate: Distinct cbp 2009-11-17T04:33:58Z 2009-11-17T04:33:58Z Doesnt work :) sorry