我是一个ASP.NET编程新手,所以我的数据库有两个表:UserTypes and UserTypeDivisions
UserType contains for example
UserTypeId Description
1 Programmer
2 Designer
UserTypeDivisions contains for example
UserTypeDivisionId UserTypeId Description
1 1
我刚刚安装了.NET VisualWebDeveloper2010IDE的免费版本以及ASP.NET MVC框架的第3版。对于C#、.NET、ASP.NET的MVC框架来说,我已经够新的了,我对为我生成的基本控制器类感到有点困惑,以及C#语言特性与框架提供的可能的语法糖有什么不同
Namespace MvcApplication1
Public Class Default1Controller
Inherits System.Web.Mvc.Controller
'
' GET: /Default1
F
我正在遵循一个似乎是最好的解决方案的教程(在搜索了一天之后)。作者没有包含任何名称空间引用。我需要什么才能识别Cascading_ddlEntities,并且不会下划线显示为错误?
我正尝试在asp.net Mvc中为我的web应用程序创建一个级联下拉列表。我对编程很陌生。
public class PartsController : Controller
{
// GET: Home
public ActionResult Index()
{
Cascading_ddlEntities entities = ne