我創建了一個數據表圖像數據類型的SQL Server 2008的C#的數據類型
CREATE TABLE [ProductImages]
(
[ProductImageID] [int] IDENTITY(1,1) NOT NULL,
[ProductImage] [image] NOT NULL
CONSTRAINT [PK_ProductImages] PRIMARY KEY CLUSTERED
(
[ProductImageID] ASC
)
)
我想寫ProductImages類在C#
public class ProductImages
{
private int productImageID;
public int ProductImageID
{
get { return productImageID; }
set { productImageID = value; }
}
// I need to declare property for ProductImage???
}
我如何申報財產ProductImage?
作爲SQL Server 2005中的,'IMAGE'是** **棄用 - 你不應該再使用它來。使用'VARBINARY(MAX)'代替 – 2012-02-15 06:02:45
您可以通過使用CAST投圖像VARBINARY(MAX)(MyImageField AS VARBINARY(MAX)。反過來,你可投VARBINARY(MAX)爲VARCHAR(MAX),如果需要的話。 – 2016-03-22 14:48:43