Tagged Questions

an open source ASP.NET MVC project that allows Technology People to host their Lunches, Flashmobs, Dinners and informal get-togethers.

learn more… | top users | synonyms

22
votes
2answers
20k views

What is ModelState.IsValid valid for in ASP.NET MVC in NerdDinner?

On the NerdDinner example of Professional ASP.NET MVC 1.0 there's a method to create a new dinner as copied bellow (page 89 of the free NerdDinner version). There it checks ModelState.IsValid for ...
20
votes
5answers
2k views

Request for Tutorial to add Openid Support to NerdDinner ASP.NET MVC application

I'm looking learn about ASP.NET MVC and OpenId using the ASP.NET MVC NerdDinner tutorial. I would like to replace the Authentication system in NerdDinner to be OpenId only. I've downloaded the latest ...
7
votes
2answers
347 views

Dependency injection in NerdDinner - actually testing your repository or model

Consider a beginner dealing with Dependency Injection. We're analyzing two relevant classes in NerdDinner. DinnerRepository from the application: FakeDinnerRepository from the tests: They ...
4
votes
2answers
280 views

Do the Nerd Dinner models use best practices for disposing objects?

I've been looking at the Nerd Dinner code and one thing they do in their models, is create an instance of the DataContext like this: public class DinnerRepository { private NerdDinnerDataContext ...
4
votes
3answers
712 views

Can't open NerdDinner project in vs2008

NerdDinner.csproj won't load in vs2008 sp1 with .net 3.5 sp1. Am I not up-to-date on these tools or something? It complains this project type not supported on this installation.
4
votes
4answers
1k views

Simple MVC NerdDinners Lambda Question

In this code from Microsoft's MVC Tutorial NerdDinners: public class DinnerRepository { private NerdDinnerDataContext db = new NerdDinnerDataContext(); // // Query Methods public ...
3
votes
1answer
510 views

MVC, ascx and Javascript best practice(s) - how to create self-containing controls? NerdDinner does it wrong

The question is how to create controls/partial views/edittemplates (ascx files) in ASP.Net MVC2 so that they are "self-containing". Self-containing means here that if some Javascript code should be ...
3
votes
6answers
871 views

ASP.NET MVC: How to transfer more than one object to View method?

I finished NerdDinner tutorial and now I'm playing a bit with project. Index page shows all upcoming dinners: public ActionResult Index() { var dinners = ...
3
votes
1answer
2k views

Display list of values in MVC Detail View

I am new to web apps, MVC, and LinqToSql. I created an MVC web app using the NerdDinner tutorial as a guide. I'm now adding many-to-many relationships to it. And am just running into walls at ...
3
votes
2answers
2k views

How does NerdDinner's AddModelErrors work?

I'm going through the NerDinner free tutorial http://nerddinnerbook.s3.amazonaws.com/Intro.htm I got to somewhere in Step 5 where it says to make the code cleaner we can create an extension method. ...
3
votes
5answers
772 views

In TDD and DDD, how do you handle read-only properties in fakes?

Question How do you handle read-only fields when creating fakes? Background I'm in the beginner stages of using ASP.Net MVC and am using Steven Sanderson's Sports Store and Scott Gu's Nerd Dinner ...
2
votes
1answer
439 views

dotnetopenauth ajax post tutorial

I been looking at nerd dinner 2.0 and I see that for their openid they like a an ajax request. I know you can't go full ajax style(ie I can't stick the webpage in a jquery ui dialog) but you can open ...
2
votes
2answers
846 views

NerdDinner form validation DataAnnotations ERROR in MVC2 when a form field is left blank

Platform: Windows 7 Ultimate IDE: Visual Studio 2010 Ultimate Web Environment: ASP.NET MVC 2 Database: SQL Server 2008 R2 Express Data Access: Entity Framework 4 Form Validation: DataAnnotations ...
2
votes
3answers
393 views

Is the Nerddiner walk-through suitable for ASP.NET MVC 2?

I'm keen to teach myself ASP.NET MVC 2 (coming from a heavy embedded or rich GUI background). If have found the nerddiner walk-through but it is still for ASP.NET MVC 1. The codeplex downloads have ...
2
votes
2answers
180 views

Asp.net MVC validation for non-strings

I originally built my site in MVC 1.0 using the NerdDinner tutorial as a basic outline. Many of the early design decisions were made simply b/c "that's how NerdDinner did it" Since then, it has ...
2
votes
2answers
583 views

Nerddinner inserting longitude and latitude to database MVC

i am facing a problem in the nerddinner, what i am facing: in the DinnerForm.ascx there is a javascript code $(document).ready(function () { NerdDinner.EnableMapMouseClickCallback(); ...
2
votes
3answers
206 views

Common MVC 2 Pitfalls

I'm surprised this hasn't been asked before...or maybe I just don't see it. Anyway, I'm finally straying from the comfort of ASP.NET Web Forms and exploring the world of MVC2. I've done the nerdinner ...
2
votes
1answer
157 views

using NerdDinner as an example, when should the DataContext be disposed

I noticed that NerdDinner doesn't dispose of the DataContext -- ever. That seems very strange to me. They have a Repository class that creates a private member of the data context, which hangs ...
2
votes
3answers
700 views

How does the NerdDinner example's Dinner.GetRuleViolations function return a list?

From what I've read, yield return <value> jumps out of the function the moment the line is executed. However, Scott Guthrie's text indicates that var errors = dinner.GetRuleViolations(); ...
2
votes
1answer
304 views

If NerdDinner had ads, would the Bing Maps compoment have licensing costs?

If I hosted NerdDinner and had google ad-sense would I be a commercial user of Bing Maps / Virtual Earth thus have licensing costs? I've looked and found this question: ...
2
votes
3answers
287 views

How do I get database validation among my rule violations on ASP.NET MVC?

On the NerdDinner example a set of business rules are written to validate the data on a model. Things like empty strings are checked for and by calling modelObject.GetRuleViolations() you can get them ...
1
vote
1answer
103 views

The type or namespace name 'DinnerForm' does not exist in the namespace 'NerdDinner.Models' when trying to implement partial form

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. ...
1
vote
1answer
441 views

NerdDinner Example and issues

I am using VS2010 and Sql Server 2008 in Windows 7 64 bit OS. I have downloaded NERD dinner example and tried to run the example. Everything is fine until I try to login using Open Id. I have tried to ...
1
vote
2answers
164 views

placment of classes in NerdDinner

I am learning ASP.NET MVC and looking at the ASP.NET MVC sample application NerdDinner. The folder "Models" contains a class called Dinner.cs. This is the main Dinner entity. Shouldn't this class be ...
1
vote
1answer
169 views

Missing methods in NerdDinner with Entity Framework setup

I am starting to learn the ASP.Net MVC framework with the help of the "Professional ASP.Net MVC 2" book from Wrox press. It introduces the framework by example of building the NerdDinner web ...
1
vote
1answer
180 views

distancebetween sql function and order by closest

Im using this function to get events within 30 miles, its pretty much the same as the nerd dinner one. But How can I order them by 'closest'..? ALTER FUNCTION [dbo].[NearestEvents] ( @lat real, ...
1
vote
1answer
120 views

ViewResult returns no data

I am using the pattern from NerdDinner. I call Index() in my test Method and I the ViewREsult I get back has no data. So the variable data ends up being null. However, I know that there is data ...
1
vote
1answer
237 views

Dependency Injection, IoC and Mocking finally explained in a simple and understandable way! [closed]

I've been banging my head against the wall trying to understand these concepts for a week now. I was really surprised when I came across with a very understandable and simple explanations of these ...
1
vote
1answer
42 views

Nerd Dinner - labels for textfields are broken

I am trying to learn ASP.NET (since I know C#) so I have decided to follow Nerd Dinner Tutorial. I am having trouble in part 5 of tutorial. I exactly followed tutorial, even pasted whole code to my ...
1
vote
1answer
147 views

Html.Encode question

I'm working through the NerdDinner MVC tutorial and came across this and was wondering about. On page 62 of the pdf they have the following: <asp:Content ID="Main" ...
1
vote
1answer
826 views

ASP.NET MVC: Implementing an OpenID sign-in page ala NerdDinner v2

Consider the log in page on NerdDinner.com: http://www.nerddinner.com/Account/LogOn Some nice features: jQuery effects on the OpenID choice popups for the other major providers Is this revision ...
1
vote
2answers
377 views

Nerd Dinner not catching errors

I'm at the "Handling Edit Errors" (page 67) in chapter 1 of the Professional ASP.NET MVC 1.0 book and I'm running into a problem. The problem is that when I'm editing a dinner and I click save, it's ...
1
vote
1answer
603 views

Creating and Updating many to many relationships in C# asp.net MVC with Linq2Sql

I have created a web app in MVC following the NerdDinner tutorial. I have 2 fields that have many to many relationship with my "dinner". For each "dinner", I need to be able to select one or more ...
1
vote
3answers
741 views

How to create Shared VB Array Initialisors for NerdDinner

I am trying to work my way through the NerdDinner tutorial - and as an exercise I'm converting it to VB as I go. I'm not very far in and after having gotten past the C# Yield statement I'm stuck on ...
0
votes
0answers
62 views

NerdDinner ASP.NET MVC3 unable to run as virtual directory

This is the problem, downloaded NerdDinner ASP.NET MVC3 from http://nerddinner.codeplex.com/ to test the new html5 and mobile features added. Now, this is a strange problem I am unable to solve ...
0
votes
1answer
86 views

System.web.mvc.modelstatedictionary does not contain a definition for addruleviolations

I am getting two errors when trying to build NerdDinner in DinnerController.cs. Here is what I currently have in DinnerController.cs. I am getting errors on the two lines with '**' using System; ...
0
votes
2answers
83 views

The current request for action 'Index' on controller type 'DinnersController' is ambiguous between the following action methods [closed]

I am getting this error after trying to implement paging support. I am on this step of the html tutorial: http://nerddinnerbook.s3.amazonaws.com/Part8.htm
0
votes
1answer
97 views

How to get the 'NerdDinner' OpenID popup window working

So I'm trying to implement OpenID using NerdDinner 2 as an example. When you click on one of the OpenID providers, you get a popup window that looks like the screenshot below. I've got most of the ...
0
votes
2answers
194 views

Database functions in Entity Framework could not return results

I have implemented the same function "distancebetween" as in Nerddinner. I created an airport repository and have these methods: public IQueryable<AllAirports> ...
0
votes
0answers
56 views

Stuffing All My Validation In L2S Partial Classes: Possible?

I'm using the nerddinner repository pattern in a C# Windows app, so I'm trying to put all my validation in L2S partial classes. That's fine as long as the data types are what the dbml has specified, ...
0
votes
1answer
58 views

NerdDinnerEntities?

what is NerdDinnerEntities in NerdDinner project, is it a class library or class? if it is class then where the dinner and Rsvp class should be? please don't say read the professional asap.net mvc2 ...
0
votes
1answer
332 views

Entity Framework 4 really slow on Nerd dinner FindByLocation modification

I have modified the nerd dinner example to find locations in the vicinity of specified position. When selecting from a flat table performance is good, but I wanted to split up the tables so I have a ...
0
votes
3answers
996 views

Cannot open database “Database” requested by the login

I'm working through a sample .Net MVC application. I've added the aspnet membership api tables to an existing database. I've modified the web.config file as follows: <connectionStrings> ...
0
votes
1answer
214 views

Problem in GetRuleViolations method in NerdDinner tutotial

I'm on about page 70 of the NerdDinner tutorial (MVC 1.0 version). It won't build at this point because it is saying the properties referred to in the GetRuleViolations (ie, Title, Description, etc) ...
0
votes
1answer
68 views

Nerd Dinner - how is the return type of the EF queries determined?

In Nerd Dinner's Entity Framework repository, the queries' return type corresponds to the model and not to the EF conceptual entity. public IQueryable<Dinner> FindAllDinners() { return ...
0
votes
1answer
352 views

What is `confirmButton` in NerdDinner's ActionResult Delete?

In the NerdDinner MVC app demo, there is confirmButton defined when setting up ActionResult Delete: public ActionResult Delete(int id, string confirmButton) { What is confirmButton for, as it is ...
0
votes
3answers
2k views

ASP.NET MVC 2 UpdateModel() is not updating values in memory or database

I am new to MVC, and so am working through the NerdDinner tutorial, here. In particular, I'm running into problems with the use of the UpdateModel method, which is explained in the part five of that ...
0
votes
2answers
126 views

NerdDinner Visual Web Developer 2010 Settings

I'm following steps of the NerdDinner tutorial. In the dinner Model class where I have error and validation handling for CRUD instead of error notifications in browser I get some kind of debugger ...
0
votes
1answer
122 views

NerdDinner difficulties

I'm having a problem with the Create method of the NerdDinner tutorial, which is very good BTW. As you can see here http://nerddinnerbook.s3.amazonaws.com/Part5.htm in the Create method, he removed ...
0
votes
1answer
135 views

NerdDinner Exception Handling

I'm working through the NerdDinner ASP.NET MVC 1.0 example. I have it all working apart from Exception handling. I've modified it very slightly for my own benefit, but basically, when I create a new ...

1 2