DataAccess.cst 671 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Data;
  5. using System.Data.Common;
  6. using System.Data.SqlClient;
  7. using Microsoft.Practices.EnterpriseLibrary.Data;
  8. using Befri.Query;
  9. using Befri.Goldhoo.Models;
  10. namespace Befri.Goldhoo.DataAccess
  11. {
  12. /// <summary>
  13. /// 名 称: <%= Request.Table.Text %>数据存取类
  14. /// 开发人员:
  15. /// 开发日期: <%= DateTime.Today.ToString("yyyy-MM") %>
  16. /// </summary>
  17. public partial class <%= Table.AliasName %>DAO
  18. {
  19. public const string TABLENAME = "<%= Table.SchemaName %>.<%= Table.TableName %>";
  20. partial void OnInserting(<%= Table.AliasName %> <%= Table.aliasName %>)
  21. {
  22. }
  23. }
  24. }