科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道Visual Studio 2008 NClay小试牛刀

Visual Studio 2008 NClay小试牛刀

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

本文给出用VS 2008结合NClay进行SmallBlog程序的编写步骤和具体的源代码,供大家参考!

作者:拌瓜 来源:天极网  2007年9月4日

关键字:

  • 评论
  • 分享微博
  • 分享邮件

在本页阅读全文(共3页)

业务逻辑

NClay的原则是所有逻辑处理必须以接口的方式体现,所以在设计阶段必须构造业务输出和输入的逻辑接口。

public interface ICategoryDelete

{

 string CategoryID

 {

get;

set;

 }

}

public void Delete(ICategoryDelete logic)

{

 if (!NClay.Common.IsEmpty(logic.CategoryID))

 {

if ((DB.Post.CategoryID == logic.CategoryID).CountOf<Entities.Post>() > 0)

{

 throw new LogicException("有文章在此类别中不能删除!");

}

(DB.Category.CategoryID == logic.CategoryID).Delete<Entities.Category>();

 }

}

VS 2008对代码的感知支持有所提高,编辑器能直接感知到表达式所返回的类型:

图3

视图

由于VS 2008对默认属性的支持,这样大大减少了NClay下的视图代码;在VS 2005里,不得不对编辑器生成的接口代码进行调整。而VS 2008下直接编辑生成接口代码就可以,省了不少修改的工作。

[NClay.MVC.Action(ActionType = NClay.MVC.ActionType.All,

Tag = "~/Default.aspx", Services = new Type[] {

typeof(Logic.Post.IPostView) })]

public class Default :BaseView ,Logic.Post.IPostView

{

 #region IPostView 成员

 public string CategoryID

 { get; set; }

 public System.Collections.Generic.IList<SmallBlog.Entities.PostView> Posts

 { get; set; }

 #endregion

 #region IDataPageProperty 成员

 [NClay.MVC.Bind(typeof(NClay.DataPage))]

 public NClay.IDataPage DataPage

 { get; set; }

 #endregion

}

AOP扩展

很多时候面对多个视图处理同样的逻辑,这时候可以借助于框架的AOP功能完成。以下是统一处理页面左侧的功能。

[NClay.MVC.ViewAspect(NClay.MVC.AspectLevel.High)]

public class AspectBaseView:NClay.MVC.IAspect

{

 #region IAspect 成员

 public void Aspect(object source, NClay.MVC.AspectHandler e)

 {

if (source is BaseView)

{

 BaseView bv = (BaseView)source;

 NClay.MVC.Container.Execute<Logic.SysUser.IBlogConfig>(bv, true);

 NClay.MVC.Container.Execute<Logic.Category.IStatCategories>(bv, true);

 NClay.MVC.Container.Execute<Logic.Post.IHotPost>(bv, true);

}

e.Execute(source);

 }

 #endregion

}

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章