Skip to content

Commit

Permalink
Merge pull request #3 from PremKumarMadhanRaj/master
Browse files Browse the repository at this point in the history
ChangeLog added
  • Loading branch information
gsumankumar committed Jul 26, 2019
2 parents 328300e + 17491f8 commit a248ea3
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog

## 17.2.34 (2019-07-11)

### SQL Server File System Provider

#### New Features

- Replaced the base model class files with `Syncfusion.EJ2` assembly reference.

## 17.2.28-beta (2019-06-27)

### SQL Server File System Provider
Expand Down
14 changes: 13 additions & 1 deletion README.md
Expand Up @@ -25,14 +25,26 @@ The following actions can be performed with SQL file system provider.

## Prerequisites

Make the SQL server connection with SQL database file (FileManager.mdf) and specify the connection string in "Web.config" file as specified in below code example.
Make the SQL server connection with SQL database file ([App_Data/FileManager.mdf](https://github.com/SyncfusionExamples/ej2-sql-server-database-aspcore-file-provider/tree/master/App_Data)) and specify the connection string in "Web.config" file as specified in below code example.

```
<add name="FileExplorerConnection" connectionString="Data Source=(LocalDB)\v11.0;AttachDbFilename=|DataDirectory|\FileManager.mdf;Integrated Security=True;Trusted_Connection=true" />
```

Also need to add the entry for the connection string in the [`appsettings.json`](https://github.com/SyncfusionExamples/ej2-sql-server-database-aspcore-file-provider/blob/master/appsettings.json) file as specified in below code example.

```
{
"ConnectionStrings": {
"FileManagerConnection": "Data Source=(LocalDB)\\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\\App_Data\\FileManager.mdf;Integrated Security=True;Connect Timeout=30"
}
}
```

To configure the SQL server database connection use the `SetSQLConnection` method to set the connection name, table name and rootId of the table.

```
Expand Down

0 comments on commit a248ea3

Please sign in to comment.