ASP.NET 資料訪問層對使用者列表的操作封裝

來源:互聯網
上載者:User

標籤:select   new   mod   turn   query   add   使用者   date   com   

使用者列表對資料庫的操作 使用到了模型MODEL層和DAL資料訪問

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using CZBK.TestProject.Model;
using System.Data.SqlClient;

namespace CZBK.TestProject.DAL
{
public class EmployeeDal
{

public List<Employee> GetEntityList()
{
string sql = "select * from Employee";
DataTable dt =SqlHelper.GetTable(sql, CommandType.Text);
List<Employee> list = null;
if (dt.Rows.Count > 0)
{
list = new List<Employee>();
Employee employee = null;
foreach(DataRow rows in dt.Rows)
{
employee = new Employee();
LoadEntity(rows, employee);
list.Add(employee);
}
}
return list;
}

private void LoadEntity(DataRow row,Employee employee)
{
employee.EmpId = Convert.ToInt32(row["EmpId"]);
employee.EmpName = row["EmpName"] != DBNull.Value ? row["EmpName"].ToString() : string.Empty;
employee.EmpAge = Convert.ToInt32(row["EmpAge"]);
employee.DelFlag = Convert.ToInt32(row["DelFlag"]);
}

public Employee GetEntityModel(int id)
{
string sql = "select * from employee where [email protected]";
DataTable dt = SqlHelper.GetTable(sql, CommandType.Text, new SqlParameter("@id", id));
Employee employee = null;
if (dt.Rows.Count > 0)
{
employee = new Employee();
LoadEntity(dt.Rows[0],employee);
}
return employee;
}

public int DeleteEmployee(int id)
{
string sql = "DELETE FROM Employee WHERE [email protected]";
return SqlHelper.ExecuteNoQuery(sql, CommandType.Text, new SqlParameter("@id",id));
}

public int UpdateEmployee(Employee em)
{
string sql = "Update employee set [email protected],[email protected],[email protected] WHERE [email protected]";
SqlParameter[] pare = { new SqlParameter("@id", SqlDbType.Int), new SqlParameter("@EmpName", SqlDbType.VarChar), new SqlParameter("@EmpAge", SqlDbType.VarChar), new SqlParameter("@DelFlag", SqlDbType.VarChar) };
pare[0].Value = em.EmpId;
pare[1].Value =em.EmpName ;
pare[2].Value = em.EmpAge;
pare[3].Value = em.DelFlag;
return SqlHelper.ExecuteNoQuery(sql, CommandType.Text, pare);
}
}
}

ASP.NET 資料訪問層對使用者列表的操作封裝

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.