0

`我在将空结果写入数据表时遇到问题。我的 linq 查询正在返回用于填充类的新实例的值。我的数据表是一般创建的,并用一般创建的数据行填充。

发生的情况是我的数据表已成功创建,查询运行,但是当我点击 VAR 语句时它失败,因为其中一个十进制字段为空。我无法在课堂上更改它,因为这样我就无法创建数据表。

我需要更改我认为的这一行以使其接受空值:

moneyvalue = result.moneyvalue,

这是我的表定义:

[Table(Name = "t_sdi_traded_product")]
public class t_sdi_traded_product
{
    [Column]
    public string deal_position_id;
    [Column]
    public decimal moneyvalue;
    [Column]
    public string cost_centre;
}

这是我的课

 public class traded_product
{
    public string Deal { get; set; }
    public decimal moneyvalue { get; set; }
    public string InvolvedPartyId { get; set; }
}

这是我的查询

 var query =
            from result in t_sdi_traded_product_hsbc.AsQueryable()
            where result.sdi_control_id == current_control_id
            select new traded_product() 
            { 
                Deal = result.deal_position_id, 
                moneyvalue = result.moneyvalue,
                InvolvedPartyId = result.involved_party_id
             }

这是我创建数据表和数据行的方式

public static DataTable CreateDataTable(Type animaltype)
    {
        DataTable return_Datatable = new DataTable();
        foreach (PropertyInfo info in animaltype.GetProperties())
        {
            return_Datatable.Columns.Add(new DataColumn(info.Name, info.PropertyType));
        }
        return return_Datatable;
    }

    public static DataRow makeRow(object input, DataTable table)
    {
        Type inputtype = input.GetType();
        DataRow row = table.NewRow();
        foreach (PropertyInfo info in inputtype.GetProperties())
        {
            row[info.Name] = info.GetValue(input, null);
        }
        return row;
    }

现在,只要它在“var query”之后遇到这部分代码,我就会遇到问题:

foreach (var results in query)
        {
            foreach (PropertyInfo result in results.GetType().GetProperties())
            {
                string name = result.Name;

                foreach (PropertyInfo info in used.GetType().GetProperties())
                {
                    if (result.Name == info.Name)
                    {
                        try
                        {
                            info.SetValue(used, result.GetValue(results, null), null);
                        }
                        catch (NoNullAllowedException e)
                        {
                        }
                        finally
                        {
                            info.SetValue(used, DBNull.Value, null);
                        }
                        //Console.WriteLine("Result {0} matches class {1} and the value is {2}", result.Name, info.Name, result.GetValue(results,null));
                    }
                }
            }
            tp_table.Rows.Add(used, tp_table);
        }

它一碰到foreach就会失败,因为从数据库返回的moneyvalue值是空的。

我无法将班级部分更改为十进制?否则 CreateDatable 方法会失败,因为它说 DataTable 不能有可为空的值。

4

2 回答 2

1

如果允许将 NULL 值写入数据库,则应使变量类型可为空,例如

[Column]
public decimal? moneyvalue;

代替

[Column]
public decimal moneyvalue;
于 2013-09-13T11:49:26.607 回答
1

我认为你的问题在

select new traded_product() 
{ 
    Deal = result.deal_position_id, 
    moneyvalue = result.moneyvalue, <-- here you need some handling for DBNULL.Value
    InvolvedPartyId = result.involved_party_id
}

select new traded_product() 
{ 
    Deal = result.deal_position_id, 
    moneyvalue = result.moneyvalue == DBNull.Value ? 0m : result.moneyvalue,
    InvolvedPartyId = result.involved_party_id
}

* 更新 *

为什么不构造你的datatableusingtraded_product和 @user65439 提到的改变你的 DB 类(t_sdi_traded_product)有一个可以为空的列

[Column]
public decimal? moneyvalue;

然后,您只需要处理返回的空值并将它们转换为 0,以便在您的traded_product类中使用不可为空的小数

于 2013-09-13T11:51:36.057 回答