I want to store the PDF file in the database using C# and linq.
SQL Server table:
CREATE TABLE [dbo].[FATURA_PDF]
(
[ID] [INT] IDENTITY(1,1) NOT NULL,
[FATURA_NO] [NVARCHAR](50) NULL,
[PDF_IMAGE] [VARBINARY](max) NULL,
[GORULDU] [NVARCHAR](50) NULL,
[GUID] [UNIQUEIDENTIFIER] NULL
)
PDF image columns pdf file write / read code?