摘要: 看了很久终于有点眉目了。首先建一个项目Asp.net MVC4 Web Application下的Web Api项目;在Controllers文件夹下新建一个类(继承 ApiController)public class UserController : ApiController { public IQueryable<User> Get() { return List.AsQueryable(); } public User Get(string id) { User user = List.Single<User>(u => u.userNo == id); 阅读全文
posted @ 2012-04-07 16:38 一上一上 阅读(771) 评论(0) 推荐(0) 编辑