惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

宝玉的分享
宝玉的分享
NISL@THU
NISL@THU
E
Exploit-DB.com RSS Feed
L
LINUX DO - 热门话题
L
Lohrmann on Cybersecurity
K
Kaspersky official blog
Project Zero
Project Zero
Cisco Talos Blog
Cisco Talos Blog
T
The Exploit Database - CXSecurity.com
P
Palo Alto Networks Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
T
Threatpost
S
Schneier on Security
G
GRAHAM CLULEY
The Hacker News
The Hacker News
T
Threat Research - Cisco Blogs
Scott Helme
Scott Helme
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
P
Privacy & Cybersecurity Law Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
Cyberwarzone
Cyberwarzone
C
CERT Recently Published Vulnerability Notes
T
Tor Project blog
AWS News Blog
AWS News Blog
Simon Willison's Weblog
Simon Willison's Weblog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
爱范儿
爱范儿
P
Privacy International News Feed
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
S
Securelist
G
Google Developers Blog
The Last Watchdog
The Last Watchdog
Google Online Security Blog
Google Online Security Blog
美团技术团队
F
Fortinet All Blogs
小众软件
小众软件
Recorded Future
Recorded Future
V
Visual Studio Blog
B
Blog RSS Feed
H
Help Net Security
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Google DeepMind News
Google DeepMind News
Blog — PlanetScale
Blog — PlanetScale
博客园 - 聂微东
Stack Overflow Blog
Stack Overflow Blog
Martin Fowler
Martin Fowler
Latest news
Latest news
Spread Privacy
Spread Privacy
H
Heimdal Security Blog

博客园 - qy

枚举 Duwamish7资料收集- [] 学习Duwamish7的MSDN说明及相关技术策略 Duwamish7学习笔记(七) Duwamish7学习笔记(六) Duwamish7学习笔记(五) Duwamish7学习笔记(三) Duwamish7学习笔记(二) Duwamish7学习笔记(-) jQuery介绍及语法----转载 浅谈.net事件机制 使用EditPlus2编写C#代码 跟踪用户会话 按钮确认(js与C#交互) 3-28学会的几句sql语句 Visual Studio 2003/Visual Studio 2005常用快捷键 ----转 最优化javascript自定义对象 - qy BOM 关于用div实现table的效果
Duwamish7学习笔记(四)
qy · 2007-09-18 · via 博客园 - qy

BusinessRules项目
 1.Customer类
   长见识了!在《Duwamish7学习笔记(三)》中还在想业务逻辑层写些什么东西。
   校验,还是校验!每一行,每一列,包括类型和长度,想想自已在项目的校验,真的有点汗颜!
   //----------------------------------------------------------------
    // Function Validate:
    //   Validates and customer
    // Returns:
    //   true if validation is successful
    //   false if invalid fields exist
    // Parameters:
    //   [in]  customerRow: CustomerData to be validated
    //   [out] customerRow: Returns customer data.  If there are fields
    //                    that contain errors they are individually marked. 
    //----------------------------------------------------------------
    private bool Validate(DataRow customerRow)
    {
        bool isValid;
       
        customerRow.ClearErrors();
       
        isValid  = IsValidEmail(customerRow);
        isValid &= IsValidField(customerRow, CustomerData.NAME_FIELD, 40);
        isValid &= IsValidField(customerRow, CustomerData.ADDRESS_FIELD, 255);
        isValid &= IsValidField(customerRow, CustomerData.COUNTRY_FIELD, 40);
        isValid &= IsValidField(customerRow, CustomerData.PHONE_FIELD, 30);
   
        if ( !isValid )
        {
            customerRow.RowError = CustomerData.INVALID_FIELDS;
        }
       
        return isValid;
    }
    全部校验通过之后才调用业务访问层的相应方法进行操作,用using,使创建的Customers使用后能马上释放。
    using (Customers customersAccess = new Customers())
    {
        result = customersAccess.UpdateCustomer(customer);
    }
    下面记录一点小知识
    设置行错误:row.RowError
    设置列错误:row.SetColumnError()
    清除行错误:row.ClearErrors()
    邮件校验的正则表达式:REGEXP_ISVALIDEMAIL = @"^\w+((-\w+)|(\.\w+))*\@\w+((\.
   
  2.Order类
    看完Order类觉得这各层的分工非常好,这层才是真正的业务如CalculateTax(),CalculateShipping(),InsertOrder().    业务逻辑层在封装业务操作方法时,进行了非常严格的校验,使系统有非常强健的健壮性。叹为观止!

疑问

:Duwamish只是MS自带的一个小例子,在实际的大的项目中有非常多的对象,非常且更复杂的业务逻辑,我们的代码还能写得于此之好吗?