无法将System.Collections.Generic.List转换为任何有效的DbType - Npgsql

时间:2013-06-04 12:18:46

标签: c# postgresql-9.1 npgsql

如果我有int,double,string,我可以使用Npgsql更新而没有问题,但是使用List它不起作用。例如:

com.Parameters.Add(new Npgsql.NpgsqlParameter("@number", number));

没有问题。 number是一个整数。

com.Parameters.Add(new Npgsql.NpgsqlParameter("@booking", BookingTest));

BookingTest的类型为List<预订取代。我收到错误消息:

Can't cast System.Collections.Generic.List'1[Booking] into any valid DbType

我怎样才能正确投射?

0 个答案:

没有答案