在.Net中实现RichClient+Restful+JPA架构-探索实现
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-04-10
USERFUN> WMS_USERFUN { get { return new WMS_Core<WMS_USERFUN>(); } } public static WMS_Core<WMS_ROLEFUN> WMS_ROLEFUN { get { return new WMS_Core<WMS_ROLEFUN>(); } } } }四、在UI层里面实现测试,这里只做测试,具体JQuery怎么交互,后面的文章介绍。 我们在HomeController里面写入如下代码: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using ElegantBLL; using ElegantModel; namespace ElegantSharp.Controllers { public class HomeController : Controller { public ActionResult Index() { ViewBag.Message = "欢迎使用 ASP.NET MVC!"; ViewBag.Count = WMS_Factory.WMS_USERFUN.GetCount(c => true); ViewBag.SingleEntity = WMS_Factory.WMS_USERFUN.FindById(1230); ViewBag.FirstPage = WMS_Factory.WMS_USERFUN.FindByPage(1, 3, rs => rs.OrderByDescending(c => c.Id), c => true); ViewBag.FirstPageCon = WMS_Factory.WMS_USERFUN.FindByPage(0, 3, rs => rs.OrderByDescending(c => c.Id), c => c.fatherid != 0 && c.fatherid != 2000); /* WMS_USERFUN w = new WMS_USERFUN(); w.fatherid = 0; w.funname = "测试xxxx"; w.funno = "abc"; w.Id = 3000; //测试插入 WMS_Factory.WMS_USERFUN.Insert(w); //测试更新 WMS_Factory.WMS_USERFUN.Update(w); WMS_ROLEFUN rolefun = WMS_Factory.WMS_ROLEFUN.FindById(25); //测试删除 if (rolefun != null) WMS_Factory.WMS_ROLEFUN.Delete(rolefun); */ & |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于在.Net中实现RichClient+Restful+JPA架构-探索实现的所有评论