LinuxDoku / migratordotnet

Automatically exported from code.google.com/p/migratordotnet
0 stars 0 forks source link

It's not possible to add columns of data type image (Sql2008) to store more than 8000 bytes. #161

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
DbType does not support Image (Sql 2008), an overload to allow SqlDbType 
instead would add support for Image or blob.

Original issue reported on code.google.com by sorensso...@gmail.com on 20 Sep 2010 at 11:33

GoogleCodeExporter commented 8 years ago
never mind, solved this specifying a size above 8000 ;)

 new Column("Data", DbType.Binary, 10000000, ColumnProperty.NotNull)

Original comment by sorensso...@gmail.com on 20 Sep 2010 at 11:53