- Copy and paste
rtl.config.jsfile. - Add packages to the
package.jsonfile (copy them from the package.json) below and re-install packages withyarncommand. - Run the command:
yarn run webpack --config webpack-rtl.config.js - In the file
src/index.tsxfile comment rows [18, 19]:// import './_metronic/assets/sass/plugins.scss'// import './_metronic/assets/sass/style.scss' - In the file
src/index.tsxadd the row:import './_metronic/assets/css/style.rtl.css'(! before style.react.scss). - In the file
public/index.htmlupdate the html tag with:<html direction="rtl" dir="rtl" style="direction: rtl"> - Find and replace next attributes in the project:
data-kt-menu-placement='bottom-start' => data-kt-menu-placement='bottom-end'
This document now exists on the official ASP.NET core docs page.
- Application
- Request Handling
This file contains hidden or 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
| #!/bin/bash | |
| ################################################################### | |
| #Script Name : mssql_dump.sh | |
| #Description : will create SQL scripts as defined by mssql-scripter | |
| # and will zip backup files and store for X days (set to 30) | |
| #Author : Tim Moses | |
| #Github : https://github.com/tjmoses | |
| #Notes : Make sure to add the appropriate MSSQL_SCRIPTER_CONNECTION_STRING | |
| # for your db connection. Also, revise your target & edition | |
| # sql server for the mssql-scripter command below. The zip library is |
This file contains hidden or 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
| license: mit |
This file contains hidden or 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
| use [DATABASE_NAME]; | |
| DECLARE @Table NVARCHAR(MAX) | |
| DECLARE @Col NVARCHAR(MAX) | |
| DECLARE Table_Cursor CURSOR | |
| FOR | |
| --پيدا کردن تمام فيلدهاي متني تمام جداول ديتابيس جاري | |
| SELECT a.name, --table | |
| b.name --col | |
| FROM sysobjects a, | |
| syscolumns b |