每天学一点,每天积累一点,进步就不止一点点!PS:好记性不如烂笔头,学会总结,学会思考~~~ ----要飞翔,必须靠自己!

灰太狼的梦想

好记性不如烂笔头,学会总结,学会思考~~~

随笔分类 -  ASP.NET MVC5

摘要:前言: * The Contains method is run on the database, not the c# code above. On the database, Contains maps to SQL LIKE, which is case insensitive. 这句话的意思 阅读全文
posted @ 2015-06-20 20:28 灰太狼的梦想 阅读(1860) 评论(0) 推荐(0)
摘要:1.首先我们来看看普通的传值是啥样的。如图所示,我们普通的传值是这样的 1 public ActionResult Edit(int?id) 2 { 3 4 if (id == null) 5 { 6 ... 阅读全文
posted @ 2015-06-20 17:19 灰太狼的梦想 阅读(4210) 评论(0) 推荐(1)
摘要:1.在Model类里面,写好相应的属性。 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 using System.Data.Entity; 6 7 nam... 阅读全文
posted @ 2015-06-20 09:35 灰太狼的梦想 阅读(4103) 评论(5) 推荐(1)