This repository has been archived by the owner on Jul 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,15 @@ | ||
# sn-blob-mssqlfs | ||
MS SQL FileStream blob provider for the sensenet platform. | ||
# MS SQL FileStream blob provider | ||
An external [blob provider](https://community.sensenet.com/docs/blob-provider) for the sensenet platform based on the FILESTREAM feature of MS SQL Server. | ||
|
||
[![NuGet](https://img.shields.io/nuget/v/SenseNet.MsSqlFsBlobProvider.svg)](https://www.nuget.org/packages/SenseNet.MsSqlFsBlobProvider) | ||
|
||
This package is intended for older sensenet projects that once switched on the FileStream feature. It is a legacy package created for backward compatibility that lets you migrate binaries from a FileStream column in MS SQL Server to either a regular binary column or to an external blob storage. | ||
|
||
> **Should I install this package if I do not use the FileStream feature yet?** | ||
> | ||
> No. Please do not start using FileStream now, it is a legacy feature. We recommend using one of the available modern [blob providers](https://community.sensenet.com/docs/blob-provider). | ||
## Usage | ||
We assume you already have the FileStream feature installed in sensenet (if not, this package is not for you). Please install the NuGet package above, set `SqlFileStreamBlobProvider` as the blob provider and `SqlFileStreamBlobMetaDataProvider` as the metadata provider either in the web.config (see the blob provider article above for configuration) or using the new [repository builder API](build-repository.md). | ||
|
||
> **Important**: you have to set both of the providers above to make this feature work. |