| bio | website | twitter.com/simey |
|---|---|---|
| location | ||
| age | 34 | |
| visits | member for | 4 years, 8 months |
| seen | 2 days ago | |
| stats | profile views | 2,475 |
|
13h |
awarded | Nice Answer |
|
May 17 |
awarded | Notable Question |
|
May 17 |
comment |
JQuery values passed to WebApi is always null +1 for No No No - the only thing I had wrong was the contentType |
|
May 17 |
answered | AutoMapper MapFrom works for calculations? |
|
May 16 |
awarded | Notable Question |
|
May 15 |
answered | ASP.NET MVC locating cs files generated from cshtml? |
|
May 14 |
comment |
web.config transformation and the location element you can also right click on Web.Config.Release and select 'Preview Transform' (in VS2012 for sure and possibly VS2010) |
|
May 14 |
comment |
Avoid web.config inheritance in child web application using inheritInChildApplications @nabeelfarid - I completely agree. If you have a wordpress blog inside a .NET application with a complex web.config it can be a huge pain dealing with clearing it out or preventing inheritance. I think the whole 'location' system is designed more around security for shared hosts that for the compatibility issues most people are finding themselves here for |
|
May 14 |
comment |
Stop inheriting web.config from parent ASP.NET application in IIS 7.5 this is a great solution for something like a Wordpress virtual directory which is hosted in the root of a site with a complex web.config |
|
May 14 |
comment |
Getting attributes of Enum's value @scott but it does let you specify your own order, and exclude values you don't want to display which is nearly always what I actually want |
|
May 13 |
comment |
mvc3 - using partial views in a different area this seems to be necessary even within the area. I haven't ever had any luck with ../.. type relative paths but if there's a way to do that would be interested to hear |
|
May 13 |
answered | mvc3 - using partial views in a different area |
|
May 13 |
awarded | Good Answer |
|
May 12 |
comment |
How to simulate Server.Transfer in ASP.NET MVC? Warning: this seems to cause an error 'The SessionStateTempDataProvider class requires session state to be enabled' although it actually still works. I only see this error in my logs. I'm using ELMAH for error logging and get this error for InProc and AppFabric |
|
May 11 |
comment |
SaveTempData called even though session is disabled Note: I get this error with either AppFabric or standard InProc session state. Originally thought it was AppFabric causing it |
|
May 11 |
comment |
Loading Nested Entities / Collections with Entity Framework IMPORTANT: Don't accidentally use the same variable for both lambda expressions .Include(x => x.Titles.Select(x => x.Title)) or you'll get Cannot convert lambda expression to type 'string' because it is not a delegate type |
|
May 11 |
answered | C# Entity Framework: Can I update a record without querying first? |
|
May 11 |
comment |
EF5 Migration Update-Database -Script Error you do need to restart Visual studio after installing the tools |
|
May 11 |
comment |
Create code first, many to many, with additional fields in association table Note: if you use this approach without Fluent API make sure you check in your database that you only have a composite key with MemberId and CommentId columns and not an additional third column Member_CommentId (or something like that) - which means you didn't have exact matching names across objects for your keys |
|
May 11 |
comment |
EF5 Migration Update-Database -Script Error was skeptical but worked for me - was using command Update-Database -Script -SourceMigration:0 which gets full SQL from scratch |