2
votes
2answers
82 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 …
1
vote
1answer
39 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 …
5
votes
1answer
86 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 …
2
votes
2answers
255 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. …
0
votes
2answers
237 views
Nerd Dinner returns 404s for all sub-pages
I just got a new Windows Server 2003 machine and I've been trying to get Nerd Dinner onto it. The server already has .NET 3.5 SP1, ASP .NET MVC, etc.
When I upload Nerd Dinner via FTP to a …
2
votes
1answer
145 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:
…
1
vote
3answers
159 views
How to create Shared VB Array Initialisors for NerdDinner
Hello,
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 …
2
votes
2answers
1k 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 …
11
votes
5answers
541 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 …
1
vote
3answers
180 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();
…
0
votes
1answer
48 views
Does anyone use the generated entity classes on a large project?
In the NerdDinner example they use a repository pattern to decouple the business from the data layer. But then they use the Linq to SQL generated classes (Dinner specifically) as the entity class used …
1
vote
5answers
284 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 …
0
votes
1answer
182 views
Nerd Dinner validation rules question
In the NerdDinner tutorial, Step 5, mid way down under Complete Edit Action Method Implementations there is a paragraph:
The nice thing about our Edit implementation is that neither our Controller …
1
vote
3answers
122 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 …
2
votes
1answer
122 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.
