User JC Grubbs - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T00:00:00Zhttp://stackoverflow.com/feeds/user/4541http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/928597/trouble-with-db4o-objects-arent-returned-after-an-iis-reset-container-is-out-o1Trouble with db4o...objects aren't returned after an IIS reset/container is out of scope.JC Grubbs2009-05-30T00:00:55Z2009-12-10T07:00:04Z
<p>So I'm probably doing something tragically wrong with db4o to cause this issue to happen...but every time I reset my context I lose all of my objects. What I mean by this is that as soon as my container object goes out of scope (due to an IIS reset or whatever) I can no longer retrieve any of the objects that I previously persisted. Within the scope of a "session" I can retrieve everything but as soon as that "session" dies then nothing is returned. What's odd is that the database file continues to grow in size so I know everything is in there it just never gets returned after the fact. Any idea what's going on?</p>
<p>Here is my generic wrapper for db4o:</p>
<pre><code>public class DataStore : IDisposable {
private static readonly object serverLock = new object();
private static readonly object containerLock = new object();
private static IObjectServer server;
private static IObjectContainer container;
private static IObjectServer Server {
get {
lock (serverLock) {
if (server == null)
server = Db4oFactory.OpenServer(ConfigurationManager.AppSettings["DatabaseFilePath"], 0);
return server;
}
}
}
private static IObjectContainer Container {
get {
lock (containerLock) {
if (container == null)
container = Server.OpenClient();
return container;
}
}
}
public IQueryable<T> Find<T>(Func<T, bool> predicate) {
return (from T t in Container where predicate(t) select t).AsQueryable();
}
public IQueryable<T> Find<T>() {
return (from T t in Container select t).AsQueryable();
}
public ValidationResult Save(IValidatable item) {
var validationResult = item.Validate();
if (!validationResult.IsValid) return validationResult;
Container.Store(item);
return validationResult;
}
public void Delete(object item) {
Container.Delete(item);
}
public void Dispose() {
Server.Close();
Container.Close();
}
}
</code></pre>
http://stackoverflow.com/questions/171251/how-can-i-merge-properties-of-two-javascript-objects-dynamically8How can I merge properties of two JavaScript objects dynamically?JC Grubbs2008-10-05T00:30:54Z2009-12-03T05:47:00Z
<p>I need to be able to merge two (very simple) JavaScript objects at runtime. For example I'd like to:</p>
<pre><code>var obj1 = { food: 'pizza', car: 'ford' }
var obj2 = { animal: 'dog' }
obj1.merge(obj2);
//obj1 now has three properties: food, car, and animal
</code></pre>
<p>Does anyone have a script for this or know of a built in way to do this? I do not need recursion, and I do not need to merge functions, just methods on flat objects.</p>
http://stackoverflow.com/questions/502046/how-do-i-debug-server-side-code-in-aptana-jaxer0How do I debug server side code in Aptana Jaxer?JC Grubbs2009-02-02T02:36:53Z2009-11-29T03:48:12Z
<p>I'm trying to debug some server-side JavaScript code running in Aptana Jaxer and I'm not having any success. I haven't even been able to find any tutorials or posts about this issue. Does anyone know if it's possible and if so, what am I missing?</p>
http://stackoverflow.com/questions/47752/remove-duplicates-from-a-listt-in-c15Remove duplicates from a List<T> in C#JC Grubbs2008-09-06T19:15:27Z2009-11-24T20:05:03Z
<p>Anyone have a quick method for de-duplicating a generic List in C#?</p>
http://stackoverflow.com/questions/351149/how-do-you-get-access-to-the-current-system-web-routing-requestcontext-from-withi7How do you get access to the current System.Web.Routing.RequestContext from within a custom helper method in ASP.NET MVC?JC Grubbs2008-12-08T22:21:28Z2009-10-17T19:35:48Z
<p>I'm writing a helper method for ASP.NET MVC and I need to call Url.Content to get an appropriate URL for the context. However, in order to create a new UrlHelper() I need to get the current RequestContext (System.Web.Routing.RequestContext to be precise) and I'm not sure how to grab it. Anyone know?</p>
http://stackoverflow.com/questions/1517898/any-libraries-available-for-doing-linq-over-eav-pattern0Any libraries available for doing LINQ over EAV pattern?JC Grubbs2009-10-05T01:28:15Z2009-10-05T01:28:15Z
<p>Does anyone know of any libraries which implement an abstraction in LINQ over the EAV (Entity Attribute Value) pattern? I have a large legacy EAV database and I'm trying to create a cleaner data access layer and the thought of using LINQ really appeals so I'm looking for any code I can use to jumpstart.</p>
http://stackoverflow.com/questions/328600/how-do-you-do-a-sql-style-in-statement-in-linq-to-entities-entity-framework-i1How do you do a SQL style 'IN' statement in LINQ to Entities (Entity Framework) if Contains isn't supported?JC Grubbs2008-11-30T07:36:57Z2009-10-02T22:12:52Z
<p>I'm using LINQ to Entities (not LINQ to SQL) and I'm having trouble creating an 'IN' style query. Here is my query at the moment:</p>
<pre><code>var items = db.InventoryItem
.Include("Kind")
.Include("PropertyValues")
.Include("PropertyValues.KindProperty")
.Where(itm => valueIds.Contains(itm.ID)).ToList<InventoryItem>();
</code></pre>
<p>When I do this however, the following exception is thrown:</p>
<p>LINQ to Entities does not recognize the method 'Boolean Contains(Int64)' method, and this method cannot be translated into a store expression.</p>
<p>Does anyone have a workaround or another solution for this?</p>
http://stackoverflow.com/questions/1461330/validateinput-attribute-doesnt-seem-to-work-in-asp-net-mvc2ValidateInput Attribute Doesn't Seem To Work in ASP.NET MVCJC Grubbs2009-09-22T17:06:27Z2009-09-22T17:20:19Z
<p>I'm trying to get around the "potentially dangerous Request.Form value" error and I'm having no luck. Yes, yes, I've read all the other StackOverflow related questions and none of them seem to get me closer to an answer. I am using <code>[ValidateInput(false)]</code> on all related controller actions...and I've checked many times. I'm using <code>ValidateRequest='false'</code> in all the related ASPX views. </p>
<p>I am using ASP.NET MVC 2 Preview 1, but I don't think that's an issue since the error is being generated lower in the framework; Page.ProcessRequest to be exact. I can't see anything I'm doing wrong, I even set <code><page validateRequest='false'></code> in the web.config and that didn't solve it either.</p>
<p>HELP!!!!!</p>
http://stackoverflow.com/questions/1461330/validateinput-attribute-doesnt-seem-to-work-in-asp-net-mvc/1461411#14614113Answer by JC Grubbs for ValidateInput Attribute Doesn't Seem To Work in ASP.NET MVCJC Grubbs2009-09-22T17:20:19Z2009-09-22T17:20:19Z<p>Well...answered my own problem...the culprit: <code>Html.RenderAction<T></code>. If there are any calls to other actions in the request context (e.g. from the Master Page or child partials) these actions also need to have <code>[ValidateInput(false)]</code> set appropriately. This seems like a bit of a problem though with MVC or the way the Page object works in ASP.NET as this is a really obfuscated bug to find.</p>
http://stackoverflow.com/questions/50386/good-features-for-an-orm5Good Features for an ORMJC Grubbs2008-09-08T18:37:42Z2009-09-22T07:58:33Z
<p>I'm currently working on putting together a fairly simple ORM tool to serve as a framework for various web projects for a client. Most of the projects are internal and will not require massive amounts of concurrency and all will go against SQL Server. I've suggested that they go with ORM tools like SubSonic, NHibernate, and a number of other open source projects out there, but for maintainability and flexibility reasons they want to create something custom. So my question is this: What are some features that I should make sure to include in this ORM tool? BTW, I'll be using MyGeneration to do the code generation templates.</p>
http://stackoverflow.com/questions/315966/how-do-you-construct-a-linq-to-entities-query-to-load-child-objects-directly-ins3How do you construct a LINQ to Entities query to load child objects directly, instead of calling a Reference property or Load().JC Grubbs2008-11-25T00:22:40Z2009-09-22T06:15:34Z
<p>I'm new to using LINQ to Entities (or Entity Framework whatever they're calling it) and I'm writing a lot of code like this:</p>
<pre><code>var item = (from InventoryItem item in db.Inventory
where item.ID == id
select item).First<InventoryItem>();
</code></pre>
<p>and then calling methods on that object like this:</p>
<pre><code>var type = item.ItemTypeReference;
</code></pre>
<p>or</p>
<pre><code>var orders = item.OrderLineItems.Load();
</code></pre>
<p>to retrieve child or related objects.</p>
<p>I haven't profiled the DB or dug too deeply but my guess is that when I call a .Load() or a *Reference property I'm actually making another call to the DB. If this is the case, is there any way to get those objects in my initial LINQ expression?</p>
http://stackoverflow.com/questions/637225/how-would-you-write-an-upsert-for-linq-to-sql3How would you write an Upsert for LINQ to SQL?JC Grubbs2009-03-12T02:57:29Z2009-09-11T19:22:37Z
<p>So I'd like to write a generic Upsert function for LINQ to SQL and I'm having some trouble conceptualizing how to do it. I'd like it to work something like this:</p>
<pre><code>var db = new DataContext();
db.Customers.UpsertOnSubmit(customer);
</code></pre>
<p>So it would have to be generic in some way and I guess and extension method on Table. I've been able to get this far in determining the primary key of the underlying table:</p>
<pre><code>var context = source.Context;
var table = context.Mapping.GetTable(source.GetType());
var primaryMember = table.RowType.DataMembers.SingleOrDefault(m => m.IsPrimaryKey);
</code></pre>
<p>I'm assuming it will be necessary to have this to compose a query to tell if the item is in the DB already or not but I don't really know what to do with it at this point.</p>
http://stackoverflow.com/questions/52952/detecting-if-an-idatareader-contains-a-certain-field-before-iteration2Detecting if an IDataReader contains a certain field before iteration.JC Grubbs2008-09-09T21:25:43Z2009-08-13T13:37:42Z
<p>So I'm using an IDataReader to hydrate some business objects, but I don't know at runtime exactly what fields will be in the reader. Any fields that aren't in the reader would be left null on the resulting object. How do you test if a reader contains a specific field without just wrapping it in a try/catch?</p>
http://stackoverflow.com/questions/60918/what-is-the-worker-process-for-iis74What is the worker process for IIS7?JC Grubbs2008-09-13T22:07:21Z2009-08-09T21:56:46Z
<p>I'm trying to do 'Attach to Process' for debugging in Visual Studio 2008 and I can't figure out what process to attach to. Help.</p>
http://stackoverflow.com/questions/592149/how-do-i-use-instancescope-httpsession-in-structuremap0How do I use InstanceScope.HttpSession in StructureMap?JC Grubbs2009-02-26T19:56:47Z2009-08-05T17:02:08Z
<p>I'm trying to use StructureMap's InstanceScope.HttpSession feature and I'm running into problems. I have the following method I'm using for testing:</p>
<pre><code>public static class StructureMapTest {
public static T Get<T>() {
ObjectFactory.Configure(x => x.AddRegistry(new RepositoryRegistry()));
return ObjectFactory.GetInstance<T>();
}
}
</code></pre>
<p>My RepositoryRegistry class looks like this:</p>
<pre><code>public class RepositoryRegistry : Registry {
public RepositoryRegistry() {
ForRequestedType<IClientRepository>()
.CacheBy(InstanceScope.HttpSession)
.TheDefault.Is.OfConcreteType<ClientRepository>();
}
}
</code></pre>
<p>So in my client code (ASP.NET MVC controller) I do something like the following:</p>
<pre><code>public ActionResult InjectionTest() {
return Content(DataProvider.Clients.CreatedDate.ToString());
}
</code></pre>
<p>And every time I call this controller even from the same session, I get a new instance every time. What am I doing wrong here?</p>
http://stackoverflow.com/questions/44817/flex-and-ado-net-data-services-anyone-done-it2Flex and ADO.NET Data Services...anyone done it?JC Grubbs2008-09-04T21:20:27Z2009-07-23T17:41:15Z
<p>Has anyone used ADO.NET Data Services as a data source for Adobe Flex applications? If so, any success stories or tragedies to avoid? If you did use it, how did you handle security?</p>
http://stackoverflow.com/questions/288111/remove-byte-order-mark-from-a-file-readallbytes-byte3Remove Byte Order Mark from a File.ReadAllBytes (byte[])JC Grubbs2008-11-13T20:12:23Z2009-07-16T09:50:02Z
<p>I have an HTTPHandler that is reading in a set of CSS files and combining them and then GZipping them. However, some of the CSS files contain a Byte Order Mark (due to a bug in TFS 2005 auto merge) and in FireFox the BOM is being read as part of the actual content so it's screwing up my class names etc. How can I strip out the BOM characters? Is there an easy way to do this without manually going through the byte array looking for ""?</p>
http://stackoverflow.com/questions/591362/implementing-onepersessionbehavior-in-ninject1Implementing OnePerSessionBehavior in NInject...JC Grubbs2009-02-26T16:41:48Z2009-07-14T19:50:35Z
<p>I'd like to create a OnePerSessionBehavior for NInject (v1.0) and I've mostly got it working. The only issue that remains is how to pass in fresh arguments using .WithArguments() as each new session asks for something from the container. Right now I'm keeping a reference to the container as an application variable and therefore the module only ever gets loaded one time so of course the binding only occurs once.</p>
<p>For example, the following returns individual instances of 'Something' for each new session, but the constructor argument passed in to all sessions is the same DateTime.</p>
<pre><code>Bind<ISomething>()
.To<Something>()
.Using<OnePerSessionBehavior>()
.WithArgument("currentDateTime", DateTime.Now);
</code></pre>
http://stackoverflow.com/questions/1046871/are-there-advantages-to-dividing-application-databases-by-usage-pattern0Are there advantages to dividing application databases by usage pattern?JC Grubbs2009-06-26T00:39:33Z2009-06-26T01:24:57Z
<p>I am working on an application that has two distinct audiences and as such has two distinct types of data. On the one hand there is very high-read/low-write meta data. These tables will have relatively low row counts and will be mostly read by the other side of the application. </p>
<p>The other side of the application is based around very high-write/low-read transactional data. There will be lot of data here and a pretty high velocity on the inserts. This part of the application will read some data from the meta side but won't write anything back to that side. </p>
<p>There won't need to be any RI between these two buckets of tables.</p>
<p>My question is this: Does it make sense to create two separate databases for these very different types of data? What are the advantages and disadvantages to both approaches?</p>
<p>If it matters, this is built in .NET using a SQL Server 2008 back-end.</p>
http://stackoverflow.com/questions/48087/select-a-random-n-elements-from-listt-in-c7Select a random N elements from List<T> in C#JC Grubbs2008-09-07T03:12:28Z2009-06-25T09:25:02Z
<p>I need a quick algorithm to select a random 5 elements from a generic list. For example, I'd like to get a random 5 elements from a List.</p>
http://stackoverflow.com/questions/1009633/help-writing-a-specific-regular-expression0Help writing a specific Regular Expression.JC Grubbs2009-06-17T21:35:12Z2009-06-18T15:13:36Z
<p>Firstly, I'm in C# here so that's the flavor of RegEx I'm dealing with. And here are thing things I need to be able to match:</p>
<pre><code>[(1)]
</code></pre>
<p>or</p>
<pre><code>[(34) Some Text - Some Other Text]
</code></pre>
<p>So basically I need to know if what is between the parentheses is numeric and ignore everything between the close parenthesis and close square bracket. Any RegEx gurus care to help?</p>
http://stackoverflow.com/questions/369573/how-do-you-pass-an-arbitrary-bit-of-data-to-a-user-control-in-asp-net-mvc-using-h4How do you pass an arbitrary bit of data to a user control in ASP.NET MVC using Html.RenderPartial()?JC Grubbs2008-12-15T20:18:32Z2009-06-05T21:51:13Z
<p>I have a strongly typed user control ("partial") and I'd like to be able to pass it some additional information from its containing view. For example, I have view that's bound to a product class and i have a partial that also is strongly typed to that same model, but I also need to pass an additional parameter for imageSize to my partial. I'd like to be able to do something like this:</p>
<pre><code><% Html.RenderPartial("_ProductImage", ViewData.Model, new { imageSize = 100 }); %>
</code></pre>
<p>As far as I know there is no way to do this, but I'm hoping that someone smarter than me may have a solution ;)</p>
http://stackoverflow.com/questions/870304/what-techniques-work-for-abstracting-session-in-asp-net-mvc-and-maintaining-testa0What techniques work for abstracting session in ASP.NET MVC and maintaining testability.JC Grubbs2009-05-15T19:00:17Z2009-05-15T19:05:22Z
<p>I'm currently working on a large scale ASP.NET MVC application and one area where testing is failing is around things that we're storing in session. My first pass at abstracting session is just to create a very simple static class and make all calls to session go through that. So I might have something like this:</p>
<pre><code>public static class AppSession {
public string CurrentLanguage {
get { return HttpContext.Current.Session["CurrentLanguage"]; }
set { HttpContext.Current.Session["CurrentLanguage"] = value; }
}
}
</code></pre>
<p>Then in my controllers actions I can call AppSession.CurrentLanguage = "en-US" and I don't have to think about session. The problem is that when I go to test a controller action that uses this static class I get an obvious exception...session state doesn't really exist.</p>
<p>Now I can mock out calls to HttpContext.Current.Session in my tests, what I can't mock out is calls to AppSession...any ideas on how I might get around this?</p>
http://stackoverflow.com/questions/46214/good-ways-to-improve-jquery-selector-performance17Good ways to improve jQuery selector performance?JC Grubbs2008-09-05T16:22:26Z2009-05-13T15:16:22Z
<p>I'm looking for any way that I can improve the selector performance of a jQuery call. Specifically things like this:</p>
<p>Is <code>$("div.myclass")</code> faster than <code>$(".myclass")</code></p>
<p>I would think it might be, but I don't know if jQuery is smart enough to limit the search by tag name first, etc. Anyone have any ideas for how to formulate a jQuery selector string for best performance?</p>
http://stackoverflow.com/questions/830569/using-visible-and-first-child-together-in-jquery0Using :visible and :first-child together in jQueryJC Grubbs2009-05-06T16:45:56Z2009-05-06T16:54:35Z
<p>I'm trying to use the ":visible" and ":first-child" pseudo-selectors together in jQuery and it doesn't seem to be working out. I have the following HTML:</p>
<pre><code><div>
<a class="action" style="display:none;">Item One</a>
<a class="action">Item One</a>
<a class="action">Item One</a>
</div>
</code></pre>
<p>And the following jQuery call:</p>
<pre><code>$("div a.action:visible:first-child").addClass("first");
</code></pre>
<p>But it never seems to find the right element...it finds the first element but not the first <strong>visible</strong> element. I've even tried swapping the selector order ":first-child:visible" instead of ":visible:first-child" and that doesn't work either. Any ideas?</p>
http://stackoverflow.com/questions/815465/ways-to-workaround-whole-page-caching-in-asp-net-mvc/815543#8155434Answer by JC Grubbs for Ways to workaround whole page caching in ASP.NET MVCJC Grubbs2009-05-02T20:23:27Z2009-05-03T00:49:04Z<p>I've done this with option 2 (using Html.RenderAction) with pretty good success. I also created different base classes for my controllers, one that caches and one that doesn't so that I put all of my cached actions in one place. I don't do this very often so it's not too bad to isolate these actions. With a combination of caching and a GZip compression filter I wrote I get pretty blazing performance out of MVC.</p>
<p>EDIT: I just finished a blog post on adding simple compression to ASP.NET MVC at <a href="http://www.thegrubbsian.com/?p=202" rel="nofollow">http://www.thegrubbsian.com/?p=202</a></p>
http://stackoverflow.com/questions/720042/how-do-you-get-server-blocks-to-format-well-in-visual-studio16How do you get server blocks <% %> to format well in Visual Studio?JC Grubbs2009-04-06T01:48:44Z2009-04-08T02:38:53Z
<p>I'm using ASP.NET MVC a lot recently which means using server blocks a bunch. Visual Studio does this strange thing when I type:</p>
<pre><code><% } %>
</code></pre>
<p>and hit enter, I get this:</p>
<pre><code><%
}
%>
</code></pre>
<p>Which is unsightly and generally the most horrible thing I've ever seen. I've customized the Ctrl+K+D behavior pretty heavily and when I do this I get everything to look the way I want except for this one case. Anyone have any suggestions on how to customize this?</p>
http://stackoverflow.com/questions/612951/can-you-use-asp-net-mvc-futures-library-and-mvc-source-code-side-by-side2Can you use ASP.NET MVC Futures library and MVC source code side by side?JC Grubbs2009-03-04T23:20:47Z2009-04-05T14:29:02Z
<p>I'm trying to using the Html.RenderAction<> method from the ASP.NET MVC Futures library. However, I can only make this work if my project references the System.Web.Mvc assembly in the GAC. If I include the System.Web.Mvc source code as a project in my solution, then everything with Microsoft.Web.Mvc blows up. Anyone else have this experience? Ideas?</p>
http://stackoverflow.com/questions/44270/order-an-array-like-another-array-in-c1Order an Array like another Array in C#JC Grubbs2008-09-04T17:37:04Z2009-03-23T16:28:55Z
<p>I'm looking for the best algorithm to take array A {0,1,2,3} and make order it like array B {3,1,0,2}. Any ideas?</p>
http://stackoverflow.com/questions/52312/what-is-the-real-overhead-of-try-catch-in-c21What is the real overhead of try/catch in C#?JC Grubbs2008-09-09T16:36:09Z2009-03-09T00:17:35Z
<p>So, I know that try/catch does add some overhead and therefore isn't a good way of controlling process flow, but where does this overhead come from and what is it's actual impact?</p>
http://stackoverflow.com/questions/641600/modelfactory-in-asp-net-mvc-to-solve-renderpartial-issue/649382#649382Comment by JC Grubbs on ModelFactory in ASP.NET MVC to solve 'RenderPartial' issueJC Grubbs2009-09-04T17:30:40Z2009-09-04T17:30:40ZThis is generally the approach I take, but it still smells kind of funny to me. I don't like the fact that the outer view has been provided data that it doesn't need. I have taken to using Html.RenderAction<T>() which seems better than Html.RenderPartial() as a proxy for true sub-controllers but it's still somewhat weak.http://stackoverflow.com/questions/1178406/subsonic-3-update-nullreferenceexception/1215492#1215492Comment by JC Grubbs on Subsonic 3 - Update NullReferenceExceptionJC Grubbs2009-08-12T06:42:40Z2009-08-12T06:42:40ZYikes...took me like 2 hours tonight fighting with this issue. Rob, is there any way we (the community) can help speed up the releases? I love SubSonic, but I'm having trouble recommending the 3.0 release with all the bugs I've been experiencing. If there's anything I/we can do beyond filing reports I'd be happy to do it.http://stackoverflow.com/questions/1046871/are-there-advantages-to-dividing-application-databases-by-usage-pattern/1046906#1046906Comment by JC Grubbs on Are there advantages to dividing application databases by usage pattern?JC Grubbs2009-06-26T02:30:44Z2009-06-26T02:30:44ZSo it sounds like nobody has any clear technical reasons why I should or should not divide these databases. But, there is some "development" and "process" reasons why I might want to leave them consolidated. Does that sound about right?http://stackoverflow.com/questions/308816/any-good-free-net-profiler/446908#446908Comment by JC Grubbs on Any Good Free .NET Profiler?JC Grubbs2009-05-26T15:31:13Z2009-05-26T15:31:13ZWhew...I thought I was gonna have to shell out a pile of cash for ANTS ;) I love Red-Gate but c'mon...that's too much to spend on profiling.http://stackoverflow.com/questions/720042/how-do-you-get-server-blocks-to-format-well-in-visual-studio/721957#721957Comment by JC Grubbs on How do you get server blocks <% %> to format well in Visual Studio?JC Grubbs2009-04-18T23:52:43Z2009-04-18T23:52:43ZI'm not familiar with using macros in Visual studio...can I essentially attach this to Ctrl+K+D?http://stackoverflow.com/questions/43111/linq-to-sql-for-self-referencing-tables/413555#413555Comment by JC Grubbs on LINQ to SQL for self-referencing tables?JC Grubbs2009-03-09T20:29:45Z2009-03-09T20:29:45ZI think this is a great idea, but I get an error when trying to implement this. It says the the "WithPartnerId" extension methods have no supported translation to SQL. Any ideas?http://stackoverflow.com/questions/613451/error-when-i-try-to-use-the-mvc-futures-library-with-the-asp-net-mvc-source-code/614659#614659Comment by JC Grubbs on Error when I try to use the MVC Futures library with the ASP.NET MVC source code in the same solution.JC Grubbs2009-03-05T15:11:31Z2009-03-05T15:11:31ZThanks Craig, I did get a response from the MVC team on this and it looks like the Microsoft.Web.Mvc assembly references the strong named assembly for System.Web.Mvc so the only way to solve this is to recompile the MVC Futures source...I haven't been able to find the Futures source yet though.http://stackoverflow.com/questions/613451/error-when-i-try-to-use-the-mvc-futures-library-with-the-asp-net-mvc-source-code/613465#613465Comment by JC Grubbs on Error when I try to use the MVC Futures library with the ASP.NET MVC source code in the same solution.JC Grubbs2009-03-05T04:08:45Z2009-03-05T04:08:45ZIf I remove the reference to Microsoft.Web.Mvc then everything works perfectly. Add it back in and kaboom.http://stackoverflow.com/questions/590900/ninject-where-do-you-keep-your-reference-to-the-kernel/591352#591352Comment by JC Grubbs on NInject: Where do you keep your reference to the Kernel?JC Grubbs2009-02-26T16:43:28Z2009-02-26T16:43:28ZThat sounds like exactly what I want...can you post some code for this?http://stackoverflow.com/questions/590900/ninject-where-do-you-keep-your-reference-to-the-kernel/590988#590988Comment by JC Grubbs on NInject: Where do you keep your reference to the Kernel?JC Grubbs2009-02-26T16:42:24Z2009-02-26T16:42:24ZNew post is here: <a href="http://stackoverflow.com/questions/591362/implementing-onepersessionbehavior-in-ninject" rel="nofollow" title="implementing onepersessionbehavior in ninject">stackoverflow.com/questions/591362/…</a>http://stackoverflow.com/questions/590900/ninject-where-do-you-keep-your-reference-to-the-kernel/590988#590988Comment by JC Grubbs on NInject: Where do you keep your reference to the Kernel?JC Grubbs2009-02-26T16:04:16Z2009-02-26T16:04:16ZOk, so that makes sense. What I need to do is change the arguments in WithArguments() each time I ask for a type...is there any way to do this? Ultimately what I'm trying to do is implement a OnePerSessionBehavior and I want the binding to inject current arguments for each session.http://stackoverflow.com/questions/590900/ninject-where-do-you-keep-your-reference-to-the-kernel/590988#590988Comment by JC Grubbs on NInject: Where do you keep your reference to the Kernel?JC Grubbs2009-02-26T15:26:14Z2009-02-26T15:26:14ZI agree I don't want to pass the container around, but could I stash it in an Application variable for instance? My problem is that every time I do new StandardKernel(new CustomModule()) I get new instances of everything.http://stackoverflow.com/questions/427287/ninject-on-asp-net-session-stateComment by JC Grubbs on Ninject on asp.net Session stateJC Grubbs2009-02-26T04:20:25Z2009-02-26T04:20:25ZI would also like an answer to this question!http://stackoverflow.com/questions/444754/can-you-create-custom-events-on-non-uicomponent-based-objects-in-flex-3/444824#444824Comment by JC Grubbs on Can you create custom events on non-UIComponent based objects in Flex 3?JC Grubbs2009-01-14T21:48:02Z2009-01-14T21:48:02ZThanks man...you just saved a Flex newbie ;)http://stackoverflow.com/questions/142090/c-lambda-expressions-or-delegates-as-a-properties-or-arguments/142112#142112Comment by JC Grubbs on C# Lambda Expressions or Delegates as a Properties or ArgumentsJC Grubbs2008-09-26T21:34:58Z2008-09-26T21:34:58ZCan you expand on the inheritance point?