User Tomas Lycken - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T20:39:27Zhttp://stackoverflow.com/feeds/user/38055http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1032405/how-do-i-use-navigational-properties-as-primary-keys-in-entity-framework-net-42How do I use Navigational Properties as Primary Keys in Entity Framework (.Net 4.0)?Tomas Lycken2009-06-23T12:55:12Z2009-11-22T05:46:29Z
<p>I'm trying out the <em>Model First</em> approach introduced in Entity Framework with VS2010/.Net 4.0, and now I don't really know how to do this. I start out with the following Entities:</p>
<pre><code>Contact Event
******* *****
Id (Int32, not null, pk) Id (Int32, not null, pk)
Name (Name, not null) Name (String, not null)
Address (Address, not null) Duration (Duration, not null)
Email (String)
Phone (String)
</code></pre>
<p>where <code>Name</code>, <code>Address</code>, and <code>Duration</code> are complex types that I defined.</p>
<p>Now, I want to add an <code>RSVP</code> Entity, which works as a many-to-many mapping from <code>Contacts</code> to <code>Events</code>, but also holds some extra information in a complex type I called <code>Payment</code>. The table would probably look something like this:</p>
<pre><code>RSVP
****
ContactId (int, not null, pk)
EventId (int, not null, pk)
Payment_Date (datetime, not null)
Payment_Amount (double, not null)
</code></pre>
<p>When try to construct this entity in the Model Designer, I want to add the <code>ContactId</code> and <code>EventId</code> fields by adding many-to-many relationships to the respective tables, but when I do so I can't select the two fields to be the primary key of the table (or the Entity Key of the entity).</p>
<p>How do I do this?</p>
http://stackoverflow.com/questions/524905/handleerror-attribute-does-not-seem-to-act-at-all2[HandleError] attribute does not seem to act at all...Tomas Lycken2009-02-08T00:55:59Z2009-11-19T15:58:54Z
<p>I am having problems using the [HandleError] attribute on my Controller Actions - it doesn't seem to work at all (i.e. it doesn't matter if the filter is there or not - I get the same results...). When an Exception is thrown, I get the standard red-toned Server Error in '/' Application error page instead of my custom view.</p>
<p>I have found a couple of other threads on the subject here on SO, and in most cases it seems that setting the customErrors option to On in web.config solved the problem. It has not for me, so I need to find a different solution.</p>
<p>My controller action:</p>
<pre><code>[HandleError]
public ActionResult Index()
{
throw new Exception("oops...");
return View();
}
</code></pre>
<p>In my web.config file</p>
<pre><code><customErrors mode="On"></customErrors>
</code></pre>
<p>I have made sure that the Error.aspx file is in the Shared directory, too. What am I missing?</p>
<p>I am running ASP.NET MVC RC Refresh.</p>
http://stackoverflow.com/questions/1737427/assignments-i-e-code-kata-for-coding-dojos/1737444#17374441Answer by Tomas Lycken for Assignments, i.e. Code Kata, for Coding DojosTomas Lycken2009-11-15T12:40:24Z2009-11-15T12:40:24Z<p>To start with, there seems to be a couple of Kata's posted on the <a href="http://codekata.pragprog.com/codekata/" rel="nofollow">Code Kata blog</a> which was linked to in the wiki article on <a href="http://en.wikipedia.org/wiki/Code%5FKata" rel="nofollow">Code Kata</a>.</p>
<p>If you have already played around with those, there are more than 250 programming/math puzzles available on <a href="http://www.projecteuler.net" rel="nofollow">Project Euler</a>.</p>
http://stackoverflow.com/questions/1732556/how-would-you-plan-a-learn-programming-curriculum-for-beginners/1732614#17326144Answer by Tomas Lycken for How would you plan a "learn programming" curriculum for beginners?Tomas Lycken2009-11-13T23:48:19Z2009-11-13T23:48:19Z<p>I would start by asking <em>why</em> they want to learn programming. Eventually, they'll probably end up learning lots of different types and usages of writing your own code, but first: <strong>ask what their main interest is</strong>. Do they want to do web programming? Desktop? Something else? Are they interested in programming because they have a specific task they want to complete, or just because it sounds so exciting? Do they want to learn quick and hacky stuff for personal use, or do they want to learn in "the right way" from the beginning? Also, are <em>you</em> going to be the teacher, or is it OK to forward them to a local university to take a class or two?</p>
<p>Depending on the novice's answer to those first questions, there are a couple of different ways to proceed.</p>
<p>To someone who has never ever seen a line of code before, and has no particular goal with learning, for example <strong>python</strong> could be a good place to start - mainly since it's quite readable compared to many other languages (no confusing { } blocks or other confusing symbols), and also because it forces the programmer to learn indenting from the beginning (which you'll want if you're going to be the teacher...).</p>
<p>If they are interested in a more specific task, and you know an environment in which that task can be fulfilled, just start showing the basics that they'll need to get the job done, and explain programming theory along the way. If they're interested, they'll learn the rest on the internetz ;)</p>
<p>On the other hand, if they want to learn "real" programming, and - say - start their own business, recommend them a book. Someone who gets paid to teach programming (hopefully) does it better.</p>
<p><hr></p>
<p>Sorry for the long post - but it's not an easy question to answer... =)</p>
http://stackoverflow.com/questions/1727949/add-a-simple-route/1727998#17279981Answer by Tomas Lycken for Add a simple routeTomas Lycken2009-11-13T08:54:25Z2009-11-13T08:54:25Z<p>In your <code>global.asax.cs</code> file, you add the following lines:</p>
<pre><code>routes.mapRoute(
// The name of the new route
"NewRoute",
// The url pattern
"View/{id}",
// Defaulte route data
new { controller = "Home", action = "Index", id = "078x756" });
</code></pre>
<p>Make sure you add them <em>before</em> the registration of the default route - the ASP.NET MVC Framework will look throught the routes in order and take the first one that matches your url. Phil Haack's <a href="http://haacked.com/archive/2008/03/13/url-routing-debugger.aspx" rel="nofollow">Routing Debugger</a> is a valuable tool when troubleshooting this.</p>
http://stackoverflow.com/questions/1700932/how-can-i-not-repeat-this-code-in-jquery/1700990#17009901Answer by Tomas Lycken for How can I not repeat this code in jquery?Tomas Lycken2009-11-09T13:27:34Z2009-11-09T13:27:34Z<p>You're merely running to much code inside your if block. Try this instead:</p>
<pre><code>$('#accountLoginButton').click(function() {
if($('#topSubscribe').is(":visible")) {
$('#topSubscribe').slideUp();
}
$('#topLogin').slideToggle('fast');
}
</code></pre>
<p>Or you can, as several others have proposed, factor out the repeated code into a separate function:</p>
<pre><code>$('#accountLoginButton').click(function() {
if($('#topSubscribe').is(":visible")) {
$('#topSubscribe').slideUp(function(){
$('#topLogin').slideToggle('fast');
});
} else {
$('#topLogin').slideToggle('fast');
}
});
</code></pre>
<p>EDIT: Using <code>.slideToggle()</code> instead of the if block.</p>
http://stackoverflow.com/questions/1551503/dependency-injection-and-asp-net-membership-providers/1552081#15520811Answer by Tomas Lycken for Dependency injection and ASP.Net Membership ProvidersTomas Lycken2009-10-11T23:32:32Z2009-10-11T23:32:32Z<p>The simplest way to do dependency injection that I've seen (and actually the only one I've used so far...) is to have a constructor of your dependent class take the interface as a parameter, and assign it to a private field. If you want, you can also add a "default" constructor, which chains to the first one with a default value.</p>
<p>Simplified, it would look something like this:</p>
<pre><code>public class DependentClass
{
private IDataStore _store;
// Use this constructor when you want strict control of the implementation
public DependentClass(IDataStore store)
{
this._store = store;
}
// Use this constructor when you don't want to create an IDataStore instance
// manually every time you create a DependentClass instance
public DependentClass() : this(new DefaultDataStore()) { }
}
</code></pre>
<p>The concept is called "Constructor chaining", and there's a lot of articles on the web on how to do it. I find <a href="http://www.asp.net/learn/mvc/tutorial-29-cs.aspx" rel="nofollow">this tutorial</a> very explanatory of the DI pattern.</p>
http://stackoverflow.com/questions/1551263/getjson-sends-null-parameters-to-mvc-controller/1551289#15512892Answer by Tomas Lycken for $.getJSON Sends Null Parameters to MVC ControllerTomas Lycken2009-10-11T17:56:46Z2009-10-11T17:56:46Z<p>You probably have a routing issue - try applying either of these two fixes:</p>
<ol>
<li><p>(Easy but maybe a little ugly)<br />
Rename the <code>numberOf</code> parameter to <code>id</code>, to enable it to be picked up by the default route.</p></li>
<li><p>(A little more work, but your code will look better - at least in this method)<br />
Add the following route to your route colleciton in global.asax.cs:</p>
<pre><code>routes.MapRoute(
"ContactsRoute",
"Contacts/GetContacts/{numberOf}",
new { controller = "Contacts", action = "GetContacts", numberOf = null }
);
</code></pre></li>
</ol>
http://stackoverflow.com/questions/1550861/asp-net-how-to-open-up-a-form-in-a-new-window-in-asp-net/1550931#15509310Answer by Tomas Lycken for ASP Net - How to open up a form in a new window in ASP.NETTomas Lycken2009-10-11T15:17:03Z2009-10-11T15:17:03Z<p>You should do that with javascript, for example using <code>window.open()</code>.</p>
http://stackoverflow.com/questions/1550642/how-can-i-get-jquery-load-to-complete-before-fadeout-fadein/1550646#15506462Answer by Tomas Lycken for How can I get jQuery load() to complete before fadeOut/fadeIn?Tomas Lycken2009-10-11T13:02:42Z2009-10-11T13:07:51Z<p>Use callbacks to the control the order of the calls.</p>
<pre><code>var $data = $('#data');
$data.fadeOut('slow', function() {
$data.load('/url/', function() {
$data.fadeIn('slow');
});
});
</code></pre>
<p><em>(Note: I'm not 100% sure about if using</em> <code>var $data = ...</code> <em>and</em> <code>$data.doStuff()</code> <em>will actually work - if it does, it saves you from having to look up the div in the DOM tree every time, but if it doesn't, just remove the first line and use</em> <code>$('#data')</code> <em>everywhere...</em></p>
http://stackoverflow.com/questions/1536475/db-connection-failed-while-testing/1536502#15365022Answer by Tomas Lycken for DB connection failed while testingTomas Lycken2009-10-08T08:48:55Z2009-10-08T08:48:55Z<p>The problem is that when running the unit tests, you need to have a connection string set in the App.config file of the test project in order for Entity Framework to find it.</p>
<p>However, if you're doing unit testing you most likely don't want to access the db at all, but rather mock up some dummy objects to test against. (If this is hard to do in your code as it is, you might need some refactoring of your code...)</p>
<p>A third possible scenario is that you're doing <em>integration</em> testing, and thus want to access <em>a</em> real db when testing - however, it doesn't have to be <em>the</em> real db. It can be any db with the same database schema. I'd recommend setting up a dummy db with some dummy records in it, which you can perform tests against (and which you put a connectionstring for in the App.config file in the test project) that will not grow and become slower when the "real" db does.</p>
http://stackoverflow.com/questions/1517083/how-to-get-the-resulting-javascript-from-ajaxoptions-in-asp-net-mvc-framework/1517142#15171420Answer by Tomas Lycken for How to get the resulting JavaScript from AjaxOptions in ASP.NET MVC Framework?Tomas Lycken2009-10-04T19:06:12Z2009-10-04T19:06:12Z<p>You could probably do this a lot easier by writing your own helper from scratch (i.e. don't make calls to any of the <code>Html.ActionLink()</code>/<code>Ajax.ActionLink()</code> methods) simply by using <code>Url.Action()</code> instead.</p>
<p>For example, it's pretty trivial to do this:</p>
<pre><code>public static string NonEncodedUrl(this HtmlHelper helper,
string linkAction, string text)
{
// Get a new UrlHelper instance in the current context
var url = new UrlHelper(helper.ViewContext.RequestContext);
return String.Format("<a href=""{0}"">{1}</a>", url.Action(linkAction), text);
}
</code></pre>
<p>You can of course extend this with overloads and extra parameters to suit your own needs.</p>
http://stackoverflow.com/questions/1506352/html-helper-method-not-outputting-results-in-mvc-view-page/1506372#15063720Answer by Tomas Lycken for Html helper method not outputting results in mvc view pageTomas Lycken2009-10-01T20:45:51Z2009-10-01T22:04:35Z<p>What does the class declaration look like? Make sure you have made the class itself <code>static</code> as well:</p>
<pre><code>public static class MyHelpers
{
public static string OutputBlah(this HtmlHelper helper)
{
return helper.InnerWriter.ToString();
}
}
</code></pre>
<p>And then use the regular <code>Html</code> property of type <code>HtmlHelper</code> in the <code>View</code>:</p>
<pre><code><%= Html.OutputBlah() %>
</code></pre>
<p><hr /></p>
<p>Answer to follow-up question from OP:</p>
<p>When declaring a method like this (<code>static</code> method in <code>static class</code>, and with the first parameter with the <code>this</code> keyword), you define an <a href="http://msdn.microsoft.com/en-us/library/bb383977.aspx" rel="nofollow"><em>Extension Method</em></a> - a feature that was introduced in C# 3.0. The basic idea is that you define a method that is hooked into another class, thus <em>extending</em> it.</p>
<p>In this case, you're extending the <code>HtmlHelper</code> class (becuase that is the type of the <code>this</code> parameter), and thereby making <code>.OutputBlah()</code> available on any instance of <code>HtmlHelper</code>. If you examine the <a href="http://msdn.microsoft.com/en-us/library/system.web.mvc.viewpage.html.aspx" rel="nofollow"><code>Html</code></a> property of the <a href="http://msdn.microsoft.com/en-us/library/system.web.mvc.viewpage.aspx" rel="nofollow"><code>ViewPage</code></a>, you'll notice that it is in fact of type <code>HtmlHelper</code>.<br />
So when you use <code>Html.OutputBlah()</code> in your view, you're actually accessing the <code>HtmlHelper</code> instance contained in the viewpage's <code>Html</code> property, and calling your own extension method on it.</p>
http://stackoverflow.com/questions/1506378/net-function-to-determine-first-last-day-etc/1506406#1506406-1Answer by Tomas Lycken for .NET Function to determine first, last day, etc.Tomas Lycken2009-10-01T20:52:59Z2009-10-01T20:52:59Z<p>Yes, the <code>.NET Framework</code> will support that without any problems ;)</p>
<p>But seriously - you should be able to write code that does that fairly easily. If not, ask a question when you get stuck, and we'll help out. But you won't need any external assemblies - just go with a standard C# class =)</p>
http://stackoverflow.com/questions/1494312/ajax-json-calls-in-mvc-to-filter-list-in-my-view/1494366#14943663Answer by Tomas Lycken for AJAX JSON calls in MVC to filter List in my ViewTomas Lycken2009-09-29T19:06:22Z2009-09-29T19:06:22Z<p>To start with, you probably want to be able to return only the partialview if the request is made by an AJAX call. This can be done quite easily:</p>
<pre><code>if (Request.IsAjaxRequest())
{
return PartialView("NewsList", list);
} else {
return View(list);
}
</code></pre>
<p>Or, doing the same thing but in one line:</p>
<pre><code>return (Request.IsAjaxRequest() ? PartialView("NewsList", list) : View(list));
</code></pre>
<p>To keep your action method testable without having to mock the <code>HttpContext</code>, you can have the boolean value as an input parameter, which is populated with an attribute. See point 7 in <a href="http://weblogs.asp.net/rashid/archive/2009/04/01/asp-net-mvc-best-practices-part-1.aspx" rel="nofollow">this excellent blog post</a> for details.</p>
<p>Also, for performing the AJAX call on the client side, you might want to use <a href="http://www.jquery.com" rel="nofollow">jQuery</a>. Their <a href="http://docs.jquery.com/ajax" rel="nofollow">AJAX API</a> kicks behinds =)</p>
http://stackoverflow.com/questions/1489982/jquery-elements-created-using-appendhtml-not-available/1489988#14899882Answer by Tomas Lycken for jQuery elements created using .append(html) not availableTomas Lycken2009-09-29T00:24:40Z2009-09-29T00:24:40Z<p>When adding items dynamically, the <code>click</code> handler will not be registered on the new items. Instead, use <code>.live()</code>:</p>
<pre><code>$(document).ready(function() {
$(".mapLink").live('click', function(){
pos = $(this).attr("id");
alert(pos);
});
});
</code></pre>
http://stackoverflow.com/questions/1482601/how-to-make-a-navigation-such-as-this/1482606#14826061Answer by Tomas Lycken for how to make a navigation such as thisTomas Lycken2009-09-27T02:03:43Z2009-09-27T02:03:43Z<p>It's probably pretty easy to find out by looking at <a href="http://media.nathanborror.com/javascript/bootstrap.js" rel="nofollow">their source code</a>. If you want to see what's running, use <a href="https://addons.mozilla.org/en-US/firefox/addon/1843" rel="nofollow">Firebug</a>.</p>
http://stackoverflow.com/questions/1480990/css-indentation/1481004#14810040Answer by Tomas Lycken for css indentationTomas Lycken2009-09-26T11:12:51Z2009-09-26T11:12:51Z<p>If the pictures will always be the same width, you can do this pretty easily. Place the picture in one <code>div</code>, and the content in another. Then use the following css:</p>
<pre><code>div.pic {
position: relative;
float: left;
padding-right: 10px;
clear: left;
width: 65px; /* The width of the picture */
}
div.content {
position: relative;
float: left;
clear: right;
width: 450px; /* The container's width minus (picture + 10px padding)
}
</code></pre>
http://stackoverflow.com/questions/1480103/how-to-create-public-string-property-with-drop-down-list-of-options/1480123#14801232Answer by Tomas Lycken for How to create Public String property with drop-down list of options?Tomas Lycken2009-09-26T00:54:07Z2009-09-26T00:54:07Z<p>No. You should create an <code>enum</code> type with your string choices, and make the property of that type. Example:</p>
<pre><code>public enum Choices
{
NiceChoice,
PoorChoice
}
public class Chooser
{
public Choices Choice { get; set; }
}
</code></pre>
http://stackoverflow.com/questions/1476669/loading-a-partial-view-in-mvc-asp-net-using-jquery/1476747#14767471Answer by Tomas Lycken for Loading a Partial View in MVC ASP.Net using jQuery.Tomas Lycken2009-09-25T11:20:28Z2009-09-25T11:20:28Z<p>You need to stop the "normal" handling of the link click. In most browsers, this is done by letting the click handler return <code>false</code>, but in Firefox you can also use <a href="https://developer.mozilla.org/en/DOM/event.preventDefault" rel="nofollow"><code>event.preventDefault()</code></a>, like this:</p>
<pre><code>$(function() { // Shorthand for the $(document).ready(function() { - does the same
$('#jQuerySubmit').click(function(ev) { // Takes the event as a parameter
ev.preventDefault();
$('#siteList').load('/Site/IndexSearch/');
return false;
});
});
</code></pre>
<p>If there is a possibility that more links will be loaded with AJAX that you want to apply this behavior to, you can use <code>.live()</code> instead of <code>.click()</code>, like this:</p>
<pre><code>$(function() {
$('#jQuerySubmit').live('click', function(ev) {
// The behavior is now applied to all links that are ever loaded on the page
// that have the id set to jQuerySubmit.
...
});
});
</code></pre>
http://stackoverflow.com/questions/1474739/creating-a-custom-property-in-entity-framework/1474779#14747792Answer by Tomas Lycken for Creating a custom property in Entity FrameworkTomas Lycken2009-09-25T00:01:19Z2009-09-25T00:01:19Z<p>I think you're taking detours to get where you want. I haven't used either of these approaches (recently), so they might not do <em>exactly</em> what you're after, but you could try this:</p>
<ol>
<li>Create a partial class file right next to the .edmx model, which has the same name as your entity. </li>
<li>In it, specify the property you want as a read-only property, that does the calculations on each <code>get</code>.</li>
</ol>
http://stackoverflow.com/questions/1474493/determine-if-google-earth-is-installed-on-windows/1474506#14745060Answer by Tomas Lycken for Determine if Google Earth is installed (on Windows)Tomas Lycken2009-09-24T22:24:56Z2009-09-24T22:24:56Z<p>See if you can find some registry entries that Google Earth creates upon installation (and removes when un-installed). If they exist, the program most likely does too. And the users are much less likely to tamper with the registry than with files or folders...</p>
http://stackoverflow.com/questions/1473370/asp-net-c-sql-count/1473383#14733839Answer by Tomas Lycken for ASP.net C# SQL count(*)Tomas Lycken2009-09-24T18:30:26Z2009-09-24T19:19:55Z<p>As the SQL query won't return a dataset but a <em>scalar</em>, you should use the <code>.ExecuteScalar()</code> method:</p>
<pre><code>int count = (int)db.ExecuteScalar(System.Data.COmmandType.Text, "SELECT count(*) as counter FROM [Table] where [Table].[Field] = 'test'");
</code></pre>
<p><em>(It would be easier for us to provide an answer if you told us what type the <code>db</code> instance is of...)</em></p>
http://stackoverflow.com/questions/1473378/database-relation-many-to-many/1473400#14734004Answer by Tomas Lycken for Database relation many to manyTomas Lycken2009-09-24T18:33:26Z2009-09-24T18:33:26Z<p>I'm not sure I understand your exact scenario, but to create a many-to-many relationship, you simply create a "relationship table", in which you store id's for the two records you want to link.</p>
<p>Example:</p>
<pre>Products
********
ProductID (PK)
Price
Retailers
*********
RetailerID (PK)
Name
ProductRetailerRelationships
****************************
ProductID
RetailerID
</pre>
http://stackoverflow.com/questions/1469875/calling-another-jquery-function-if-confirm-is-true/1469907#14699071Answer by Tomas Lycken for Calling another jQuery function if confirm is true..Tomas Lycken2009-09-24T05:36:37Z2009-09-24T05:36:37Z<p>You're not stopping the "normal" submit event from propagating - try adding <code>return false</code> after the <code>.validationEnginge()</code> method (alternatively moving it out of the <code>if</code> block):</p>
<pre><code>jQuery("#adminForm_1").submit(function () {
var empty = false;
jQuery(":input", "#adminForm_1").each(function () {
empty = (jQuery(this).val() == "") ? true : empty;
});
if (empty) {
if (confirm('You have not filled out all of the fields, do you wish to continue?')) {
jQuery("#adminForm_1").validationEngine({
ajaxSubmit: true,
ajaxSubmitFile: "/index.php?option=com_database&view=tripdetails&Itemid=12&client=1&task=save",
ajaxSubmitMessage: "Client Trip Details Saved",
inlineValidation: false,
success: false,
failure: function () {}
});
}
return false;
}
});
</code></pre>
<p>Or even</p>
<pre><code>jQuery("#adminForm_1").submit(function () {
var empty = false;
jQuery(":input", "#adminForm_1").each(function () {
empty = (jQuery(this).val() == "") ? true : empty;
});
if (empty) {
if (confirm( ... )) {
jQuery("#adminForm_1").validationEngine({ ... });
}
}
return false;
});
</code></pre>
http://stackoverflow.com/questions/1469258/css-override-on-a-class/1469270#14692700Answer by Tomas Lycken for css override on a classTomas Lycken2009-09-24T00:38:39Z2009-09-24T00:38:39Z<p>You haven't specified a style for the <code>.odeurbox</code> style. Add the following to your stylesheet:</p>
<pre><code>.odeurbox { width: 67px; }
</code></pre>
http://stackoverflow.com/questions/1468993/how-can-i-get-asp-net-mvcs-updatemodel-to-ignore-primary-key-colum/1469114#14691142Answer by Tomas Lycken for How can I get ASP.NET MVC's UpdateModel to ignore primary key colum?Tomas Lycken2009-09-23T23:52:59Z2009-09-23T23:52:59Z<p>Don't use <code>UpdateModel</code> when you're not <em>updating</em> a model object. In this case, you're <em>creating</em> one... ScottGu has some nice examples in <a href="http://weblogs.asp.net/scottgu/archive/2007/05/19/using-linq-to-sql-part-1.aspx" rel="nofollow">this blog post</a>.</p>
<p>If you want an easier way to databind, ASP.NET MVC will automatically do a lot of the work for you, if you use the right naming conventions. For example, a form with the input fields "firstName", "lastName" and "birthDate" could send its data to an action method with the following signature:</p>
<pre><code>public ActionResult Create(string firstName, string lastName, DateTime birthDate)
</code></pre>
<p>and the parameters would be populated with the form values. Note that the data type doesn't have to be a string - in fact, you can even bind to your own classes. If you have this class...</p>
<pre><code>public class Person
{
public string FirstName { get; set; }
public string LastName { get; set; }
public DateTime Birthdate { get; set; }
}
</code></pre>
<p>...and a form with the input fields "person_FirstName", "person_LastName" and "person_BirthDate" you can bind it to a new Person object immediately:</p>
<pre><code>public ActionResult Create(Person person) { ... }
</code></pre>
<p>Nice, huh? =)</p>
http://stackoverflow.com/questions/1452522/how-do-i-convert-an-httprequestbase-into-an-httprequest-object/1452534#14525340Answer by Tomas Lycken for How do I convert an HttpRequestBase into an HttpRequest object?Tomas Lycken2009-09-21T01:37:27Z2009-09-21T01:37:27Z<p>Typically when you need to access the <code>HttpContext</code> property in a controller action, there is something you can do better design wise.</p>
<p>For example, if you need to access the current user, give your action method a parameter of type <code>IPrincipal</code>, which you populate with an <code>Attribute</code> and mock as you wish when testing. For a small example on how, see <a href="http://weblogs.asp.net/rashid/archive/2009/04/01/asp-net-mvc-best-practices-part-1.aspx" rel="nofollow">this blog post</a>, and specifically point 7.</p>
http://stackoverflow.com/questions/1448238/convert-a-microsoft-word-doc-file-to-html-file-using-asp-net-c/1448242#14482421Answer by Tomas Lycken for Convert a Microsoft Word doc file to HTML file using ASP.NET & C#Tomas Lycken2009-09-19T09:41:58Z2009-09-19T09:41:58Z<p>Is it an option to use an <a href="http://www.openoffice.org/" rel="nofollow">OpenOffice</a> API instead of Word, since OpenOffice is free? If so, take a look at <a href="http://www.oooforum.org/forum/viewtopic.phtml?t=37877" rel="nofollow">this forum post</a> and the links in the first answer.</p>
<p>PS. I got there via <a href="http://www.google.com/search?ie=UTF-8&oe=UTF-8&sourceid=navclient&gfns=1&q=openoffice+api+c%23" rel="nofollow">Google</a>...</p>
http://stackoverflow.com/questions/1442016/argumentexception-when-creating-instance-of-object-that-inherits-from-objectconte0ArgumentException when creating instance of object that inherits from ObjectContextTomas Lycken2009-09-18T00:19:47Z2009-09-18T13:18:39Z
<p>I'm loosely following an <a href="http://weblogs.asp.net/rashid/archive/2009/09/13/shrinkr-url-shrinking-service-developed-with-entity-framework-4-0-unity-asp-net-mvc-and-jquery-part-2.aspx" rel="nofollow">excellent series of blog posts by Kazi Manzur Rashid</a> as a learning exercise for learning how to implement some new (for me at least) design patterns, but I'm getting trouble from the start.</p>
<p>I've basically copied his code for the <code>Database</code>, <code>RepositoryBase</code> and <code>RepositoryBaseTests</code> classes, but when I try to run the tests, I get an error message saying </p>
<blockquote>
<p>Unable to create instance of class Booking.Infrastructure.EntityFramework.Repositories.Tests.RepositoryBaseTests. Error: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.ArgumentException: Format of the initialization string does not conform to specification starting at index 0..</p>
</blockquote>
<p>Through the debugger I have verified that the exception is thrown on the constructor for the <code>Database</code> class, which looks like this:</p>
<pre><code>public Database(
IConfigurationManager configurationManager,
string connectionstringName)
: base(
GetConnectionString(configurationManager, connectionstringName),
"BookingEntities")
{ // Nothing happens here }
</code></pre>
<p>The error is thrown when calling the <code>base</code> constructor, and if I'd hard-code the values that I'm currently sending in, it would look like this:</p>
<pre><code>: base("Dummy connStr", "BookingEntities")
</code></pre>
<p>Why doesn't this work?</p>
http://stackoverflow.com/questions/1737427/assignments-i-e-code-kata-for-coding-dojos/1737429#1737429Comment by Tomas Lycken on Assignments, i.e. Code Kata, for Coding DojosTomas Lycken2009-11-15T12:43:34Z2009-11-15T12:43:34ZThe OP specifically asked for non-fizzbuzz answers...http://stackoverflow.com/questions/1737430/need-help-with-web-application-settingsComment by Tomas Lycken on Need help with web application settingsTomas Lycken2009-11-15T12:35:55Z2009-11-15T12:35:55ZSince these are two independent questions, you should really divide them up into two separate posts. Also, when you do that, you can add more descriptive titles that say something about the specific problems instead of just "web application settings".http://stackoverflow.com/questions/1732570/asp-net-mvc-route-returning-404-without-actionComment by Tomas Lycken on ASP.NET MVC route returning 404 without actionTomas Lycken2009-11-13T23:39:28Z2009-11-13T23:39:28ZHm... That's odd. Can you post a screenshot of the routing debugger output=http://stackoverflow.com/questions/1700932/how-can-i-not-repeat-this-code-in-jquery/1700979#1700979Comment by Tomas Lycken on How can I not repeat this code in jquery?Tomas Lycken2009-11-09T13:28:07Z2009-11-09T13:28:07ZIt won't actually remove the repetition, but it'll reduce the number of code lines =)http://stackoverflow.com/questions/1551438/looking-for-direction-on-classic-asp-2-0-resources-coming-from-netComment by Tomas Lycken on Looking for direction on Classic ASP 2.0 Resources (coming from .NET)Tomas Lycken2009-10-11T18:56:57Z2009-10-11T18:56:57ZI would like to know your reasons for beginning development in an environment that hasn't been up to date for almost ten years - and not even in the latest version of it. Is it absolutely impossible to convince whoever is in charge that the project should be built on something a little more recent, like ASP.NET MVC? Even if that would require you to re-write the entire app, I think you will benefit from it. Especially if you have experience with MVC...http://stackoverflow.com/questions/1551263/getjson-sends-null-parameters-to-mvc-controller/1551289#1551289Comment by Tomas Lycken on $.getJSON Sends Null Parameters to MVC ControllerTomas Lycken2009-10-11T18:37:26Z2009-10-11T18:37:26Zaikr437: The reason adding <code>numberOf</code> to the route table works is that the name has to correspond to the name of the parameter in the Action Method.
Kappers: You might want to look into Phil Haack's routing debugger - it can be really useful to determine which route is actually taking care of the request, and which other routes also match but are intercepted. See this blog post for details: <a href="http://haacked.com/archive/2008/03/13/url-routing-debugger.aspx" rel="nofollow">haacked.com/archive/2008/…</a>http://stackoverflow.com/questions/1551069/help-with-2d-array-form-in-asp-net-mvc/1551118#1551118Comment by Tomas Lycken on help with 2d array form in asp.net mvcTomas Lycken2009-10-11T17:21:31Z2009-10-11T17:21:31ZTHis is pretty bad practice in ASP.NET MVC though - you want to stay clear of calls to <code>Request</code> and all it's tail. However, the same could probably be accomplished with a model binder, custom if the standard one can't do it.http://stackoverflow.com/questions/1550642/how-can-i-get-jquery-load-to-complete-before-fadeout-fadein/1550646#1550646Comment by Tomas Lycken on How can I get jQuery load() to complete before fadeOut/fadeIn?Tomas Lycken2009-10-11T15:13:14Z2009-10-11T15:13:14ZAre you saying that my disclaimer at the bottom can be removed? =)http://stackoverflow.com/questions/1550642/how-can-i-get-jquery-load-to-complete-before-fadeout-fadein/1550651#1550651Comment by Tomas Lycken on How can I get jQuery load() to complete before fadeOut/fadeIn?Tomas Lycken2009-10-11T13:09:44Z2009-10-11T13:09:44ZActually, you probably want the <code>.load()</code> call in a callback function to <code>.fadeOut()</code>, as the new content would otherwise be loaded <i>before</i> the div fades out...http://stackoverflow.com/questions/1547633/how-to-edit-scanned-pdfComment by Tomas Lycken on How to edit scanned pdf?Tomas Lycken2009-10-10T10:51:48Z2009-10-10T10:51:48ZWhy don't you want to download any software? There are several (free) image editors out there that will handle pdf files.http://stackoverflow.com/questions/1547608/how-to-make-an-equation-span-the-whole-page-line-in-latexComment by Tomas Lycken on How to make an equation span the whole page / line in LaTeX?Tomas Lycken2009-10-10T10:50:59Z2009-10-10T10:50:59ZAlso, [The Not So Short Introduction To Latex 2e](<a href="http://tobi.oetiker.ch/lshort/lshort.pdf" rel="nofollow">tobi.oetiker.ch/lshort/lshort.pdf</a>) might be able to help you...http://stackoverflow.com/questions/1547595/c-remove-multiple-char-types-from-end-of-string/1547622#1547622Comment by Tomas Lycken on C# Remove multiple char types from end of stringTomas Lycken2009-10-10T10:49:50Z2009-10-10T10:49:50Z+1 for nice-looking linq =)http://stackoverflow.com/questions/1547608/how-to-make-an-equation-span-the-whole-page-line-in-latexComment by Tomas Lycken on How to make an equation span the whole page / line in LaTeX?Tomas Lycken2009-10-10T10:46:20Z2009-10-10T10:46:20ZDo the math symbols in the equation - all the way - display correctly, or does the compiler somewhere stop interpreting math and just print your code?
Could you show us your entire source, so we can double-check it for typos?http://stackoverflow.com/questions/1547614/how-to-get-html-element-coordinates-using-cComment by Tomas Lycken on How to get HTML element coordinates using C#?Tomas Lycken2009-10-10T10:44:18Z2009-10-10T10:44:18ZDo you mean coordinates as in pixels from top and left edges of browser window? As this renders slightly differently in different browsers, I doubt that it's even possible. (And also, it would seem more or less impossible to define which coordinates are "correct", too...)http://stackoverflow.com/questions/1389744/testing-controller-action-that-uses-user-identity-name/1389798#1389798Comment by Tomas Lycken on Testing controller Action that uses User.Identity.NameTomas Lycken2009-10-08T08:20:49Z2009-10-08T08:20:49ZSo do I. On the other hand, mocking IPrincipal just for getting access to the current user's username - and <i>nothing</i> else - is on the edge of overkill... :)