Skip to content

Commit 45ab03a

Browse files
author
ActiveDbSoft
committed
Description in models
1 parent 916b2eb commit 45ab03a

13 files changed

+37
-7
lines changed

WebApi.ActiveQueryBuilder.sln

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 2012
33
VisualStudioVersion = 12.0.0.0
44
MinimumVisualStudioVersion = 10.0.0.1
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebApi.ActiveQueryBuilder", "src\WebApi.ActiveQueryBuilder\WebApi.ActiveQueryBuilder.csproj", "{3FB4AA1C-9CD0-49DE-8366-5F881E2D3731}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebApi.ActiveQueryBuilder", "src\WebApi.ActiveQueryBuilder\WebApi.ActiveQueryBuilder.csproj", "{CA024373-104D-48F5-A397-59F9724EF5A3}"
66
EndProject
77
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebApi.ActiveQueryBuilder.Test", "src\WebApi.ActiveQueryBuilder.Test\WebApi.ActiveQueryBuilder.Test.csproj", "{19F1DEBC-DE5E-4517-8062-F000CD499087}"
88
EndProject
@@ -12,10 +12,10 @@ Debug|Any CPU = Debug|Any CPU
1212
Release|Any CPU = Release|Any CPU
1313
EndGlobalSection
1414
GlobalSection(ProjectConfigurationPlatforms) = postSolution
15-
{3FB4AA1C-9CD0-49DE-8366-5F881E2D3731}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16-
{3FB4AA1C-9CD0-49DE-8366-5F881E2D3731}.Debug|Any CPU.Build.0 = Debug|Any CPU
17-
{3FB4AA1C-9CD0-49DE-8366-5F881E2D3731}.Release|Any CPU.ActiveCfg = Release|Any CPU
18-
{3FB4AA1C-9CD0-49DE-8366-5F881E2D3731}.Release|Any CPU.Build.0 = Release|Any CPU
15+
{CA024373-104D-48F5-A397-59F9724EF5A3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16+
{CA024373-104D-48F5-A397-59F9724EF5A3}.Debug|Any CPU.Build.0 = Debug|Any CPU
17+
{CA024373-104D-48F5-A397-59F9724EF5A3}.Release|Any CPU.ActiveCfg = Release|Any CPU
18+
{CA024373-104D-48F5-A397-59F9724EF5A3}.Release|Any CPU.Build.0 = Release|Any CPU
1919
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
2020
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.Build.0 = Debug|Any CPU
2121
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Release|Any CPU.ActiveCfg = Release|Any CPU

docs/Condition.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# WebApi.ActiveQueryBuilder.Model.Condition
2+
3+
Defines a constraint for original query resultset values.
4+
25
## Properties
36

47
Name | Type | Description | Notes

docs/ConditionGroup.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# WebApi.ActiveQueryBuilder.Model.ConditionGroup
2+
3+
Group of conditions joined with the same boolean operator.
4+
25
## Properties
36

47
Name | Type | Description | Notes

docs/HiddenColumn.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# WebApi.ActiveQueryBuilder.Model.HiddenColumn
2+
3+
Instructs to exclude some columns of original query from the SELECT list of transformed query.
4+
25
## Properties
36

47
Name | Type | Description | Notes

docs/Pagination.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# WebApi.ActiveQueryBuilder.Model.Pagination
2+
3+
Instructs to limit the number of rows in transformed query resultset taking limitations of original query into account. In other words, if original query contains row limitation clause, it will be wrapped into a derived table and additional row limitation clause will be added ontop.
4+
25
## Properties
36

47
Name | Type | Description | Notes

docs/QueryColumn.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# WebApi.ActiveQueryBuilder.Model.QueryColumn
2+
3+
Provides information about particular SQL query column
4+
25
## Properties
36

47
Name | Type | Description | Notes

docs/Sorting.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# WebApi.ActiveQueryBuilder.Model.Sorting
2+
3+
Determines rows order in transformed query. If there aren't any sortings, the original query sorting is kept.
4+
25
## Properties
36

47
Name | Type | Description | Notes

docs/SqlQuery.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# WebApi.ActiveQueryBuilder.Model.SqlQuery
2+
3+
Information about SQL query and it's context.
4+
25
## Properties
36

47
Name | Type | Description | Notes

docs/Totals.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# WebApi.ActiveQueryBuilder.Model.Totals
2+
3+
If any aggregations are defined there, the SELECT list of original query is replaced with the list of aggregations in transformed query. Filling aggregations is useful when you want to get totals for original query resultset.
4+
25
## Properties
36

47
Name | Type | Description | Notes

docs/Transform.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# WebApi.ActiveQueryBuilder.Model.Transform
2+
3+
SQL transformation parameters and commands.
4+
25
## Properties
36

47
Name | Type | Description | Notes

docs/TransformResult.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# WebApi.ActiveQueryBuilder.Model.TransformResult
2+
3+
Returns transformed SQL text in case of successful transformation. Otherwise returns error message.
4+
25
## Properties
36

47
Name | Type | Description | Notes

src/WebApi.ActiveQueryBuilder.Test/WebApi.ActiveQueryBuilder.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ limitations under the License.
8686
<Import Project="$(MsBuildToolsPath)\Microsoft.CSharp.targets" />
8787
<ItemGroup>
8888
<ProjectReference Include="..\WebApi.ActiveQueryBuilder\WebApi.ActiveQueryBuilder.csproj">
89-
<Project>{3FB4AA1C-9CD0-49DE-8366-5F881E2D3731}</Project>
89+
<Project>{CA024373-104D-48F5-A397-59F9724EF5A3}</Project>
9090
<Name>WebApi.ActiveQueryBuilder</Name>
9191
</ProjectReference>
9292
</ItemGroup>

src/WebApi.ActiveQueryBuilder/WebApi.ActiveQueryBuilder.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ limitations under the License.
2424
<PropertyGroup>
2525
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
2626
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
27-
<ProjectGuid>{3FB4AA1C-9CD0-49DE-8366-5F881E2D3731}</ProjectGuid>
27+
<ProjectGuid>{CA024373-104D-48F5-A397-59F9724EF5A3}</ProjectGuid>
2828
<OutputType>Library</OutputType>
2929
<AppDesignerFolder>Properties</AppDesignerFolder>
3030
<RootNamespace>Swagger Library</RootNamespace>

0 commit comments

Comments
 (0)