用于将对象列表转换为IEnumerable<SqlDataRecord&gt的通用类。

问题描述 投票:-2回答:1

我已经有了这个对象,我应该把一个ConsentData的列表通过表值参数传给SQL Server中的一个存储过程。

public class ConsentData
{
    public string ConsentName { get; set; }
    public bool ConsentValue { get; set; }
    public DateTime ConsentDate { get; set; }
}

我应该通过一个表值参数将一个List of ConsentData传递给SQL Server中的一个存储过程。

寻找一种方法来转换SqlDataRecord列表中的ConsentData列表,我在网上找到了这个通用类。

public class SqlTableValueSupport<T> : List<T>, IEnumerable<SqlDataRecord> where T : class, new()
    {
        IEnumerator<SqlDataRecord> IEnumerable<SqlDataRecord>.GetEnumerator()
        {
            //Create Columns (SqlMetaData)
            List<SqlMetaData> records = new List<SqlMetaData>();
            var properties = typeof(T).GetProperties();
            foreach (var prop in properties)
            {
                SqlDbType sdbtyp = GetSqlType(prop.PropertyType);
                records.Add(new SqlMetaData(prop.Name, sdbtyp));
            }

            //Create records/rows (SqlDataRecord)
            SqlDataRecord ret = new SqlDataRecord(records.ToArray());

            foreach (T data in this)
            {
                for (int i = 0; i < properties.Length; i++)
                {
                    ret.SetValue(i, properties[i].GetValue(data, null));
                }

                yield return ret;
            }
        }

        // Map C# Types to SqlDbType
        private SqlDbType GetSqlType(Type type)
        {
            SqlDbType val = SqlDbType.VarChar;
            if (type == typeof(Int64) || type == typeof(Nullable<Int64>))
            {
                val = SqlDbType.BigInt;
            }
            else if (type == typeof(Byte[]))
            {
                val = SqlDbType.Binary;
            }
            else if (type == typeof(Boolean) || type == typeof(Nullable<Boolean>))
            {
                val = SqlDbType.Bit;
            }
            else if (type == typeof(DateTime) || type == typeof(Nullable<DateTime>))
            {
                val = SqlDbType.DateTime;
            }
            else if (type == typeof(Decimal))
            {
                val = SqlDbType.Decimal;
            }
            // Please refer to the following document to add other types
            // http://msdn.microsoft.com/en-us/library/ms131092.aspx
            return val;
        }
    }

我想知道如何使用这个类, 我怎样才能通过ConsentData的列表 并重新获得一个SqlDataRecord的列表?

c# sql-server generics table-valued-parameters
1个回答
0
投票

最后,我通过用一个静态方法来处理这个类来解决这个问题.这就是这个类。

public class SqlTableValueSupport<T> where T : class
{
    public static DataTable ConvertData(List<T> ValuesList)
    {
        DataTable dtData = new DataTable();
        var objectReference = ValuesList.GetType().GetGenericArguments()[0];
        var properties = objectReference.GetProperties();
        foreach (var prop in properties)
        {
            dtData.Columns.Add(prop.Name, prop.PropertyType);
        }

        foreach (var item in ValuesList)
        {
            var dataArray = new List<object>();
            foreach (var prop in properties)
            {
                dataArray.Add(prop.GetValue(item));
            }

            dtData.Rows.Add(dataArray.ToArray());
        }

        return dtData;
    }
}

这个方法的调用方式如下

var ListOfMyObjectDT = SqlTableValueSupport<MyObject>.ConvertData(ListOfMyObject);
© www.soinside.com 2019 - 2024. All rights reserved.