码迷,mamicode.com
首页 > 其他好文 > 详细

5_添加购物车 D

时间:2018-12-19 20:58:24      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:using   item   type   string   DApp   .sql   dbconnect   +=   log   

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MODEL;
using Dapper;
using System.Data;
using System.Data.SqlClient;

namespace DAL
{
public class ZhpDAL<T>
{
//显示+下拉绑定
string constr = "Data Source=.;Initial Catalog=week1;Integrated Security=True";
public List<T> GetList(string TableName)
{
var t = typeof(T);
var ts = t.GetProperties();
string sqlstr = "select ";
foreach (var item in ts)
{
sqlstr += item.Name+",";
}
sqlstr = sqlstr.Substring(0,sqlstr.Length - 1);
sqlstr += " from " + TableName;
using (IDbConnection con=new SqlConnection(constr))
{
return con.Query<T>(sqlstr).ToList();
}
}

}
}

5_添加购物车 D

标签:using   item   type   string   DApp   .sql   dbconnect   +=   log   

原文地址:https://www.cnblogs.com/hianb/p/10145532.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!