摘要: 1、创建ASP.NET MVC4 Web应用程序,选择WebAPI模板2、添加silverlight项目3、新建一个数据模型类,代码如下:using System;using System.Collections.Generic;using System.Linq;using System.Web;namespace NetMVCAPI.Models{ public class Contact { public int Id { get; set; } public string Name { get; set; } public stri... 阅读全文
posted @ 2014-02-11 15:02 iammackong 阅读(1882) 评论(8) 推荐(0) 编辑