Thank you for answer,
You are right, I have a SQL table with FILESTREAM. For a examle like here:
CREATE TABLE
dbo.EEGCatalog
(
PatientID
int References dbo.Patient(PatientID),
EEGCatalogName
varchar(100),
EEGCatalogBlob
varbinary(max) FILESTREAM,
EEGCatalogID
UNIQUEIDENTIFIER ROWGUIDCOL NOT NULL UNIQUE
);
Now I want to create SQL Server DB schema in "m". How I can create type with
FILESTREAM?
Alexey