Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
2
votes
2answers
236 views

How should I namespace my models in ASP.NET MVC? Confused about Nerd Dinner

I am learning ASP.NET MVC and I like it. However, I am very confused about the right approach to namespacing my models. While dissecting the NerdDinner sample app I noticed that everything in the ...
0
votes
3answers
118 views

Nerd Dinners Controllers Question

On this page: http://nerddinnerbook.s3.amazonaws.com/Part4.htm After the controller is added, I can browse to http://localhost:xxxx/dinners and it works as expected. My question is how does it know ...