When i want to store a file in a filestream column, i always need to read the whole binary into the memory:...using (MemoryStream memoryStream = new MemoryStream())
{
sourceStream.CopyTo(memoryStream);
binaryStore.Content = memoryStream.ToArray(); /...