12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Data;
- using System.Data.Common;
- using System.Data.SqlClient;
- using Microsoft.Practices.EnterpriseLibrary.Data;
- using Befri.Query;
- using Befri.Goldhoo.Models;
- namespace Befri.Goldhoo.DataAccess
- {
- /// <summary>
- /// 名 称: <%= Request.Table.Text %>数据存取类
- /// 开发人员:
- /// 开发日期: <%= DateTime.Today.ToString("yyyy-MM") %>
- /// </summary>
- public partial class <%= Table.AliasName %>DAO
- {
- public const string TABLENAME = "<%= Table.SchemaName %>.<%= Table.TableName %>";
-
- partial void OnInserting(<%= Table.AliasName %> <%= Table.aliasName %>)
- {
- }
- }
- }
|