`我在向数据表写入null结果时遇到问题。 我的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数据库返回的值为null。
我无法将类片更改为十进制?否则CreateDatable方法失败,因为它表示DataTable不能具有可为空的值。
答案 0 :(得分:1)
如果允许将NULL值写入数据库,则应使变量类型为空,例如
[Column]
public decimal? moneyvalue;
而不是
[Column]
public decimal moneyvalue;
答案 1 :(得分: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
}
*更新*
为什么不使用datatable
构建traded_product
,并且提及@ user65439更改您的数据库类(t_sdi_traded_product
)以获得可为空的列
[Column]
public decimal? moneyvalue;
然后你只需要处理返回的空值并将它们转换为0,以获得traded_product
类中不可为空的小数