-
Notifications
You must be signed in to change notification settings - Fork 222
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
7 changed files
with
98 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
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<SmartSqlMap Scope="Entity" xmlns="http://SmartSql.net/schemas/SmartSqlMap-v4.xsd"> | ||
<Statements> | ||
<Statement Id=""> | ||
|
||
</Statement> | ||
</Statements> | ||
</SmartSqlMap> |
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> | ||
<metadata> | ||
<id>SmartSql.Config</id> | ||
<title>SmartSql Config Template</title> | ||
<version>4.0.0-rc6</version> | ||
<authors>Ahoo Wang</authors> | ||
<owners>Ahoo Wang</owners> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<language>en-US</language> | ||
<license type="expression">Apache-2.0</license> | ||
<projectUrl>https://github.com/Smart-Kit/SmartSql</projectUrl> | ||
<iconUrl>https://raw.githubusercontent.com/Smart-Kit/SmartSql/master/SmartSql.png</iconUrl> | ||
<repository type="git" url="https://github.com/Smart-Kit/SmartSql"/> | ||
<summary>SmartSql-config Template.</summary> | ||
<description> | ||
SmartSql-config Template. | ||
</description> | ||
<tags>SmartSql, Config</tags> | ||
<dependencies> | ||
<dependency id="SmartSql.Schema" version="4.0.0-rc6" /> | ||
</dependencies> | ||
<contentFiles> | ||
<files include="**/*.*" buildAction="None" copyToOutput="true" flatten="true" /> | ||
</contentFiles> | ||
</metadata> | ||
<files> | ||
<file src=".\SmartSqlMapConfig.xml" target="contentFiles\any\any" /> | ||
<file src=".\SmartSqlMapConfig.xml" target="content\" /> | ||
<file src=".\Entity.xml" target="contentFiles\any\any\Maps" /> | ||
<file src=".\Entity.xml" target="content\Maps" /> | ||
</files> | ||
</package> |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<SmartSqlMapConfig xmlns="http://SmartSql.net/schemas/SmartSqlMapConfig-v4.xsd"> | ||
<Settings IgnoreParameterCase="false" ParameterPrefix="$" IsCacheEnabled="true"/> | ||
<Database> | ||
<DbProvider Name="SqlServer"/> | ||
<Write Name="WriteDB" ConnectionString="${ConnectionString}"/> | ||
<Read Name="ReadDb-1" ConnectionString="${ConnectionString}" Weight="100"/> | ||
<Read Name="ReadDb-2" ConnectionString="${ConnectionString}" Weight="100"/> | ||
</Database> | ||
<IdGenerator Type="SnowflakeId"> | ||
<Properties> | ||
<Property Name="WorkerIdBits" Value="10"/> | ||
<Property Name="WorkerId" Value="888"/> | ||
<Property Name="Sequence" Value="14"/> | ||
</Properties> | ||
</IdGenerator> | ||
<SmartSqlMaps> | ||
<SmartSqlMap Path="Maps" Type="Directory"></SmartSqlMap> | ||
</SmartSqlMaps> | ||
</SmartSqlMapConfig> |
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> | ||
<metadata> | ||
<id>SmartSql.Schema</id> | ||
<title>SmartSql Schema for Intellisense(TM)</title> | ||
<version>4.0.0-rc6</version> | ||
<authors>Ahoo Wang</authors> | ||
<owners>Ahoo Wang</owners> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<language>en-US</language> | ||
<license type="expression">Apache-2.0</license> | ||
<projectUrl>https://github.com/Smart-Kit/SmartSql</projectUrl> | ||
<iconUrl>https://raw.githubusercontent.com/Smart-Kit/SmartSql/master/SmartSql.png</iconUrl> | ||
<repository type="git" url="https://github.com/Smart-Kit/SmartSql"/> | ||
<summary>Enables Intellisense(TM) when editing SmartSql-config.</summary> | ||
<description> | ||
XSD file to enables Intellisense(TM) when editing SmartSql configuration files, for example in Visual Studio. | ||
Note: extensions to SmartSql will report XSD errors. Those can be ignored safely. | ||
</description> | ||
<tags>SmartSql, intellisense, xsd</tags> | ||
<contentFiles> | ||
<files include="**/*.*" buildAction="None" copyToOutput="false" flatten="true" /> | ||
</contentFiles> | ||
</metadata> | ||
<files> | ||
<file src=".\*.xsd" target="contentFiles\any\any" /> | ||
<file src=".\*.xsd" target="content\" /> | ||
</files> | ||
</package> |
File renamed without changes.
File renamed without changes.