About generics and patterns

Source: Internet
Author: User

An Petshop4.0 architecture that uses an ORM framework in the solid layer NHibernate

Package NH access to business objects is as follows:

/// <summary>
/// 查询记录
/// </summary>
/// <param name="hql">HQL语句</param>
/// <param name="args">HQL语句中的参数值</param>
/// <returns>IList<T></returns>
public IList<T> Select<T>(string hql, Dictionary<string, object> args)
{
 try
 {
  session = NHibernateDatabaseFactory.CreateSession();
  IQuery query = session.CreateQuery(hql);
  if (args != null)
  {
    this.PrepareQuery(query, args);
  }
  return query.List<T>();
 }
 catch (Exception err)
 {
  throw err;
 }
}

There are two ways to load a business object.

Mode one:

Entity layers: Defining generic access Methods in the Basedal class

public statci IList<T> GetData<T>(string hql)

{

 return new NHUtility.NHibernateHelper().Select<T>(hql);

}

Business Layer Access:

such as employee business layer:

public List<EmployeeInfo> GetData()

{

 List<EmployeeInfo> emps = (List<EmployeeInfo>) BaseDAL.GetData<EmployeeInfo>("From Employee E");

}

In this way, each business object has to implement the GetData method at the business layer.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.