diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index c810878..5caab1c 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -132,7 +132,7 @@ jobs: run: working-directory: docs/github-pages env: - docfx_version: 2.76.0 + docfx_version: 2.77.0 # Grant GITHUB_TOKEN the permissions required to make a Pages deployment permissions: @@ -161,18 +161,20 @@ jobs: dotnet-version: 8.x - name: Install DocFx run: dotnet tool update -g docfx --version ${{ env.docfx_version }} - - name: Generate XrefMap - run: _scripts/generate-xrefmap.sh + - name: Get GitHub Pages Url + run: | + pages_url=$(gh api "repos/$GITHUB_REPOSITORY/pages" --jq '.html_url') + echo "gh_pages_url=$pages_url" >> $GITHUB_ENV + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Generate Xrefmap + run: _scripts/generate-xrefmap.sh ${{ env.gh_pages_url }} - name: Set Google Analytics Id run: jq --arg gaId "${{ vars.GA_TAG_ID }}" '.build.globalMetadata._googleAnalyticsTagId = $gaId' docfx.json > temp.json && mv temp.json docfx.json - - name: DocFx Metadata - run: docfx metadata docfx.json - - name: Remove Extension Methods - run: _scripts/remove-extn-method.sh + - name: Generate Metadata + run: _scripts/generate-metadata.sh - name: DocFx Build run: docfx build docfx.json - - name: Fix Xref Links - run: _scripts/fix-xref-links.sh - name: Upload Doc Artifacts uses: actions/upload-pages-artifact@v3 with: diff --git a/docs/github-pages/README.md b/docs/github-pages/README.md index a4bd6ad..ad73232 100644 --- a/docs/github-pages/README.md +++ b/docs/github-pages/README.md @@ -8,7 +8,7 @@ The documentation is powered by [Docfx](https://dotnet.github.io/docfx/). Docs a - Install the .NET Core SDK that the project is using. - Install [Docfx](https://dotnet.github.io/docfx/). The project version can be found in [ci-cd.yml](../../.github/workflows/ci-cd.yml) file. -- Install bash. If you are on Windows, you can use Git Bash. +- Bash. If you are on Windows, you can use Git Bash or WSL. To build the documentation run the following command in the github-pages folder: @@ -17,3 +17,9 @@ _scripts/local-doc-gen.sh ``` The script will perform some clean up, run `docfx` to generate the documentation and then serve it on `http://localhost:8080`. You can then preview the documentation in your browser. + +To serve the documentation with a different port, you can pass the port number as an argument to the script: + +```bash +_scripts/local-doc-gen.sh 8081 +``` diff --git a/docs/github-pages/_scripts/fix-xref-links.sh b/docs/github-pages/_scripts/fix-xref-links.sh deleted file mode 100755 index 55d2cc9..0000000 --- a/docs/github-pages/_scripts/fix-xref-links.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash - -# Function to replace directory path in .html files -replace_dir_path() { - local dir="_site/api-docs/$1" - local files=$(find "$dir" -name "*.html") - - for file in $files - do - if [[ $1 == "di" ]]; - then - sed -i "s|api-docs/di/||g" "$file" - else - sed -i "s|api-docs/netcore/||g" "$file" - sed -i "s|api-docs/netstd2/||g" "$file" - fi - done -} - -# Call the function for each directory -replace_dir_path "di" -replace_dir_path "netcore" -replace_dir_path "netstd2" \ No newline at end of file diff --git a/docs/github-pages/_scripts/generate-metadata.sh b/docs/github-pages/_scripts/generate-metadata.sh new file mode 100755 index 0000000..35f4149 --- /dev/null +++ b/docs/github-pages/_scripts/generate-metadata.sh @@ -0,0 +1,36 @@ +#!/bin/bash + +readonly metadata_file_dir="api-docs" + +change_netstd2_uids() { + local -r file_dir="$metadata_file_dir/netstd2" + + # Loop through all yaml files in the api-docs/netstd2 folder + for file in $(find $file_dir -name "*.yml" -o -name "*.yaml"); do + # Update the uid property to prefix with netstd2. + sed -i "s|uid: |uid: netstd2.|g" $file + + # Update text that contains &2 + exit 1 +fi + +## Assign the first argument to base_url and remove trailing slash if present +readonly base_url=${1%/} + +readonly gen_folder="_xref-gen" +readonly file_path="xrefs" + +# Copy and update xrefmap files with base URL in href property. +copy_and_update_xrefmap_files() { + local -r files=("core.xrefmap.yml" "netstd2.xrefmap.yml") + + for file in "${files[@]}"; do + # Copy file to xrefs folder + cp -f "$gen_folder/$file" "$file_path" + + # Update href property in xrefmap file with base URL + sed -i "/href: http/!s|href: |href: $base_url/|g" "$file_path/$file" + + # Update uid property in netstd2.xrefmap.yml to prefix with netstd2. + if [ "$file" == "netstd2.xrefmap.yml" ]; then + sed -i "s|uid: |uid: netstd2.|g" "$file_path/$file" + fi + done +} + docfx metadata docfx-xref.json docfx build docfx-xref.json -cp -f _xref-gen/core.xrefmap.yml xrefs -cp -f _xref-gen/netstd2.xrefmap.yml xrefs -rm -r _xref-gen -rm -r api-docs \ No newline at end of file +copy_and_update_xrefmap_files +rm -r $gen_folder +rm -r api-docs diff --git a/docs/github-pages/_scripts/local-doc-gen.sh b/docs/github-pages/_scripts/local-doc-gen.sh index 0e1762d..8ee6a78 100644 --- a/docs/github-pages/_scripts/local-doc-gen.sh +++ b/docs/github-pages/_scripts/local-doc-gen.sh @@ -1,6 +1,21 @@ #!/bin/bash -script_dir=$(dirname $0) +set -e + +readonly default_port=8080 +readonly script_dir=$(dirname $0) + +# Read port number from the first argument, use default port if not provided +readonly port=${1:-$default_port} + +# Validate port +if ! [[ $port =~ ^[0-9]+$ ]] ; then + echo "Error: Port must be a number" >&2 + exit 1 +fi + +readonly base_url="http://localhost:$port" +echo "Base URL: $base_url" # Remove Existing Documentation if [ -d "_site" ]; then @@ -11,20 +26,14 @@ if [ -d "api-docs" ]; then rm -r api-docs fi -# Generate Generate XrefMap -$script_dir/generate-xrefmap.sh +# Generate Xrefmap +$script_dir/generate-xrefmap.sh $base_url # Generate Metadata -docfx metadata docfx.json - -# Remove Extension Methods -$script_dir/remove-extn-method.sh +$script_dir/generate-metadata.sh # Build Documentation docfx build docfx.json -# Fix Xref Links -$script_dir/fix-xref-links.sh - # Serve Documentation -docfx serve _site \ No newline at end of file +docfx serve _site --port $port diff --git a/docs/github-pages/_scripts/remove-extn-method.sh b/docs/github-pages/_scripts/remove-extn-method.sh deleted file mode 100755 index 320d1a0..0000000 --- a/docs/github-pages/_scripts/remove-extn-method.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -# Define the block of text to remove -PATTERN="- h4: Extension Methods" - -files=$(find api-docs -name "*.yml" -o -name "*.yaml") - -# Loop over all .yml files in the current directory -for file in $files -do - # ignore file starts with toc - if [[ $file == *"toc.yml"* ]] || [[ $file == *"toc.yaml"* ]]; then - continue - fi - - # Use sed to remove the block of text - sed -i "/$PATTERN/,+3d" "$file" -done \ No newline at end of file diff --git a/docs/github-pages/docfx.json b/docs/github-pages/docfx.json index db60f0a..ae3273d 100644 --- a/docs/github-pages/docfx.json +++ b/docs/github-pages/docfx.json @@ -56,7 +56,8 @@ ], "resource": [ { - "files": ["/images/**"] + "files": ["/images/**"], + "exclude": ["_site/**", "obj/**"] } ], "xref": [ diff --git a/docs/github-pages/docs/advanced-features/parameter-properties.md b/docs/github-pages/docs/advanced-features/parameter-properties.md index 75e7b97..714218b 100644 --- a/docs/github-pages/docs/advanced-features/parameter-properties.md +++ b/docs/github-pages/docs/advanced-features/parameter-properties.md @@ -9,7 +9,7 @@ var builder = SimpleBuilder.Create($"SELECT * FROM User WHERE Id = @id") .AddParameter("id", value: id, dbType: DbType.Int32); ``` -However, the library also provides an extension method, [`DefineParam`](../../api-docs/netcore/Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.yml#Dapper_SimpleSqlBuilder_Extensions_SimpleParameterInfoExtensions_DefineParam__1___0_System_Nullable_System_Data_DbType__System_Nullable_System_Int32__System_Nullable_System_Byte__System_Nullable_System_Byte__), to streamline this process when using interpolated strings. +However, the library also provides an extension method, [`DefineParam`](xref:Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.DefineParam``1(``0,System.Nullable{System.Data.DbType},System.Nullable{System.Int32},System.Nullable{System.Byte},System.Nullable{System.Byte})), to streamline this process when using interpolated strings. ```csharp using Dapper.SimpleSqlBuilder.Extensions; @@ -29,7 +29,7 @@ var fluentBuilder = SimpleBuilder.CreateFluent() .Where($"Id = {id.DefineParam(dbType: DbType.Int32)}"); ``` -The [`DefineParam`](../../api-docs/netcore/Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.yml#Dapper_SimpleSqlBuilder_Extensions_SimpleParameterInfoExtensions_DefineParam__1___0_System_Nullable_System_Data_DbType__System_Nullable_System_Int32__System_Nullable_System_Byte__System_Nullable_System_Byte__) extension method enables you to define the [`DbType`](xref:System.Data.DbType), `Size`, `Precision` and `Scale` of your parameter. This should only be used for parameters passed into the interpolated string, as the is always set to `Input` for values in the interpolated string. +The [`DefineParam`](xref:Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.DefineParam``1(``0,System.Nullable{System.Data.DbType},System.Nullable{System.Int32},System.Nullable{System.Byte},System.Nullable{System.Byte})) extension method enables you to define the [`DbType`](xref:System.Data.DbType), `Size`, `Precision` and `Scale` of your parameter. This should only be used for parameters passed into the interpolated string, as the is always set to `Input` for values in the interpolated string. For cases where you don't want to use the extension method, you can manually create the parameter object: diff --git a/docs/github-pages/docs/builders/builder.md b/docs/github-pages/docs/builders/builder.md index c1413cb..74cc780 100644 --- a/docs/github-pages/docs/builders/builder.md +++ b/docs/github-pages/docs/builders/builder.md @@ -1,10 +1,10 @@ # Builder -The [`Builder`](../../api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.yml) is a versatile tool for constructing static, dynamic, complex SQL queries, and stored procedures. +The [`Builder`](xref:Dapper.SimpleSqlBuilder.Builder) is a versatile tool for constructing static, dynamic, complex SQL queries, and stored procedures. -The `Create` method on the [`SimpleSqlBuilder`](../../api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilder.yml) or [`ISimpleBuilder`](../../api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.yml) (when using [dependency injection](../configuration/dependency-injection.md)) creates a new [`builder`](../../api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.yml) instance. It accepts a SQL query as one of its parameters and returns a new [`builder`](../../api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.yml) instance. +The `Create` method on the [`SimpleSqlBuilder`](xref:Dapper.SimpleSqlBuilder.SimpleBuilder.Create(System.FormattableString,System.String,System.Nullable{System.Boolean})) or [`ISimpleBuilder`](xref:Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.Create(System.FormattableString,System.String,System.Nullable{System.Boolean})) (when using [dependency injection](../configuration/dependency-injection.md)) creates a new [`Builder`](xref:Dapper.SimpleSqlBuilder.Builder) instance. It accepts a SQL query as one of its parameters and returns a new [`Builder`](xref:Dapper.SimpleSqlBuilder.Builder) instance. -The SQL query can be a static string or an interpolated string. The [`builder`](../../api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.yml) parses the SQL query and extracts the parameters from it. The parameters can be accessed via the [`Parameters`](../../api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.yml#Dapper_SimpleSqlBuilder_Builder_Parameters) property, and the generated SQL query can be accessed via the [`Sql`](../../api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.yml#Dapper_SimpleSqlBuilder_Builder_Sql) property. +The SQL query can be a static string or an interpolated string. The [`Builder`](xref:Dapper.SimpleSqlBuilder.Builder) parses the SQL query and extracts the parameters from it. The parameters can be accessed via the [`Parameters`](xref:Dapper.SimpleSqlBuilder.Builder.Parameters) property, and the generated SQL query can be accessed via the [`Sql`](xref:Dapper.SimpleSqlBuilder.Builder.Sql) property. ## Static SQL @@ -71,7 +71,7 @@ SELECT * FROM User WHERE UserTypeId = @p0 AND Age >= @p1 ### Builder Chaining -If you prefer an alternative to interpolated string concatenation, you can use the [`Append`](../../api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.yml#Dapper_SimpleSqlBuilder_Builder_Append_Dapper_SimpleSqlBuilder_AppendInterpolatedStringHandler__), [`AppendIntact`](../../api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.yml#Dapper_SimpleSqlBuilder_Builder_AppendIntact_Dapper_SimpleSqlBuilder_AppendIntactInterpolatedStringHandler__), and [`AppendNewLine`](../../api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.yml#Dapper_SimpleSqlBuilder_Builder_AppendNewLine_Dapper_SimpleSqlBuilder_AppendNewLineInterpolatedStringHandler__) methods, which can be chained. +If you prefer an alternative to interpolated string concatenation, you can use the [`Append`](xref:Dapper.SimpleSqlBuilder.Builder.Append(Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler@)), [`AppendIntact`](xref:Dapper.SimpleSqlBuilder.Builder.AppendIntact(Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler@)), and [`AppendNewLine`](xref:Dapper.SimpleSqlBuilder.Builder.AppendNewLine(Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler@)) methods, which can be chained. ```csharp int userTypeId = 4; @@ -124,7 +124,7 @@ ORDER BY FirstName, LastName ### Insert -You can perform INSERT operations with the [`builder`](../../api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.yml) as seen in the example below. +You can perform INSERT operations with the [`Builder`](xref:Dapper.SimpleSqlBuilder.Builder) as seen in the example below. ```csharp var user = new User { FirstName = "John", LastName = "Doe", UserTypeId = 4 }; @@ -146,7 +146,7 @@ VALUES (@p0, @p1, @p2) ### Update -You can perform UPDATE operations with the [`builder`](../../api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.yml) as seen in the example below. +You can perform UPDATE operations with the [`Builder`](xref:Dapper.SimpleSqlBuilder.Builder) as seen in the example below. ```csharp int id = 1; @@ -183,7 +183,7 @@ DELETE FROM User WHERE Id = @p0 ## Stored Procedures -You can execute stored procedures with the [`builder`](../../api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.yml) as seen in the example below. +You can execute stored procedures with the [`Builder`](xref:Dapper.SimpleSqlBuilder.Builder) as seen in the example below. ```csharp var user = new User { FirstName = "John", LastName = "Doe", UserTypeId = 4 }; @@ -205,7 +205,7 @@ int result = builder.GetValue("Result"); ## Builder Reset -There are scenarios where you may want to reuse the [`builder`](../../api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.yml) without creating a new instance. This can be achieved by calling the [`Reset`](../../api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.yml#Dapper_SimpleSqlBuilder_Builder_Reset) method on the [`builder`](../../api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.yml) instance as seen in the example below. +There are scenarios where you may want to reuse the [`Builder`](xref:Dapper.SimpleSqlBuilder.Builder) without creating a new instance. This can be achieved by calling the [`Reset`](xref:Dapper.SimpleSqlBuilder.Builder.Reset) method on the [`Builder`](xref:Dapper.SimpleSqlBuilder.Builder) instance as seen in the example below. ```csharp int id = 1; diff --git a/docs/github-pages/docs/builders/dapper-comparison.md b/docs/github-pages/docs/builders/dapper-comparison.md index 2550db2..e4701b9 100644 --- a/docs/github-pages/docs/builders/dapper-comparison.md +++ b/docs/github-pages/docs/builders/dapper-comparison.md @@ -69,3 +69,7 @@ var users = connection.Query(fluentBuilder.Sql, fluentBuilder.Parameters); ``` --- + +## Next Steps + +- [Performance](../miscellaneous/performance.md) diff --git a/docs/github-pages/docs/builders/fluent-builder/delete-builder.md b/docs/github-pages/docs/builders/fluent-builder/delete-builder.md index 840f3a5..a969c58 100644 --- a/docs/github-pages/docs/builders/fluent-builder/delete-builder.md +++ b/docs/github-pages/docs/builders/fluent-builder/delete-builder.md @@ -1,6 +1,6 @@ # Delete Builder -You can perform `DELETE` operations with the [`Delete Builder`](../../../api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.yml) as seen in the example below. +You can perform `DELETE` operations with the [`Delete Builder`](xref:Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry) as seen in the example below. ```csharp int id = 10; diff --git a/docs/github-pages/docs/builders/fluent-builder/fluent-builder.md b/docs/github-pages/docs/builders/fluent-builder/fluent-builder.md index 490e78b..b9fc6ca 100644 --- a/docs/github-pages/docs/builders/fluent-builder/fluent-builder.md +++ b/docs/github-pages/docs/builders/fluent-builder/fluent-builder.md @@ -1,10 +1,10 @@ # Fluent Builder -The [`Fluent Builder`](../../../api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilder.yml) enables you to build dynamic SQL queries using fluent APIs, offering a more intuitive and readable way to construct complex SQL statements. +The [`Fluent Builder`](xref:Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilder) enables you to build dynamic SQL queries using fluent APIs, offering a more intuitive and readable way to construct complex SQL statements. -The `CreateFluent` method on the [`SimpleSqlBuilder`](../../../api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilder.yml) or [`ISimpleBuilder`](../../../api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.yml) (when using [dependency injection](../../configuration/dependency-injection.md)) creates a new [`fluent builder`](../../../api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilder.yml) instance. +The `CreateFluent` method on the [`SimpleSqlBuilder`](xref:Dapper.SimpleSqlBuilder.SimpleBuilder.CreateFluent(System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean})) or [`ISimpleBuilder`](xref:Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.CreateFluent(System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean})) (when using [dependency injection](../../configuration/dependency-injection.md)) creates a new [`fluent builder`](xref:Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilder) instance. -Using fluent APIs, you can build `SELECT`, `INSERT`, `UPDATE`, and `DELETE` queries. The [`fluent builder`](../../../api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilder.yml) parses the SQL query and extracts parameters from it. These parameters can be accessed via the [`Parameters`](../../../api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.yml#Dapper_SimpleSqlBuilder_Builder_Parameters) property, and the generated SQL query is available through the [`Sql`](../../../api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.yml#Dapper_SimpleSqlBuilder_Builder_Sql) property. +Using fluent APIs, you can build `SELECT`, `INSERT`, `UPDATE`, and `DELETE` queries. The [`Fluent builder`](xref:Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilder) parses the SQL query and extracts parameters from it. These parameters can be accessed via the [`Parameters`](xref:Dapper.SimpleSqlBuilder.Builder.Parameters) property, and the generated SQL query is available through the [`Sql`](xref:Dapper.SimpleSqlBuilder.Builder.Sql) property. ## Fluent Builders diff --git a/docs/github-pages/docs/builders/fluent-builder/insert-builder.md b/docs/github-pages/docs/builders/fluent-builder/insert-builder.md index 661a77b..6099279 100644 --- a/docs/github-pages/docs/builders/fluent-builder/insert-builder.md +++ b/docs/github-pages/docs/builders/fluent-builder/insert-builder.md @@ -1,6 +1,6 @@ # Insert Builder -You can perform `INSERT` operations with the [`Insert Builder`](../../../api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.yml) as seen in the example below. +You can perform `INSERT` operations with the [`Insert Builder`](xref:Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry) as seen in the example below. ```csharp var user = new User { FirstName = "John", LastName = "Doe", UserTypeId = 4 }; diff --git a/docs/github-pages/docs/builders/fluent-builder/select-builder.md b/docs/github-pages/docs/builders/fluent-builder/select-builder.md index 520b973..193e9f7 100644 --- a/docs/github-pages/docs/builders/fluent-builder/select-builder.md +++ b/docs/github-pages/docs/builders/fluent-builder/select-builder.md @@ -1,6 +1,6 @@ # Select Builder -You can perform `SELECT` operations with the [`Select Builder`](../../../api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.yml) as seen in the examples below. +You can perform `SELECT` operations with the [`Select Builder`](xref:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry) as seen in the examples below. ## Select @@ -171,9 +171,9 @@ ORDER BY FirstName ASC, LastName DESC ## Pagination -The [`Select Builder`](../../../api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.yml) supports two popular ways of performing pagination. The choice between `Limit`/`Offset` and `OffsetRows`/`FetchNext` methods may depend on your database system. +The [`Select Builder`](xref:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry) supports two popular ways of performing pagination. The choice between `Limit`/`Offset` and `OffsetRows`/`FetchNext` methods may depend on your database system. -### [`Limit`](../../../api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.yml#Dapper_SimpleSqlBuilder_FluentBuilder_ILimitBuilder_Limit_System_Int32_) and [`Offset`](../../../api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.yml#Dapper_SimpleSqlBuilder_FluentBuilder_IOffsetBuilder_Offset_System_Int32_) +### [`Limit`](xref:Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.Limit(System.Int32)) and [`Offset`](xref:Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.Offset(System.Int32)) ```csharp var builder = SimpleBuilder.CreateFluent() @@ -193,7 +193,7 @@ ORDER BY Age ASC LIMIT 10 OFFSET 20 ``` -### [`OffsetRows`](../../../api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.yml#Dapper_SimpleSqlBuilder_FluentBuilder_IOffsetRowsBuilder_OffsetRows_System_Int32_) and [`FetchNext`](../../../api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.yml#Dapper_SimpleSqlBuilder_FluentBuilder_IFetchBuilder_FetchNext_System_Int32_) +### [`OffsetRows`](xref:Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.OffsetRows(System.Int32)) and [`FetchNext`](xref:Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.FetchNext(System.Int32)) ```csharp var builder = SimpleBuilder.CreateFluent() diff --git a/docs/github-pages/docs/builders/fluent-builder/update-builder.md b/docs/github-pages/docs/builders/fluent-builder/update-builder.md index 8925123..8515797 100644 --- a/docs/github-pages/docs/builders/fluent-builder/update-builder.md +++ b/docs/github-pages/docs/builders/fluent-builder/update-builder.md @@ -1,6 +1,6 @@ # Update Builder -You can perform `UPDATE` operations with the [`Update Builder`](../../../api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.yml) as seen in the example below. +You can perform `UPDATE` operations with the [`Update Builder`](xref:Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry) as seen in the example below. ```csharp int id = 1; diff --git a/docs/github-pages/docs/builders/fluent-builder/where-filters.md b/docs/github-pages/docs/builders/fluent-builder/where-filters.md index eb0f672..ec78609 100644 --- a/docs/github-pages/docs/builders/fluent-builder/where-filters.md +++ b/docs/github-pages/docs/builders/fluent-builder/where-filters.md @@ -4,9 +4,9 @@ The [fluent builder](fluent-builder.md) supports complex filters, allowing the a ## WhereFilter -The [`WhereFilter`](../../../api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.yml#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_WhereFilter_Dapper_SimpleSqlBuilder_FluentBuilder_WhereFilterInterpolatedStringHandler__) method adds a `WHERE` filter statement enclosed in parentheses to the query. Subsequent `WhereFilter` method calls add an `AND` filter statement to the query. +The [`WhereFilter`](xref:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.WhereFilter(Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler@)) method adds a `WHERE` filter statement enclosed in parentheses to the query. Subsequent `WhereFilter` method calls add an `AND` filter statement to the query. -The `WhereFilter` method can be combined with the [`WithFilter`](../../../api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.yml#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithFilter_Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithFilterInterpolatedStringHandler__) and [`WithOrFilter`](../../../api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.yml#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithOrFilter_Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithOrFilterInterpolatedStringHandler__) methods to add `AND` and `OR` filters respectively within the filter statement. +The `WhereFilter` method can be combined with the [`WithFilter`](xref:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter(Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler@)) and [`WithOrFilter`](xref:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter(Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler@)) methods to add `AND` and `OR` filters respectively within the filter statement. ```csharp int minAge = 20; @@ -53,9 +53,9 @@ WHERE (Age >= @p0 AND Age < @p1) AND (Role = @p2 OR Role = @p3 OR Role IS NULL) ## OrWhereFilter -The [`OrWhereFilter`](../../../api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.yml#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhereFilter_Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrFilterInterpolatedStringHandler__) method adds an `OR` filter statement enclosed in parentheses to the query. +The [`OrWhereFilter`](xref:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhereFilter(Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler@)) method adds an `OR` filter statement enclosed in parentheses to the query. -The `OrWhereFilter` method can be combined with the [`WithFilter`](../../../api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.yml#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithFilter_Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithFilterInterpolatedStringHandler__) and [`WithOrFilter`](../../../api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.yml#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithOrFilter_Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithOrFilterInterpolatedStringHandler__) methods to add `AND` and `OR` filters respectively within the filter statement. +The `OrWhereFilter` method can be combined with the [`WithFilter`](xref:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter(Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler@)) and [`WithOrFilter`](xref:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter(Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler@)) methods to add `AND` and `OR` filters respectively within the filter statement. ```csharp int userTypeId = 4; diff --git a/docs/github-pages/docs/configuration/builder-settings.md b/docs/github-pages/docs/configuration/builder-settings.md index 83cdf32..b810dab 100644 --- a/docs/github-pages/docs/configuration/builder-settings.md +++ b/docs/github-pages/docs/configuration/builder-settings.md @@ -1,6 +1,6 @@ # Builder Settings -You can configure the builder settings through the [`SimpleBuilderSettings`](../../api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.yml) static class by calling the `Configure` method. +You can configure the builder settings through the [`SimpleBuilderSettings`](xref:Dapper.SimpleSqlBuilder.SimpleBuilderSettings) static class by calling the `Configure` method. > [!NOTE] > If you are using the dependency injection library, refer to the [Dependency Injection](dependency-injection.md) section on how to configure the global builder settings. diff --git a/docs/github-pages/docs/configuration/dependency-injection.md b/docs/github-pages/docs/configuration/dependency-injection.md index 98bc9e0..375ce9a 100644 --- a/docs/github-pages/docs/configuration/dependency-injection.md +++ b/docs/github-pages/docs/configuration/dependency-injection.md @@ -43,7 +43,7 @@ class MyClass ## Configuring Builder Options -You can configure the builder settings and the [`ISimpleBuilder`](../../api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.yml) instance service lifetime via the [`SimpleBuilderOptions`](../../api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.yml) class. There are various ways to configure the options as shown below. +You can configure the builder settings and the [`ISimpleBuilder`](xref:Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder) instance service lifetime via the [`SimpleBuilderOptions`](xref:Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions) class. There are various ways to configure the options as shown below. ### Configuring Options via `appsettings.json` diff --git a/docs/github-pages/docs/introduction.md b/docs/github-pages/docs/introduction.md index 4080d7c..b7a48ba 100644 --- a/docs/github-pages/docs/introduction.md +++ b/docs/github-pages/docs/introduction.md @@ -46,4 +46,7 @@ If you like the library, use it, share it, and give it a ⭐️ on GitHub. For a ## Next Steps - [Quick Start](../index.md) +- [Builder](builders/builder.md) +- [Fluent Builder](builders/fluent-builder/fluent-builder.md) +- [Performance](miscellaneous/performance.md) - [Release Notes](miscellaneous/release-notes.md) diff --git a/docs/github-pages/index.md b/docs/github-pages/index.md index 99ed972..4366561 100644 --- a/docs/github-pages/index.md +++ b/docs/github-pages/index.md @@ -93,3 +93,7 @@ See the [Builder Settings](docs/configuration/builder-settings.md) section to le ## Next Steps - [Introduction](docs/introduction.md) +- [Builder](docs/builders/builder.md) +- [Fluent Builder](docs/builders/fluent-builder/fluent-builder.md) +- [Performance](docs/miscellaneous/performance.md) +- [Release Notes](docs/miscellaneous/release-notes.md) diff --git a/docs/github-pages/xrefs/core.xrefmap.yml b/docs/github-pages/xrefs/core.xrefmap.yml index fb137da..ff19988 100644 --- a/docs/github-pages/xrefs/core.xrefmap.yml +++ b/docs/github-pages/xrefs/core.xrefmap.yml @@ -3,19 +3,19 @@ sorted: true references: - uid: Dapper.SimpleSqlBuilder name: Dapper.SimpleSqlBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.html commentId: N:Dapper.SimpleSqlBuilder fullName: Dapper.SimpleSqlBuilder nameWithType: Dapper.SimpleSqlBuilder - uid: Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler name: AppendIntactInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler nameWithType: AppendIntactInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.Builder,System.Boolean@) name: AppendIntactInterpolatedStringHandler(int, int, Builder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendIntactInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_Builder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendIntactInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_Builder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.Builder,System.Boolean@) name.vb: New(Integer, Integer, Builder, Boolean) fullName: Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.AppendIntactInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.Builder, out bool) @@ -24,7 +24,7 @@ references: nameWithType.vb: AppendIntactInterpolatedStringHandler.New(Integer, Integer, Builder, Boolean) - uid: Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.Builder,System.Boolean@) name: AppendIntactInterpolatedStringHandler(int, int, bool, Builder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendIntactInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_Builder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendIntactInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_Builder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.Builder,System.Boolean@) name.vb: New(Integer, Integer, Boolean, Builder, Boolean) fullName: Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.AppendIntactInterpolatedStringHandler(int, int, bool, Dapper.SimpleSqlBuilder.Builder, out bool) @@ -33,7 +33,7 @@ references: nameWithType.vb: AppendIntactInterpolatedStringHandler.New(Integer, Integer, Boolean, Builder, Boolean) - uid: Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.#ctor* name: AppendIntactInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendIntactInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendIntactInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -43,14 +43,14 @@ references: nameWithType.vb: AppendIntactInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendIntactInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendIntactInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.AppendFormatted nameWithType: AppendIntactInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendIntactInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendIntactInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.AppendFormatted(T) @@ -59,7 +59,7 @@ references: nameWithType.vb: AppendIntactInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendIntactInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendIntactInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.AppendFormatted(T, string?) @@ -68,7 +68,7 @@ references: nameWithType.vb: AppendIntactInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendIntactInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendIntactInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.AppendLiteral(string) @@ -77,20 +77,20 @@ references: nameWithType.vb: AppendIntactInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendIntactInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendIntactInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler.AppendLiteral nameWithType: AppendIntactInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler name: AppendInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler nameWithType: AppendInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.Builder,System.Boolean@) name: AppendInterpolatedStringHandler(int, int, Builder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_Builder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_Builder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.Builder,System.Boolean@) name.vb: New(Integer, Integer, Builder, Boolean) fullName: Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.AppendInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.Builder, out bool) @@ -99,7 +99,7 @@ references: nameWithType.vb: AppendInterpolatedStringHandler.New(Integer, Integer, Builder, Boolean) - uid: Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.Builder,System.Boolean@) name: AppendInterpolatedStringHandler(int, int, bool, Builder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_Builder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_Builder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.Builder,System.Boolean@) name.vb: New(Integer, Integer, Boolean, Builder, Boolean) fullName: Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.AppendInterpolatedStringHandler(int, int, bool, Dapper.SimpleSqlBuilder.Builder, out bool) @@ -108,7 +108,7 @@ references: nameWithType.vb: AppendInterpolatedStringHandler.New(Integer, Integer, Boolean, Builder, Boolean) - uid: Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.#ctor* name: AppendInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -118,14 +118,14 @@ references: nameWithType.vb: AppendInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.AppendFormatted nameWithType: AppendInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.AppendFormatted(T) @@ -134,7 +134,7 @@ references: nameWithType.vb: AppendInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.AppendFormatted(T, string?) @@ -143,7 +143,7 @@ references: nameWithType.vb: AppendInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.AppendLiteral(string) @@ -152,20 +152,20 @@ references: nameWithType.vb: AppendInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler.AppendLiteral nameWithType: AppendInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler name: AppendNewLineInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler nameWithType: AppendNewLineInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.Builder,System.Boolean@) name: AppendNewLineInterpolatedStringHandler(int, int, Builder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendNewLineInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_Builder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendNewLineInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_Builder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.Builder,System.Boolean@) name.vb: New(Integer, Integer, Builder, Boolean) fullName: Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.AppendNewLineInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.Builder, out bool) @@ -174,7 +174,7 @@ references: nameWithType.vb: AppendNewLineInterpolatedStringHandler.New(Integer, Integer, Builder, Boolean) - uid: Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.Builder,System.Boolean@) name: AppendNewLineInterpolatedStringHandler(int, int, bool, Builder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendNewLineInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_Builder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendNewLineInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_Builder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.Builder,System.Boolean@) name.vb: New(Integer, Integer, Boolean, Builder, Boolean) fullName: Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.AppendNewLineInterpolatedStringHandler(int, int, bool, Dapper.SimpleSqlBuilder.Builder, out bool) @@ -183,7 +183,7 @@ references: nameWithType.vb: AppendNewLineInterpolatedStringHandler.New(Integer, Integer, Boolean, Builder, Boolean) - uid: Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.#ctor* name: AppendNewLineInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendNewLineInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendNewLineInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -193,14 +193,14 @@ references: nameWithType.vb: AppendNewLineInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendNewLineInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendNewLineInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.AppendFormatted nameWithType: AppendNewLineInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendNewLineInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendNewLineInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.AppendFormatted(T) @@ -209,7 +209,7 @@ references: nameWithType.vb: AppendNewLineInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendNewLineInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendNewLineInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.AppendFormatted(T, string?) @@ -218,7 +218,7 @@ references: nameWithType.vb: AppendNewLineInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendNewLineInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendNewLineInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.AppendLiteral(string) @@ -227,20 +227,20 @@ references: nameWithType.vb: AppendNewLineInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendNewLineInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_AppendNewLineInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler.AppendLiteral nameWithType: AppendNewLineInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.Builder name: Builder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html commentId: T:Dapper.SimpleSqlBuilder.Builder fullName: Dapper.SimpleSqlBuilder.Builder nameWithType: Builder - uid: Dapper.SimpleSqlBuilder.Builder.AddDynamicParameters(System.Object) name: AddDynamicParameters(object?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AddDynamicParameters_System_Object_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AddDynamicParameters_System_Object_ commentId: M:Dapper.SimpleSqlBuilder.Builder.AddDynamicParameters(System.Object) name.vb: AddDynamicParameters(Object) fullName: Dapper.SimpleSqlBuilder.Builder.AddDynamicParameters(object?) @@ -249,14 +249,14 @@ references: nameWithType.vb: Builder.AddDynamicParameters(Object) - uid: Dapper.SimpleSqlBuilder.Builder.AddDynamicParameters* name: AddDynamicParameters - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AddDynamicParameters_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AddDynamicParameters_ commentId: Overload:Dapper.SimpleSqlBuilder.Builder.AddDynamicParameters isSpec: "True" fullName: Dapper.SimpleSqlBuilder.Builder.AddDynamicParameters nameWithType: Builder.AddDynamicParameters - uid: Dapper.SimpleSqlBuilder.Builder.AddParameter(System.String,System.Object,System.Nullable{System.Data.DbType},System.Nullable{System.Data.ParameterDirection},System.Nullable{System.Int32},System.Nullable{System.Byte},System.Nullable{System.Byte}) name: AddParameter(string, object?, DbType?, ParameterDirection?, int?, byte?, byte?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AddParameter_System_String_System_Object_System_Nullable_System_Data_DbType__System_Nullable_System_Data_ParameterDirection__System_Nullable_System_Int32__System_Nullable_System_Byte__System_Nullable_System_Byte__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AddParameter_System_String_System_Object_System_Nullable_System_Data_DbType__System_Nullable_System_Data_ParameterDirection__System_Nullable_System_Int32__System_Nullable_System_Byte__System_Nullable_System_Byte__ commentId: M:Dapper.SimpleSqlBuilder.Builder.AddParameter(System.String,System.Object,System.Nullable{System.Data.DbType},System.Nullable{System.Data.ParameterDirection},System.Nullable{System.Int32},System.Nullable{System.Byte},System.Nullable{System.Byte}) name.vb: AddParameter(String, Object, DbType?, ParameterDirection?, Integer?, Byte?, Byte?) fullName: Dapper.SimpleSqlBuilder.Builder.AddParameter(string, object?, System.Data.DbType?, System.Data.ParameterDirection?, int?, byte?, byte?) @@ -265,14 +265,14 @@ references: nameWithType.vb: Builder.AddParameter(String, Object, DbType?, ParameterDirection?, Integer?, Byte?, Byte?) - uid: Dapper.SimpleSqlBuilder.Builder.AddParameter* name: AddParameter - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AddParameter_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AddParameter_ commentId: Overload:Dapper.SimpleSqlBuilder.Builder.AddParameter isSpec: "True" fullName: Dapper.SimpleSqlBuilder.Builder.AddParameter nameWithType: Builder.AddParameter - uid: Dapper.SimpleSqlBuilder.Builder.Append(Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler@) name: Append(ref AppendInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Append_Dapper_SimpleSqlBuilder_AppendInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Append_Dapper_SimpleSqlBuilder_AppendInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.Builder.Append(Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler@) name.vb: Append(AppendInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.Builder.Append(ref Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler) @@ -281,7 +281,7 @@ references: nameWithType.vb: Builder.Append(AppendInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.Builder.Append(System.Boolean,Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler@) name: Append(bool, ref AppendInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Append_System_Boolean_Dapper_SimpleSqlBuilder_AppendInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Append_System_Boolean_Dapper_SimpleSqlBuilder_AppendInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.Builder.Append(System.Boolean,Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler@) name.vb: Append(Boolean, AppendInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.Builder.Append(bool, ref Dapper.SimpleSqlBuilder.AppendInterpolatedStringHandler) @@ -290,14 +290,14 @@ references: nameWithType.vb: Builder.Append(Boolean, AppendInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.Builder.Append* name: Append - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Append_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Append_ commentId: Overload:Dapper.SimpleSqlBuilder.Builder.Append isSpec: "True" fullName: Dapper.SimpleSqlBuilder.Builder.Append nameWithType: Builder.Append - uid: Dapper.SimpleSqlBuilder.Builder.AppendIntact(Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler@) name: AppendIntact(ref AppendIntactInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendIntact_Dapper_SimpleSqlBuilder_AppendIntactInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendIntact_Dapper_SimpleSqlBuilder_AppendIntactInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.Builder.AppendIntact(Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler@) name.vb: AppendIntact(AppendIntactInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.Builder.AppendIntact(ref Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler) @@ -306,7 +306,7 @@ references: nameWithType.vb: Builder.AppendIntact(AppendIntactInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.Builder.AppendIntact(System.Boolean,Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler@) name: AppendIntact(bool, ref AppendIntactInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendIntact_System_Boolean_Dapper_SimpleSqlBuilder_AppendIntactInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendIntact_System_Boolean_Dapper_SimpleSqlBuilder_AppendIntactInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.Builder.AppendIntact(System.Boolean,Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler@) name.vb: AppendIntact(Boolean, AppendIntactInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.Builder.AppendIntact(bool, ref Dapper.SimpleSqlBuilder.AppendIntactInterpolatedStringHandler) @@ -315,20 +315,20 @@ references: nameWithType.vb: Builder.AppendIntact(Boolean, AppendIntactInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.Builder.AppendIntact* name: AppendIntact - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendIntact_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendIntact_ commentId: Overload:Dapper.SimpleSqlBuilder.Builder.AppendIntact isSpec: "True" fullName: Dapper.SimpleSqlBuilder.Builder.AppendIntact nameWithType: Builder.AppendIntact - uid: Dapper.SimpleSqlBuilder.Builder.AppendNewLine name: AppendNewLine() - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendNewLine + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendNewLine commentId: M:Dapper.SimpleSqlBuilder.Builder.AppendNewLine fullName: Dapper.SimpleSqlBuilder.Builder.AppendNewLine() nameWithType: Builder.AppendNewLine() - uid: Dapper.SimpleSqlBuilder.Builder.AppendNewLine(Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler@) name: AppendNewLine(ref AppendNewLineInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendNewLine_Dapper_SimpleSqlBuilder_AppendNewLineInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendNewLine_Dapper_SimpleSqlBuilder_AppendNewLineInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.Builder.AppendNewLine(Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler@) name.vb: AppendNewLine(AppendNewLineInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.Builder.AppendNewLine(ref Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler) @@ -337,7 +337,7 @@ references: nameWithType.vb: Builder.AppendNewLine(AppendNewLineInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.Builder.AppendNewLine(System.Boolean,Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler@) name: AppendNewLine(bool, ref AppendNewLineInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendNewLine_System_Boolean_Dapper_SimpleSqlBuilder_AppendNewLineInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendNewLine_System_Boolean_Dapper_SimpleSqlBuilder_AppendNewLineInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.Builder.AppendNewLine(System.Boolean,Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler@) name.vb: AppendNewLine(Boolean, AppendNewLineInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.Builder.AppendNewLine(bool, ref Dapper.SimpleSqlBuilder.AppendNewLineInterpolatedStringHandler) @@ -346,21 +346,21 @@ references: nameWithType.vb: Builder.AppendNewLine(Boolean, AppendNewLineInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.Builder.AppendNewLine* name: AppendNewLine - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendNewLine_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendNewLine_ commentId: Overload:Dapper.SimpleSqlBuilder.Builder.AppendNewLine isSpec: "True" fullName: Dapper.SimpleSqlBuilder.Builder.AppendNewLine nameWithType: Builder.AppendNewLine - uid: Dapper.SimpleSqlBuilder.Builder.GetValue* name: GetValue - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_GetValue_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_GetValue_ commentId: Overload:Dapper.SimpleSqlBuilder.Builder.GetValue isSpec: "True" fullName: Dapper.SimpleSqlBuilder.Builder.GetValue nameWithType: Builder.GetValue - uid: Dapper.SimpleSqlBuilder.Builder.GetValue``1(System.String) name: GetValue(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_GetValue__1_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_GetValue__1_System_String_ commentId: M:Dapper.SimpleSqlBuilder.Builder.GetValue``1(System.String) name.vb: GetValue(Of T)(String) fullName: Dapper.SimpleSqlBuilder.Builder.GetValue(string) @@ -369,59 +369,59 @@ references: nameWithType.vb: Builder.GetValue(Of T)(String) - uid: Dapper.SimpleSqlBuilder.Builder.ParameterNames name: ParameterNames - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_ParameterNames + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_ParameterNames commentId: P:Dapper.SimpleSqlBuilder.Builder.ParameterNames fullName: Dapper.SimpleSqlBuilder.Builder.ParameterNames nameWithType: Builder.ParameterNames - uid: Dapper.SimpleSqlBuilder.Builder.ParameterNames* name: ParameterNames - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_ParameterNames_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_ParameterNames_ commentId: Overload:Dapper.SimpleSqlBuilder.Builder.ParameterNames isSpec: "True" fullName: Dapper.SimpleSqlBuilder.Builder.ParameterNames nameWithType: Builder.ParameterNames - uid: Dapper.SimpleSqlBuilder.Builder.Parameters name: Parameters - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Parameters + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Parameters commentId: P:Dapper.SimpleSqlBuilder.Builder.Parameters fullName: Dapper.SimpleSqlBuilder.Builder.Parameters nameWithType: Builder.Parameters - uid: Dapper.SimpleSqlBuilder.Builder.Parameters* name: Parameters - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Parameters_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Parameters_ commentId: Overload:Dapper.SimpleSqlBuilder.Builder.Parameters isSpec: "True" fullName: Dapper.SimpleSqlBuilder.Builder.Parameters nameWithType: Builder.Parameters - uid: Dapper.SimpleSqlBuilder.Builder.Reset name: Reset() - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Reset + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Reset commentId: M:Dapper.SimpleSqlBuilder.Builder.Reset fullName: Dapper.SimpleSqlBuilder.Builder.Reset() nameWithType: Builder.Reset() - uid: Dapper.SimpleSqlBuilder.Builder.Reset* name: Reset - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Reset_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Reset_ commentId: Overload:Dapper.SimpleSqlBuilder.Builder.Reset isSpec: "True" fullName: Dapper.SimpleSqlBuilder.Builder.Reset nameWithType: Builder.Reset - uid: Dapper.SimpleSqlBuilder.Builder.Sql name: Sql - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Sql + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Sql commentId: P:Dapper.SimpleSqlBuilder.Builder.Sql fullName: Dapper.SimpleSqlBuilder.Builder.Sql nameWithType: Builder.Sql - uid: Dapper.SimpleSqlBuilder.Builder.Sql* name: Sql - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Sql_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Sql_ commentId: Overload:Dapper.SimpleSqlBuilder.Builder.Sql isSpec: "True" fullName: Dapper.SimpleSqlBuilder.Builder.Sql nameWithType: Builder.Sql - uid: Dapper.SimpleSqlBuilder.Builder.op_Addition(Dapper.SimpleSqlBuilder.Builder,System.FormattableString) name: operator +(Builder, FormattableString) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_op_Addition_Dapper_SimpleSqlBuilder_Builder_System_FormattableString_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_op_Addition_Dapper_SimpleSqlBuilder_Builder_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.Builder.op_Addition(Dapper.SimpleSqlBuilder.Builder,System.FormattableString) name.vb: +(Builder, FormattableString) fullName: Dapper.SimpleSqlBuilder.Builder.operator +(Dapper.SimpleSqlBuilder.Builder, System.FormattableString) @@ -430,7 +430,7 @@ references: nameWithType.vb: Builder.+(Builder, FormattableString) - uid: Dapper.SimpleSqlBuilder.Builder.op_Addition* name: operator + - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_op_Addition_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_op_Addition_ commentId: Overload:Dapper.SimpleSqlBuilder.Builder.op_Addition isSpec: "True" name.vb: + @@ -440,19 +440,19 @@ references: nameWithType.vb: Builder.+ - uid: Dapper.SimpleSqlBuilder.DependencyInjection name: Dapper.SimpleSqlBuilder.DependencyInjection - href: api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.html + href: http://localhost:8080/api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.html commentId: N:Dapper.SimpleSqlBuilder.DependencyInjection fullName: Dapper.SimpleSqlBuilder.DependencyInjection nameWithType: Dapper.SimpleSqlBuilder.DependencyInjection - uid: Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder name: ISimpleBuilder - href: api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.html + href: http://localhost:8080/api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.html commentId: T:Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder fullName: Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder nameWithType: ISimpleBuilder - uid: Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.Create(System.FormattableString,System.String,System.Nullable{System.Boolean}) name: Create(FormattableString?, string?, bool?) - href: api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.html#Dapper_SimpleSqlBuilder_DependencyInjection_ISimpleBuilder_Create_System_FormattableString_System_String_System_Nullable_System_Boolean__ + href: http://localhost:8080/api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.html#Dapper_SimpleSqlBuilder_DependencyInjection_ISimpleBuilder_Create_System_FormattableString_System_String_System_Nullable_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.Create(System.FormattableString,System.String,System.Nullable{System.Boolean}) name.vb: Create(FormattableString, String, Boolean?) fullName: Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.Create(System.FormattableString?, string?, bool?) @@ -461,14 +461,14 @@ references: nameWithType.vb: ISimpleBuilder.Create(FormattableString, String, Boolean?) - uid: Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.Create* name: Create - href: api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.html#Dapper_SimpleSqlBuilder_DependencyInjection_ISimpleBuilder_Create_ + href: http://localhost:8080/api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.html#Dapper_SimpleSqlBuilder_DependencyInjection_ISimpleBuilder_Create_ commentId: Overload:Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.Create isSpec: "True" fullName: Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.Create nameWithType: ISimpleBuilder.Create - uid: Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.CreateFluent(System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean}) name: CreateFluent(string?, bool?, bool?) - href: api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.html#Dapper_SimpleSqlBuilder_DependencyInjection_ISimpleBuilder_CreateFluent_System_String_System_Nullable_System_Boolean__System_Nullable_System_Boolean__ + href: http://localhost:8080/api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.html#Dapper_SimpleSqlBuilder_DependencyInjection_ISimpleBuilder_CreateFluent_System_String_System_Nullable_System_Boolean__System_Nullable_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.CreateFluent(System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean}) name.vb: CreateFluent(String, Boolean?, Boolean?) fullName: Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.CreateFluent(string?, bool?, bool?) @@ -477,26 +477,26 @@ references: nameWithType.vb: ISimpleBuilder.CreateFluent(String, Boolean?, Boolean?) - uid: Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.CreateFluent* name: CreateFluent - href: api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.html#Dapper_SimpleSqlBuilder_DependencyInjection_ISimpleBuilder_CreateFluent_ + href: http://localhost:8080/api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.html#Dapper_SimpleSqlBuilder_DependencyInjection_ISimpleBuilder_CreateFluent_ commentId: Overload:Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.CreateFluent isSpec: "True" fullName: Dapper.SimpleSqlBuilder.DependencyInjection.ISimpleBuilder.CreateFluent nameWithType: ISimpleBuilder.CreateFluent - uid: Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions name: ServiceCollectionExtensions - href: api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions.html + href: http://localhost:8080/api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions.html commentId: T:Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions fullName: Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions nameWithType: ServiceCollectionExtensions - uid: Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions.AddSimpleSqlBuilder(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.ServiceLifetime) name: AddSimpleSqlBuilder(IServiceCollection, ServiceLifetime) - href: api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions.html#Dapper_SimpleSqlBuilder_DependencyInjection_ServiceCollectionExtensions_AddSimpleSqlBuilder_Microsoft_Extensions_DependencyInjection_IServiceCollection_Microsoft_Extensions_DependencyInjection_ServiceLifetime_ + href: http://localhost:8080/api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions.html#Dapper_SimpleSqlBuilder_DependencyInjection_ServiceCollectionExtensions_AddSimpleSqlBuilder_Microsoft_Extensions_DependencyInjection_IServiceCollection_Microsoft_Extensions_DependencyInjection_ServiceLifetime_ commentId: M:Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions.AddSimpleSqlBuilder(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.DependencyInjection.ServiceLifetime) fullName: Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions.AddSimpleSqlBuilder(Microsoft.Extensions.DependencyInjection.IServiceCollection, Microsoft.Extensions.DependencyInjection.ServiceLifetime) nameWithType: ServiceCollectionExtensions.AddSimpleSqlBuilder(IServiceCollection, ServiceLifetime) - uid: Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions.AddSimpleSqlBuilder(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions},Microsoft.Extensions.DependencyInjection.ServiceLifetime) name: AddSimpleSqlBuilder(IServiceCollection, Action, ServiceLifetime) - href: api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions.html#Dapper_SimpleSqlBuilder_DependencyInjection_ServiceCollectionExtensions_AddSimpleSqlBuilder_Microsoft_Extensions_DependencyInjection_IServiceCollection_System_Action_Dapper_SimpleSqlBuilder_DependencyInjection_SimpleBuilderOptions__Microsoft_Extensions_DependencyInjection_ServiceLifetime_ + href: http://localhost:8080/api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions.html#Dapper_SimpleSqlBuilder_DependencyInjection_ServiceCollectionExtensions_AddSimpleSqlBuilder_Microsoft_Extensions_DependencyInjection_IServiceCollection_System_Action_Dapper_SimpleSqlBuilder_DependencyInjection_SimpleBuilderOptions__Microsoft_Extensions_DependencyInjection_ServiceLifetime_ commentId: M:Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions.AddSimpleSqlBuilder(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions},Microsoft.Extensions.DependencyInjection.ServiceLifetime) name.vb: AddSimpleSqlBuilder(IServiceCollection, Action(Of SimpleBuilderOptions), ServiceLifetime) fullName: Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions.AddSimpleSqlBuilder(Microsoft.Extensions.DependencyInjection.IServiceCollection, System.Action, Microsoft.Extensions.DependencyInjection.ServiceLifetime) @@ -505,7 +505,7 @@ references: nameWithType.vb: ServiceCollectionExtensions.AddSimpleSqlBuilder(IServiceCollection, Action(Of SimpleBuilderOptions), ServiceLifetime) - uid: Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions.AddSimpleSqlBuilder(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,Microsoft.Extensions.DependencyInjection.ServiceLifetime) name: AddSimpleSqlBuilder(IServiceCollection, string, ServiceLifetime) - href: api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions.html#Dapper_SimpleSqlBuilder_DependencyInjection_ServiceCollectionExtensions_AddSimpleSqlBuilder_Microsoft_Extensions_DependencyInjection_IServiceCollection_System_String_Microsoft_Extensions_DependencyInjection_ServiceLifetime_ + href: http://localhost:8080/api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions.html#Dapper_SimpleSqlBuilder_DependencyInjection_ServiceCollectionExtensions_AddSimpleSqlBuilder_Microsoft_Extensions_DependencyInjection_IServiceCollection_System_String_Microsoft_Extensions_DependencyInjection_ServiceLifetime_ commentId: M:Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions.AddSimpleSqlBuilder(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,Microsoft.Extensions.DependencyInjection.ServiceLifetime) name.vb: AddSimpleSqlBuilder(IServiceCollection, String, ServiceLifetime) fullName: Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions.AddSimpleSqlBuilder(Microsoft.Extensions.DependencyInjection.IServiceCollection, string, Microsoft.Extensions.DependencyInjection.ServiceLifetime) @@ -514,97 +514,97 @@ references: nameWithType.vb: ServiceCollectionExtensions.AddSimpleSqlBuilder(IServiceCollection, String, ServiceLifetime) - uid: Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions.AddSimpleSqlBuilder* name: AddSimpleSqlBuilder - href: api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions.html#Dapper_SimpleSqlBuilder_DependencyInjection_ServiceCollectionExtensions_AddSimpleSqlBuilder_ + href: http://localhost:8080/api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions.html#Dapper_SimpleSqlBuilder_DependencyInjection_ServiceCollectionExtensions_AddSimpleSqlBuilder_ commentId: Overload:Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions.AddSimpleSqlBuilder isSpec: "True" fullName: Dapper.SimpleSqlBuilder.DependencyInjection.ServiceCollectionExtensions.AddSimpleSqlBuilder nameWithType: ServiceCollectionExtensions.AddSimpleSqlBuilder - uid: Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions name: SimpleBuilderOptions - href: api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.html + href: http://localhost:8080/api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.html commentId: T:Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions fullName: Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions nameWithType: SimpleBuilderOptions - uid: Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.ConfigurationSectionName name: ConfigurationSectionName - href: api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.html#Dapper_SimpleSqlBuilder_DependencyInjection_SimpleBuilderOptions_ConfigurationSectionName + href: http://localhost:8080/api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.html#Dapper_SimpleSqlBuilder_DependencyInjection_SimpleBuilderOptions_ConfigurationSectionName commentId: F:Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.ConfigurationSectionName fullName: Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.ConfigurationSectionName nameWithType: SimpleBuilderOptions.ConfigurationSectionName - uid: Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.DatabaseParameterNameTemplate name: DatabaseParameterNameTemplate - href: api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.html#Dapper_SimpleSqlBuilder_DependencyInjection_SimpleBuilderOptions_DatabaseParameterNameTemplate + href: http://localhost:8080/api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.html#Dapper_SimpleSqlBuilder_DependencyInjection_SimpleBuilderOptions_DatabaseParameterNameTemplate commentId: P:Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.DatabaseParameterNameTemplate fullName: Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.DatabaseParameterNameTemplate nameWithType: SimpleBuilderOptions.DatabaseParameterNameTemplate - uid: Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.DatabaseParameterNameTemplate* name: DatabaseParameterNameTemplate - href: api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.html#Dapper_SimpleSqlBuilder_DependencyInjection_SimpleBuilderOptions_DatabaseParameterNameTemplate_ + href: http://localhost:8080/api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.html#Dapper_SimpleSqlBuilder_DependencyInjection_SimpleBuilderOptions_DatabaseParameterNameTemplate_ commentId: Overload:Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.DatabaseParameterNameTemplate isSpec: "True" fullName: Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.DatabaseParameterNameTemplate nameWithType: SimpleBuilderOptions.DatabaseParameterNameTemplate - uid: Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.DatabaseParameterPrefix name: DatabaseParameterPrefix - href: api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.html#Dapper_SimpleSqlBuilder_DependencyInjection_SimpleBuilderOptions_DatabaseParameterPrefix + href: http://localhost:8080/api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.html#Dapper_SimpleSqlBuilder_DependencyInjection_SimpleBuilderOptions_DatabaseParameterPrefix commentId: P:Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.DatabaseParameterPrefix fullName: Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.DatabaseParameterPrefix nameWithType: SimpleBuilderOptions.DatabaseParameterPrefix - uid: Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.DatabaseParameterPrefix* name: DatabaseParameterPrefix - href: api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.html#Dapper_SimpleSqlBuilder_DependencyInjection_SimpleBuilderOptions_DatabaseParameterPrefix_ + href: http://localhost:8080/api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.html#Dapper_SimpleSqlBuilder_DependencyInjection_SimpleBuilderOptions_DatabaseParameterPrefix_ commentId: Overload:Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.DatabaseParameterPrefix isSpec: "True" fullName: Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.DatabaseParameterPrefix nameWithType: SimpleBuilderOptions.DatabaseParameterPrefix - uid: Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.ReuseParameters name: ReuseParameters - href: api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.html#Dapper_SimpleSqlBuilder_DependencyInjection_SimpleBuilderOptions_ReuseParameters + href: http://localhost:8080/api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.html#Dapper_SimpleSqlBuilder_DependencyInjection_SimpleBuilderOptions_ReuseParameters commentId: P:Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.ReuseParameters fullName: Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.ReuseParameters nameWithType: SimpleBuilderOptions.ReuseParameters - uid: Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.ReuseParameters* name: ReuseParameters - href: api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.html#Dapper_SimpleSqlBuilder_DependencyInjection_SimpleBuilderOptions_ReuseParameters_ + href: http://localhost:8080/api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.html#Dapper_SimpleSqlBuilder_DependencyInjection_SimpleBuilderOptions_ReuseParameters_ commentId: Overload:Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.ReuseParameters isSpec: "True" fullName: Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.ReuseParameters nameWithType: SimpleBuilderOptions.ReuseParameters - uid: Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.UseLowerCaseClauses name: UseLowerCaseClauses - href: api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.html#Dapper_SimpleSqlBuilder_DependencyInjection_SimpleBuilderOptions_UseLowerCaseClauses + href: http://localhost:8080/api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.html#Dapper_SimpleSqlBuilder_DependencyInjection_SimpleBuilderOptions_UseLowerCaseClauses commentId: P:Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.UseLowerCaseClauses fullName: Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.UseLowerCaseClauses nameWithType: SimpleBuilderOptions.UseLowerCaseClauses - uid: Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.UseLowerCaseClauses* name: UseLowerCaseClauses - href: api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.html#Dapper_SimpleSqlBuilder_DependencyInjection_SimpleBuilderOptions_UseLowerCaseClauses_ + href: http://localhost:8080/api-docs/di/Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.html#Dapper_SimpleSqlBuilder_DependencyInjection_SimpleBuilderOptions_UseLowerCaseClauses_ commentId: Overload:Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.UseLowerCaseClauses isSpec: "True" fullName: Dapper.SimpleSqlBuilder.DependencyInjection.SimpleBuilderOptions.UseLowerCaseClauses nameWithType: SimpleBuilderOptions.UseLowerCaseClauses - uid: Dapper.SimpleSqlBuilder.Extensions name: Dapper.SimpleSqlBuilder.Extensions - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Extensions.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Extensions.html commentId: N:Dapper.SimpleSqlBuilder.Extensions fullName: Dapper.SimpleSqlBuilder.Extensions nameWithType: Dapper.SimpleSqlBuilder.Extensions - uid: Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions name: SimpleParameterInfoExtensions - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.html commentId: T:Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions fullName: Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions nameWithType: SimpleParameterInfoExtensions - uid: Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.DefineParam* name: DefineParam - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.html#Dapper_SimpleSqlBuilder_Extensions_SimpleParameterInfoExtensions_DefineParam_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.html#Dapper_SimpleSqlBuilder_Extensions_SimpleParameterInfoExtensions_DefineParam_ commentId: Overload:Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.DefineParam isSpec: "True" fullName: Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.DefineParam nameWithType: SimpleParameterInfoExtensions.DefineParam - uid: Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.DefineParam``1(``0,System.Nullable{System.Data.DbType},System.Nullable{System.Int32},System.Nullable{System.Byte},System.Nullable{System.Byte}) name: DefineParam(T, DbType?, int?, byte?, byte?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.html#Dapper_SimpleSqlBuilder_Extensions_SimpleParameterInfoExtensions_DefineParam__1___0_System_Nullable_System_Data_DbType__System_Nullable_System_Int32__System_Nullable_System_Byte__System_Nullable_System_Byte__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.html#Dapper_SimpleSqlBuilder_Extensions_SimpleParameterInfoExtensions_DefineParam__1___0_System_Nullable_System_Data_DbType__System_Nullable_System_Int32__System_Nullable_System_Byte__System_Nullable_System_Byte__ commentId: M:Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.DefineParam``1(``0,System.Nullable{System.Data.DbType},System.Nullable{System.Int32},System.Nullable{System.Byte},System.Nullable{System.Byte}) name.vb: DefineParam(Of T)(T, DbType?, Integer?, Byte?, Byte?) fullName: Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.DefineParam(T, System.Data.DbType?, int?, byte?, byte?) @@ -613,19 +613,19 @@ references: nameWithType.vb: SimpleParameterInfoExtensions.DefineParam(Of T)(T, DbType?, Integer?, Byte?, Byte?) - uid: Dapper.SimpleSqlBuilder.FluentBuilder name: Dapper.SimpleSqlBuilder.FluentBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.html commentId: N:Dapper.SimpleSqlBuilder.FluentBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder nameWithType: Dapper.SimpleSqlBuilder.FluentBuilder - uid: Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler name: DeleteInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler nameWithType: DeleteInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) name: DeleteInterpolatedStringHandler(int, int, IFluentBuilder) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_DeleteInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_DeleteInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) name.vb: New(Integer, Integer, IFluentBuilder) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.DeleteInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) @@ -634,7 +634,7 @@ references: nameWithType.vb: DeleteInterpolatedStringHandler.New(Integer, Integer, IFluentBuilder) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.#ctor* name: DeleteInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_DeleteInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_DeleteInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -644,14 +644,14 @@ references: nameWithType.vb: DeleteInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_DeleteInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_DeleteInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.AppendFormatted nameWithType: DeleteInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_DeleteInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_DeleteInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.AppendFormatted(T) @@ -660,7 +660,7 @@ references: nameWithType.vb: DeleteInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_DeleteInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_DeleteInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.AppendFormatted(T, string?) @@ -669,7 +669,7 @@ references: nameWithType.vb: DeleteInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_DeleteInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_DeleteInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.AppendLiteral(string) @@ -678,20 +678,20 @@ references: nameWithType.vb: DeleteInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_DeleteInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_DeleteInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler.AppendLiteral nameWithType: DeleteInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler name: GroupByInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler nameWithType: GroupByInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name: GroupByInterpolatedStringHandler(int, int, IFluentBuilder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_GroupByInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_GroupByInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name.vb: New(Integer, Integer, IFluentBuilder, Boolean) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.GroupByInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder, out bool) @@ -700,7 +700,7 @@ references: nameWithType.vb: GroupByInterpolatedStringHandler.New(Integer, Integer, IFluentBuilder, Boolean) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name: GroupByInterpolatedStringHandler(int, int, bool, IFluentBuilder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_GroupByInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_GroupByInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name.vb: New(Integer, Integer, Boolean, IFluentBuilder, Boolean) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.GroupByInterpolatedStringHandler(int, int, bool, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder, out bool) @@ -709,7 +709,7 @@ references: nameWithType.vb: GroupByInterpolatedStringHandler.New(Integer, Integer, Boolean, IFluentBuilder, Boolean) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.#ctor* name: GroupByInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_GroupByInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_GroupByInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -719,14 +719,14 @@ references: nameWithType.vb: GroupByInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_GroupByInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_GroupByInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.AppendFormatted nameWithType: GroupByInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_GroupByInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_GroupByInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.AppendFormatted(T) @@ -735,7 +735,7 @@ references: nameWithType.vb: GroupByInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_GroupByInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_GroupByInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.AppendFormatted(T, string?) @@ -744,7 +744,7 @@ references: nameWithType.vb: GroupByInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_GroupByInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_GroupByInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.AppendLiteral(string) @@ -753,20 +753,20 @@ references: nameWithType.vb: GroupByInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_GroupByInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_GroupByInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler.AppendLiteral nameWithType: GroupByInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler name: HavingInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler nameWithType: HavingInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name: HavingInterpolatedStringHandler(int, int, IFluentBuilder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_HavingInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_HavingInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name.vb: New(Integer, Integer, IFluentBuilder, Boolean) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.HavingInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder, out bool) @@ -775,7 +775,7 @@ references: nameWithType.vb: HavingInterpolatedStringHandler.New(Integer, Integer, IFluentBuilder, Boolean) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name: HavingInterpolatedStringHandler(int, int, bool, IFluentBuilder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_HavingInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_HavingInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name.vb: New(Integer, Integer, Boolean, IFluentBuilder, Boolean) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.HavingInterpolatedStringHandler(int, int, bool, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder, out bool) @@ -784,7 +784,7 @@ references: nameWithType.vb: HavingInterpolatedStringHandler.New(Integer, Integer, Boolean, IFluentBuilder, Boolean) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.#ctor* name: HavingInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_HavingInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_HavingInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -794,14 +794,14 @@ references: nameWithType.vb: HavingInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_HavingInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_HavingInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.AppendFormatted nameWithType: HavingInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_HavingInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_HavingInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.AppendFormatted(T) @@ -810,7 +810,7 @@ references: nameWithType.vb: HavingInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_HavingInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_HavingInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.AppendFormatted(T, string?) @@ -819,7 +819,7 @@ references: nameWithType.vb: HavingInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_HavingInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_HavingInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.AppendLiteral(string) @@ -828,26 +828,26 @@ references: nameWithType.vb: HavingInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_HavingInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_HavingInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler.AppendLiteral nameWithType: HavingInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilder name: IDeleteBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilder nameWithType: IDeleteBuilder - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry name: IDeleteBuilderEntry - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry nameWithType: IDeleteBuilderEntry - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.DeleteFrom(Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler@) name: DeleteFrom(ref DeleteInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IDeleteBuilderEntry_DeleteFrom_Dapper_SimpleSqlBuilder_FluentBuilder_DeleteInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IDeleteBuilderEntry_DeleteFrom_Dapper_SimpleSqlBuilder_FluentBuilder_DeleteInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.DeleteFrom(Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler@) name.vb: DeleteFrom(DeleteInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.DeleteFrom(ref Dapper.SimpleSqlBuilder.FluentBuilder.DeleteInterpolatedStringHandler) @@ -856,20 +856,20 @@ references: nameWithType.vb: IDeleteBuilderEntry.DeleteFrom(DeleteInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.DeleteFrom* name: DeleteFrom - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IDeleteBuilderEntry_DeleteFrom_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IDeleteBuilderEntry_DeleteFrom_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.DeleteFrom isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.DeleteFrom nameWithType: IDeleteBuilderEntry.DeleteFrom - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder name: IFetchBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder nameWithType: IFetchBuilder - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.FetchNext(System.Int32) name: FetchNext(int) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFetchBuilder_FetchNext_System_Int32_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFetchBuilder_FetchNext_System_Int32_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.FetchNext(System.Int32) name.vb: FetchNext(Integer) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.FetchNext(int) @@ -878,26 +878,26 @@ references: nameWithType.vb: IFetchBuilder.FetchNext(Integer) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.FetchNext* name: FetchNext - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFetchBuilder_FetchNext_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFetchBuilder_FetchNext_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.FetchNext isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.FetchNext nameWithType: IFetchBuilder.FetchNext - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder name: IFluentBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder nameWithType: IFluentBuilder - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder name: IFluentSqlBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder nameWithType: IFluentSqlBuilder - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.AddParameter(System.String,System.Object,System.Nullable{System.Data.DbType},System.Nullable{System.Data.ParameterDirection},System.Nullable{System.Int32},System.Nullable{System.Byte},System.Nullable{System.Byte}) name: AddParameter(string, object?, DbType?, ParameterDirection?, int?, byte?, byte?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFluentSqlBuilder_AddParameter_System_String_System_Object_System_Nullable_System_Data_DbType__System_Nullable_System_Data_ParameterDirection__System_Nullable_System_Int32__System_Nullable_System_Byte__System_Nullable_System_Byte__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFluentSqlBuilder_AddParameter_System_String_System_Object_System_Nullable_System_Data_DbType__System_Nullable_System_Data_ParameterDirection__System_Nullable_System_Int32__System_Nullable_System_Byte__System_Nullable_System_Byte__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.AddParameter(System.String,System.Object,System.Nullable{System.Data.DbType},System.Nullable{System.Data.ParameterDirection},System.Nullable{System.Int32},System.Nullable{System.Byte},System.Nullable{System.Byte}) name.vb: AddParameter(String, Object, DbType?, ParameterDirection?, Integer?, Byte?, Byte?) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.AddParameter(string, object?, System.Data.DbType?, System.Data.ParameterDirection?, int?, byte?, byte?) @@ -906,21 +906,21 @@ references: nameWithType.vb: IFluentSqlBuilder.AddParameter(String, Object, DbType?, ParameterDirection?, Integer?, Byte?, Byte?) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.AddParameter* name: AddParameter - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFluentSqlBuilder_AddParameter_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFluentSqlBuilder_AddParameter_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.AddParameter isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.AddParameter nameWithType: IFluentSqlBuilder.AddParameter - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.GetValue* name: GetValue - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFluentSqlBuilder_GetValue_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFluentSqlBuilder_GetValue_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.GetValue isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.GetValue nameWithType: IFluentSqlBuilder.GetValue - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.GetValue``1(System.String) name: GetValue(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFluentSqlBuilder_GetValue__1_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFluentSqlBuilder_GetValue__1_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.GetValue``1(System.String) name.vb: GetValue(Of T)(String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.GetValue(string) @@ -929,13 +929,13 @@ references: nameWithType.vb: IFluentSqlBuilder.GetValue(Of T)(String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder name: IGroupByBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder nameWithType: IGroupByBuilder - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.GroupBy(Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler@) name: GroupBy(ref GroupByInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IGroupByBuilder_GroupBy_Dapper_SimpleSqlBuilder_FluentBuilder_GroupByInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IGroupByBuilder_GroupBy_Dapper_SimpleSqlBuilder_FluentBuilder_GroupByInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.GroupBy(Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler@) name.vb: GroupBy(GroupByInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.GroupBy(ref Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler) @@ -944,7 +944,7 @@ references: nameWithType.vb: IGroupByBuilder.GroupBy(GroupByInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.GroupBy(System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler@) name: GroupBy(bool, ref GroupByInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IGroupByBuilder_GroupBy_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_GroupByInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IGroupByBuilder_GroupBy_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_GroupByInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.GroupBy(System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler@) name.vb: GroupBy(Boolean, GroupByInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.GroupBy(bool, ref Dapper.SimpleSqlBuilder.FluentBuilder.GroupByInterpolatedStringHandler) @@ -953,20 +953,20 @@ references: nameWithType.vb: IGroupByBuilder.GroupBy(Boolean, GroupByInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.GroupBy* name: GroupBy - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IGroupByBuilder_GroupBy_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IGroupByBuilder_GroupBy_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.GroupBy isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.GroupBy nameWithType: IGroupByBuilder.GroupBy - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder name: IHavingBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder nameWithType: IHavingBuilder - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.Having(Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler@) name: Having(ref HavingInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IHavingBuilder_Having_Dapper_SimpleSqlBuilder_FluentBuilder_HavingInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IHavingBuilder_Having_Dapper_SimpleSqlBuilder_FluentBuilder_HavingInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.Having(Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler@) name.vb: Having(HavingInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.Having(ref Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler) @@ -975,7 +975,7 @@ references: nameWithType.vb: IHavingBuilder.Having(HavingInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.Having(System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler@) name: Having(bool, ref HavingInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IHavingBuilder_Having_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_HavingInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IHavingBuilder_Having_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_HavingInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.Having(System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler@) name.vb: Having(Boolean, HavingInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.Having(bool, ref Dapper.SimpleSqlBuilder.FluentBuilder.HavingInterpolatedStringHandler) @@ -984,20 +984,20 @@ references: nameWithType.vb: IHavingBuilder.Having(Boolean, HavingInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.Having* name: Having - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IHavingBuilder_Having_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IHavingBuilder_Having_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.Having isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.Having nameWithType: IHavingBuilder.Having - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder name: IInsertBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder nameWithType: IInsertBuilder - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.Columns(Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler@) name: Columns(ref InsertColumnInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertBuilder_Columns_Dapper_SimpleSqlBuilder_FluentBuilder_InsertColumnInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertBuilder_Columns_Dapper_SimpleSqlBuilder_FluentBuilder_InsertColumnInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.Columns(Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler@) name.vb: Columns(InsertColumnInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.Columns(ref Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler) @@ -1006,20 +1006,20 @@ references: nameWithType.vb: IInsertBuilder.Columns(InsertColumnInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.Columns* name: Columns - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertBuilder_Columns_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertBuilder_Columns_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.Columns isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.Columns nameWithType: IInsertBuilder.Columns - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry name: IInsertBuilderEntry - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry nameWithType: IInsertBuilderEntry - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.InsertInto(Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler@) name: InsertInto(ref InsertInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertBuilderEntry_InsertInto_Dapper_SimpleSqlBuilder_FluentBuilder_InsertInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertBuilderEntry_InsertInto_Dapper_SimpleSqlBuilder_FluentBuilder_InsertInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.InsertInto(Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler@) name.vb: InsertInto(InsertInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.InsertInto(ref Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler) @@ -1028,20 +1028,20 @@ references: nameWithType.vb: IInsertBuilderEntry.InsertInto(InsertInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.InsertInto* name: InsertInto - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertBuilderEntry_InsertInto_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertBuilderEntry_InsertInto_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.InsertInto isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.InsertInto nameWithType: IInsertBuilderEntry.InsertInto - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder name: IInsertValueBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder nameWithType: IInsertValueBuilder - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.Values(Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler@) name: Values(ref InsertValueInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertValueBuilder_Values_Dapper_SimpleSqlBuilder_FluentBuilder_InsertValueInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertValueBuilder_Values_Dapper_SimpleSqlBuilder_FluentBuilder_InsertValueInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.Values(Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler@) name.vb: Values(InsertValueInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.Values(ref Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler) @@ -1050,20 +1050,20 @@ references: nameWithType.vb: IInsertValueBuilder.Values(InsertValueInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.Values* name: Values - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertValueBuilder_Values_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertValueBuilder_Values_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.Values isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.Values nameWithType: IInsertValueBuilder.Values - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder name: IJoinBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder nameWithType: IJoinBuilder - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.InnerJoin(Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler@) name: InnerJoin(ref InnerJoinInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_InnerJoin_Dapper_SimpleSqlBuilder_FluentBuilder_InnerJoinInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_InnerJoin_Dapper_SimpleSqlBuilder_FluentBuilder_InnerJoinInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.InnerJoin(Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler@) name.vb: InnerJoin(InnerJoinInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.InnerJoin(ref Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler) @@ -1072,7 +1072,7 @@ references: nameWithType.vb: IJoinBuilder.InnerJoin(InnerJoinInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.InnerJoin(System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler@) name: InnerJoin(bool, ref InnerJoinInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_InnerJoin_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_InnerJoinInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_InnerJoin_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_InnerJoinInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.InnerJoin(System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler@) name.vb: InnerJoin(Boolean, InnerJoinInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.InnerJoin(bool, ref Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler) @@ -1081,14 +1081,14 @@ references: nameWithType.vb: IJoinBuilder.InnerJoin(Boolean, InnerJoinInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.InnerJoin* name: InnerJoin - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_InnerJoin_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_InnerJoin_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.InnerJoin isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.InnerJoin nameWithType: IJoinBuilder.InnerJoin - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.LeftJoin(Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler@) name: LeftJoin(ref LeftJoinInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_LeftJoin_Dapper_SimpleSqlBuilder_FluentBuilder_LeftJoinInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_LeftJoin_Dapper_SimpleSqlBuilder_FluentBuilder_LeftJoinInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.LeftJoin(Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler@) name.vb: LeftJoin(LeftJoinInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.LeftJoin(ref Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler) @@ -1097,7 +1097,7 @@ references: nameWithType.vb: IJoinBuilder.LeftJoin(LeftJoinInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.LeftJoin(System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler@) name: LeftJoin(bool, ref LeftJoinInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_LeftJoin_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_LeftJoinInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_LeftJoin_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_LeftJoinInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.LeftJoin(System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler@) name.vb: LeftJoin(Boolean, LeftJoinInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.LeftJoin(bool, ref Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler) @@ -1106,14 +1106,14 @@ references: nameWithType.vb: IJoinBuilder.LeftJoin(Boolean, LeftJoinInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.LeftJoin* name: LeftJoin - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_LeftJoin_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_LeftJoin_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.LeftJoin isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.LeftJoin nameWithType: IJoinBuilder.LeftJoin - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.RightJoin(Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler@) name: RightJoin(ref RightJoinInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_RightJoin_Dapper_SimpleSqlBuilder_FluentBuilder_RightJoinInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_RightJoin_Dapper_SimpleSqlBuilder_FluentBuilder_RightJoinInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.RightJoin(Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler@) name.vb: RightJoin(RightJoinInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.RightJoin(ref Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler) @@ -1122,7 +1122,7 @@ references: nameWithType.vb: IJoinBuilder.RightJoin(RightJoinInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.RightJoin(System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler@) name: RightJoin(bool, ref RightJoinInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_RightJoin_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_RightJoinInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_RightJoin_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_RightJoinInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.RightJoin(System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler@) name.vb: RightJoin(Boolean, RightJoinInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.RightJoin(bool, ref Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler) @@ -1131,20 +1131,20 @@ references: nameWithType.vb: IJoinBuilder.RightJoin(Boolean, RightJoinInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.RightJoin* name: RightJoin - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_RightJoin_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_RightJoin_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.RightJoin isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.RightJoin nameWithType: IJoinBuilder.RightJoin - uid: Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder name: ILimitBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder nameWithType: ILimitBuilder - uid: Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.Limit(System.Int32) name: Limit(int) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ILimitBuilder_Limit_System_Int32_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ILimitBuilder_Limit_System_Int32_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.Limit(System.Int32) name.vb: Limit(Integer) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.Limit(int) @@ -1153,20 +1153,20 @@ references: nameWithType.vb: ILimitBuilder.Limit(Integer) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.Limit* name: Limit - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ILimitBuilder_Limit_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ILimitBuilder_Limit_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.Limit isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.Limit nameWithType: ILimitBuilder.Limit - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder name: IOffsetBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder nameWithType: IOffsetBuilder - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.Offset(System.Int32) name: Offset(int) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOffsetBuilder_Offset_System_Int32_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOffsetBuilder_Offset_System_Int32_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.Offset(System.Int32) name.vb: Offset(Integer) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.Offset(int) @@ -1175,20 +1175,20 @@ references: nameWithType.vb: IOffsetBuilder.Offset(Integer) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.Offset* name: Offset - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOffsetBuilder_Offset_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOffsetBuilder_Offset_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.Offset isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.Offset nameWithType: IOffsetBuilder.Offset - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder name: IOffsetRowsBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder nameWithType: IOffsetRowsBuilder - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.OffsetRows(System.Int32) name: OffsetRows(int) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOffsetRowsBuilder_OffsetRows_System_Int32_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOffsetRowsBuilder_OffsetRows_System_Int32_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.OffsetRows(System.Int32) name.vb: OffsetRows(Integer) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.OffsetRows(int) @@ -1197,26 +1197,26 @@ references: nameWithType.vb: IOffsetRowsBuilder.OffsetRows(Integer) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.OffsetRows* name: OffsetRows - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOffsetRowsBuilder_OffsetRows_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOffsetRowsBuilder_OffsetRows_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.OffsetRows isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.OffsetRows nameWithType: IOffsetRowsBuilder.OffsetRows - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilder name: IOrderByBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilder nameWithType: IOrderByBuilder - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry name: IOrderByBuilderEntry - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry nameWithType: IOrderByBuilderEntry - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.OrderBy(Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler@) name: OrderBy(ref OrderByInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOrderByBuilderEntry_OrderBy_Dapper_SimpleSqlBuilder_FluentBuilder_OrderByInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOrderByBuilderEntry_OrderBy_Dapper_SimpleSqlBuilder_FluentBuilder_OrderByInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.OrderBy(Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler@) name.vb: OrderBy(OrderByInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.OrderBy(ref Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler) @@ -1225,7 +1225,7 @@ references: nameWithType.vb: IOrderByBuilderEntry.OrderBy(OrderByInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.OrderBy(System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler@) name: OrderBy(bool, ref OrderByInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOrderByBuilderEntry_OrderBy_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_OrderByInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOrderByBuilderEntry_OrderBy_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_OrderByInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.OrderBy(System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler@) name.vb: OrderBy(Boolean, OrderByInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.OrderBy(bool, ref Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler) @@ -1234,20 +1234,20 @@ references: nameWithType.vb: IOrderByBuilderEntry.OrderBy(Boolean, OrderByInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.OrderBy* name: OrderBy - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOrderByBuilderEntry_OrderBy_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOrderByBuilderEntry_OrderBy_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.OrderBy isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.OrderBy nameWithType: IOrderByBuilderEntry.OrderBy - uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder name: ISelectBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder nameWithType: ISelectBuilder - uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.Select(Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler@) name: Select(ref SelectInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilder_Select_Dapper_SimpleSqlBuilder_FluentBuilder_SelectInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilder_Select_Dapper_SimpleSqlBuilder_FluentBuilder_SelectInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.Select(Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler@) name.vb: Select(SelectInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.Select(ref Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler) @@ -1256,20 +1256,20 @@ references: nameWithType.vb: ISelectBuilder.Select(SelectInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.Select* name: Select - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilder_Select_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilder_Select_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.Select isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.Select nameWithType: ISelectBuilder.Select - uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry name: ISelectBuilderEntry - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry nameWithType: ISelectBuilderEntry - uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.Select(Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler@) name: Select(ref SelectInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilderEntry_Select_Dapper_SimpleSqlBuilder_FluentBuilder_SelectInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilderEntry_Select_Dapper_SimpleSqlBuilder_FluentBuilder_SelectInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.Select(Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler@) name.vb: Select(SelectInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.Select(ref Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler) @@ -1278,14 +1278,14 @@ references: nameWithType.vb: ISelectBuilderEntry.Select(SelectInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.Select* name: Select - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilderEntry_Select_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilderEntry_Select_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.Select isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.Select nameWithType: ISelectBuilderEntry.Select - uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.SelectDistinct(Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler@) name: SelectDistinct(ref SelectDistinctInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilderEntry_SelectDistinct_Dapper_SimpleSqlBuilder_FluentBuilder_SelectDistinctInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilderEntry_SelectDistinct_Dapper_SimpleSqlBuilder_FluentBuilder_SelectDistinctInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.SelectDistinct(Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler@) name.vb: SelectDistinct(SelectDistinctInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.SelectDistinct(ref Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler) @@ -1294,20 +1294,20 @@ references: nameWithType.vb: ISelectBuilderEntry.SelectDistinct(SelectDistinctInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.SelectDistinct* name: SelectDistinct - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilderEntry_SelectDistinct_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilderEntry_SelectDistinct_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.SelectDistinct isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.SelectDistinct nameWithType: ISelectBuilderEntry.SelectDistinct - uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder name: ISelectDistinctBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder nameWithType: ISelectDistinctBuilder - uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.SelectDistinct(Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler@) name: SelectDistinct(ref SelectDistinctInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectDistinctBuilder_SelectDistinct_Dapper_SimpleSqlBuilder_FluentBuilder_SelectDistinctInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectDistinctBuilder_SelectDistinct_Dapper_SimpleSqlBuilder_FluentBuilder_SelectDistinctInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.SelectDistinct(Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler@) name.vb: SelectDistinct(SelectDistinctInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.SelectDistinct(ref Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler) @@ -1316,26 +1316,26 @@ references: nameWithType.vb: ISelectDistinctBuilder.SelectDistinct(SelectDistinctInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.SelectDistinct* name: SelectDistinct - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectDistinctBuilder_SelectDistinct_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectDistinctBuilder_SelectDistinct_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.SelectDistinct isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.SelectDistinct nameWithType: ISelectDistinctBuilder.SelectDistinct - uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilder name: ISelectFromBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilder nameWithType: ISelectFromBuilder - uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry name: ISelectFromBuilderEntry - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry nameWithType: ISelectFromBuilderEntry - uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.From(Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler@) name: From(ref SelectFromInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectFromBuilderEntry_From_Dapper_SimpleSqlBuilder_FluentBuilder_SelectFromInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectFromBuilderEntry_From_Dapper_SimpleSqlBuilder_FluentBuilder_SelectFromInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.From(Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler@) name.vb: From(SelectFromInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.From(ref Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler) @@ -1344,32 +1344,32 @@ references: nameWithType.vb: ISelectFromBuilderEntry.From(SelectFromInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.From* name: From - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectFromBuilderEntry_From_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectFromBuilderEntry_From_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.From isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.From nameWithType: ISelectFromBuilderEntry.From - uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilder name: ISimpleFluentBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilder nameWithType: ISimpleFluentBuilder - uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilderEntry name: ISimpleFluentBuilderEntry - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilderEntry.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilderEntry.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilderEntry fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilderEntry nameWithType: ISimpleFluentBuilderEntry - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder name: IUpdateBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder nameWithType: IUpdateBuilder - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.Set(Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler@) name: Set(ref UpdateSetInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IUpdateBuilder_Set_Dapper_SimpleSqlBuilder_FluentBuilder_UpdateSetInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IUpdateBuilder_Set_Dapper_SimpleSqlBuilder_FluentBuilder_UpdateSetInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.Set(Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler@) name.vb: Set(UpdateSetInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.Set(ref Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler) @@ -1378,7 +1378,7 @@ references: nameWithType.vb: IUpdateBuilder.Set(UpdateSetInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.Set(System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler@) name: Set(bool, ref UpdateSetInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IUpdateBuilder_Set_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_UpdateSetInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IUpdateBuilder_Set_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_UpdateSetInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.Set(System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler@) name.vb: Set(Boolean, UpdateSetInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.Set(bool, ref Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler) @@ -1387,20 +1387,20 @@ references: nameWithType.vb: IUpdateBuilder.Set(Boolean, UpdateSetInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.Set* name: Set - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IUpdateBuilder_Set_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IUpdateBuilder_Set_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.Set isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.Set nameWithType: IUpdateBuilder.Set - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry name: IUpdateBuilderEntry - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry nameWithType: IUpdateBuilderEntry - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.Update(Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler@) name: Update(ref UpdateInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IUpdateBuilderEntry_Update_Dapper_SimpleSqlBuilder_FluentBuilder_UpdateInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IUpdateBuilderEntry_Update_Dapper_SimpleSqlBuilder_FluentBuilder_UpdateInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.Update(Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler@) name.vb: Update(UpdateInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.Update(ref Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler) @@ -1409,20 +1409,20 @@ references: nameWithType.vb: IUpdateBuilderEntry.Update(UpdateInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.Update* name: Update - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IUpdateBuilderEntry_Update_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IUpdateBuilderEntry_Update_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.Update isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.Update nameWithType: IUpdateBuilderEntry.Update - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder name: IWhereBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder nameWithType: IWhereBuilder - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhere(Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler@) name: OrWhere(ref WhereOrInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhere_Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhere_Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhere(Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler@) name.vb: OrWhere(WhereOrInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhere(ref Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler) @@ -1431,7 +1431,7 @@ references: nameWithType.vb: IWhereBuilder.OrWhere(WhereOrInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhere(System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler@) name: OrWhere(bool, ref WhereOrInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhere_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhere_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhere(System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler@) name.vb: OrWhere(Boolean, WhereOrInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhere(bool, ref Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler) @@ -1440,20 +1440,20 @@ references: nameWithType.vb: IWhereBuilder.OrWhere(Boolean, WhereOrInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhere* name: OrWhere - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhere_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhere_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhere isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhere nameWithType: IWhereBuilder.OrWhere - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhereFilter name: OrWhereFilter() - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhereFilter + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhereFilter commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhereFilter fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhereFilter() nameWithType: IWhereBuilder.OrWhereFilter() - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhereFilter(Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler@) name: OrWhereFilter(ref WhereOrFilterInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhereFilter_Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrFilterInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhereFilter_Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrFilterInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhereFilter(Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler@) name.vb: OrWhereFilter(WhereOrFilterInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhereFilter(ref Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler) @@ -1462,14 +1462,14 @@ references: nameWithType.vb: IWhereBuilder.OrWhereFilter(WhereOrFilterInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhereFilter* name: OrWhereFilter - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhereFilter_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhereFilter_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhereFilter isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhereFilter nameWithType: IWhereBuilder.OrWhereFilter - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.Where(Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler@) name: Where(ref WhereInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_Where_Dapper_SimpleSqlBuilder_FluentBuilder_WhereInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_Where_Dapper_SimpleSqlBuilder_FluentBuilder_WhereInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.Where(Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler@) name.vb: Where(WhereInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.Where(ref Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler) @@ -1478,7 +1478,7 @@ references: nameWithType.vb: IWhereBuilder.Where(WhereInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.Where(System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler@) name: Where(bool, ref WhereInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_Where_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_WhereInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_Where_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_WhereInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.Where(System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler@) name.vb: Where(Boolean, WhereInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.Where(bool, ref Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler) @@ -1487,20 +1487,20 @@ references: nameWithType.vb: IWhereBuilder.Where(Boolean, WhereInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.Where* name: Where - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_Where_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_Where_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.Where isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.Where nameWithType: IWhereBuilder.Where - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.WhereFilter name: WhereFilter() - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_WhereFilter + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_WhereFilter commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.WhereFilter fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.WhereFilter() nameWithType: IWhereBuilder.WhereFilter() - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.WhereFilter(Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler@) name: WhereFilter(ref WhereFilterInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_WhereFilter_Dapper_SimpleSqlBuilder_FluentBuilder_WhereFilterInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_WhereFilter_Dapper_SimpleSqlBuilder_FluentBuilder_WhereFilterInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.WhereFilter(Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler@) name.vb: WhereFilter(WhereFilterInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.WhereFilter(ref Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler) @@ -1509,20 +1509,20 @@ references: nameWithType.vb: IWhereBuilder.WhereFilter(WhereFilterInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.WhereFilter* name: WhereFilter - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_WhereFilter_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_WhereFilter_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.WhereFilter isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.WhereFilter nameWithType: IWhereBuilder.WhereFilter - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder name: IWhereFilterBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder nameWithType: IWhereFilterBuilder - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter(Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler@) name: WithFilter(ref WhereWithFilterInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithFilter_Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithFilterInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithFilter_Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithFilterInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter(Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler@) name.vb: WithFilter(WhereWithFilterInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter(ref Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler) @@ -1531,7 +1531,7 @@ references: nameWithType.vb: IWhereFilterBuilder.WithFilter(WhereWithFilterInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter(System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler@) name: WithFilter(bool, ref WhereWithFilterInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithFilter_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithFilterInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithFilter_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithFilterInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter(System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler@) name.vb: WithFilter(Boolean, WhereWithFilterInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter(bool, ref Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler) @@ -1540,14 +1540,14 @@ references: nameWithType.vb: IWhereFilterBuilder.WithFilter(Boolean, WhereWithFilterInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter* name: WithFilter - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithFilter_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithFilter_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter nameWithType: IWhereFilterBuilder.WithFilter - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter(Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler@) name: WithOrFilter(ref WhereWithOrFilterInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithOrFilter_Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithOrFilterInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithOrFilter_Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithOrFilterInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter(Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler@) name.vb: WithOrFilter(WhereWithOrFilterInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter(ref Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler) @@ -1556,7 +1556,7 @@ references: nameWithType.vb: IWhereFilterBuilder.WithOrFilter(WhereWithOrFilterInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter(System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler@) name: WithOrFilter(bool, ref WhereWithOrFilterInterpolatedStringHandler) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithOrFilter_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithOrFilterInterpolatedStringHandler__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithOrFilter_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithOrFilterInterpolatedStringHandler__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter(System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler@) name.vb: WithOrFilter(Boolean, WhereWithOrFilterInterpolatedStringHandler) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter(bool, ref Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler) @@ -1565,20 +1565,20 @@ references: nameWithType.vb: IWhereFilterBuilder.WithOrFilter(Boolean, WhereWithOrFilterInterpolatedStringHandler) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter* name: WithOrFilter - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithOrFilter_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithOrFilter_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter nameWithType: IWhereFilterBuilder.WithOrFilter - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler name: InnerJoinInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler nameWithType: InnerJoinInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name: InnerJoinInterpolatedStringHandler(int, int, IFluentBuilder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InnerJoinInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InnerJoinInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name.vb: New(Integer, Integer, IFluentBuilder, Boolean) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.InnerJoinInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder, out bool) @@ -1587,7 +1587,7 @@ references: nameWithType.vb: InnerJoinInterpolatedStringHandler.New(Integer, Integer, IFluentBuilder, Boolean) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name: InnerJoinInterpolatedStringHandler(int, int, bool, IFluentBuilder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InnerJoinInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InnerJoinInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name.vb: New(Integer, Integer, Boolean, IFluentBuilder, Boolean) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.InnerJoinInterpolatedStringHandler(int, int, bool, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder, out bool) @@ -1596,7 +1596,7 @@ references: nameWithType.vb: InnerJoinInterpolatedStringHandler.New(Integer, Integer, Boolean, IFluentBuilder, Boolean) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.#ctor* name: InnerJoinInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InnerJoinInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InnerJoinInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -1606,14 +1606,14 @@ references: nameWithType.vb: InnerJoinInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InnerJoinInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InnerJoinInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.AppendFormatted nameWithType: InnerJoinInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InnerJoinInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InnerJoinInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.AppendFormatted(T) @@ -1622,7 +1622,7 @@ references: nameWithType.vb: InnerJoinInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InnerJoinInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InnerJoinInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.AppendFormatted(T, string?) @@ -1631,7 +1631,7 @@ references: nameWithType.vb: InnerJoinInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InnerJoinInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InnerJoinInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.AppendLiteral(string) @@ -1640,20 +1640,20 @@ references: nameWithType.vb: InnerJoinInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InnerJoinInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InnerJoinInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InnerJoinInterpolatedStringHandler.AppendLiteral nameWithType: InnerJoinInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler name: InsertColumnInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler nameWithType: InsertColumnInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) name: InsertColumnInterpolatedStringHandler(int, int, IFluentBuilder) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertColumnInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertColumnInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) name.vb: New(Integer, Integer, IFluentBuilder) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.InsertColumnInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) @@ -1662,7 +1662,7 @@ references: nameWithType.vb: InsertColumnInterpolatedStringHandler.New(Integer, Integer, IFluentBuilder) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.#ctor* name: InsertColumnInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertColumnInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertColumnInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -1672,14 +1672,14 @@ references: nameWithType.vb: InsertColumnInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertColumnInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertColumnInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.AppendFormatted nameWithType: InsertColumnInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertColumnInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertColumnInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.AppendFormatted(T) @@ -1688,7 +1688,7 @@ references: nameWithType.vb: InsertColumnInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertColumnInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertColumnInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.AppendFormatted(T, string?) @@ -1697,7 +1697,7 @@ references: nameWithType.vb: InsertColumnInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertColumnInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertColumnInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.AppendLiteral(string) @@ -1706,20 +1706,20 @@ references: nameWithType.vb: InsertColumnInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertColumnInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertColumnInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InsertColumnInterpolatedStringHandler.AppendLiteral nameWithType: InsertColumnInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler name: InsertInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler nameWithType: InsertInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) name: InsertInterpolatedStringHandler(int, int, IFluentBuilder) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) name.vb: New(Integer, Integer, IFluentBuilder) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.InsertInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) @@ -1728,7 +1728,7 @@ references: nameWithType.vb: InsertInterpolatedStringHandler.New(Integer, Integer, IFluentBuilder) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.#ctor* name: InsertInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -1738,14 +1738,14 @@ references: nameWithType.vb: InsertInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.AppendFormatted nameWithType: InsertInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.AppendFormatted(T) @@ -1754,7 +1754,7 @@ references: nameWithType.vb: InsertInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.AppendFormatted(T, string?) @@ -1763,7 +1763,7 @@ references: nameWithType.vb: InsertInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.AppendLiteral(string) @@ -1772,20 +1772,20 @@ references: nameWithType.vb: InsertInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InsertInterpolatedStringHandler.AppendLiteral nameWithType: InsertInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler name: InsertValueInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler nameWithType: InsertValueInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) name: InsertValueInterpolatedStringHandler(int, int, IFluentBuilder) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertValueInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertValueInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) name.vb: New(Integer, Integer, IFluentBuilder) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.InsertValueInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) @@ -1794,7 +1794,7 @@ references: nameWithType.vb: InsertValueInterpolatedStringHandler.New(Integer, Integer, IFluentBuilder) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.#ctor* name: InsertValueInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertValueInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertValueInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -1804,14 +1804,14 @@ references: nameWithType.vb: InsertValueInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertValueInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertValueInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.AppendFormatted nameWithType: InsertValueInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertValueInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertValueInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.AppendFormatted(T) @@ -1820,7 +1820,7 @@ references: nameWithType.vb: InsertValueInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertValueInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertValueInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.AppendFormatted(T, string?) @@ -1829,7 +1829,7 @@ references: nameWithType.vb: InsertValueInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertValueInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertValueInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.AppendLiteral(string) @@ -1838,20 +1838,20 @@ references: nameWithType.vb: InsertValueInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertValueInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_InsertValueInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.InsertValueInterpolatedStringHandler.AppendLiteral nameWithType: InsertValueInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler name: LeftJoinInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler nameWithType: LeftJoinInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name: LeftJoinInterpolatedStringHandler(int, int, IFluentBuilder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_LeftJoinInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_LeftJoinInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name.vb: New(Integer, Integer, IFluentBuilder, Boolean) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.LeftJoinInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder, out bool) @@ -1860,7 +1860,7 @@ references: nameWithType.vb: LeftJoinInterpolatedStringHandler.New(Integer, Integer, IFluentBuilder, Boolean) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name: LeftJoinInterpolatedStringHandler(int, int, bool, IFluentBuilder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_LeftJoinInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_LeftJoinInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name.vb: New(Integer, Integer, Boolean, IFluentBuilder, Boolean) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.LeftJoinInterpolatedStringHandler(int, int, bool, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder, out bool) @@ -1869,7 +1869,7 @@ references: nameWithType.vb: LeftJoinInterpolatedStringHandler.New(Integer, Integer, Boolean, IFluentBuilder, Boolean) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.#ctor* name: LeftJoinInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_LeftJoinInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_LeftJoinInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -1879,14 +1879,14 @@ references: nameWithType.vb: LeftJoinInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_LeftJoinInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_LeftJoinInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.AppendFormatted nameWithType: LeftJoinInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_LeftJoinInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_LeftJoinInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.AppendFormatted(T) @@ -1895,7 +1895,7 @@ references: nameWithType.vb: LeftJoinInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_LeftJoinInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_LeftJoinInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.AppendFormatted(T, string?) @@ -1904,7 +1904,7 @@ references: nameWithType.vb: LeftJoinInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_LeftJoinInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_LeftJoinInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.AppendLiteral(string) @@ -1913,20 +1913,20 @@ references: nameWithType.vb: LeftJoinInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_LeftJoinInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_LeftJoinInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.LeftJoinInterpolatedStringHandler.AppendLiteral nameWithType: LeftJoinInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler name: OrderByInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler nameWithType: OrderByInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name: OrderByInterpolatedStringHandler(int, int, IFluentBuilder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_OrderByInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_OrderByInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name.vb: New(Integer, Integer, IFluentBuilder, Boolean) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.OrderByInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder, out bool) @@ -1935,7 +1935,7 @@ references: nameWithType.vb: OrderByInterpolatedStringHandler.New(Integer, Integer, IFluentBuilder, Boolean) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name: OrderByInterpolatedStringHandler(int, int, bool, IFluentBuilder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_OrderByInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_OrderByInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name.vb: New(Integer, Integer, Boolean, IFluentBuilder, Boolean) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.OrderByInterpolatedStringHandler(int, int, bool, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder, out bool) @@ -1944,7 +1944,7 @@ references: nameWithType.vb: OrderByInterpolatedStringHandler.New(Integer, Integer, Boolean, IFluentBuilder, Boolean) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.#ctor* name: OrderByInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_OrderByInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_OrderByInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -1954,14 +1954,14 @@ references: nameWithType.vb: OrderByInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_OrderByInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_OrderByInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.AppendFormatted nameWithType: OrderByInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_OrderByInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_OrderByInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.AppendFormatted(T) @@ -1970,7 +1970,7 @@ references: nameWithType.vb: OrderByInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_OrderByInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_OrderByInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.AppendFormatted(T, string?) @@ -1979,7 +1979,7 @@ references: nameWithType.vb: OrderByInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_OrderByInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_OrderByInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.AppendLiteral(string) @@ -1988,20 +1988,20 @@ references: nameWithType.vb: OrderByInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_OrderByInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_OrderByInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.OrderByInterpolatedStringHandler.AppendLiteral nameWithType: OrderByInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler name: RightJoinInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler nameWithType: RightJoinInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name: RightJoinInterpolatedStringHandler(int, int, IFluentBuilder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_RightJoinInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_RightJoinInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name.vb: New(Integer, Integer, IFluentBuilder, Boolean) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.RightJoinInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder, out bool) @@ -2010,7 +2010,7 @@ references: nameWithType.vb: RightJoinInterpolatedStringHandler.New(Integer, Integer, IFluentBuilder, Boolean) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name: RightJoinInterpolatedStringHandler(int, int, bool, IFluentBuilder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_RightJoinInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_RightJoinInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name.vb: New(Integer, Integer, Boolean, IFluentBuilder, Boolean) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.RightJoinInterpolatedStringHandler(int, int, bool, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder, out bool) @@ -2019,7 +2019,7 @@ references: nameWithType.vb: RightJoinInterpolatedStringHandler.New(Integer, Integer, Boolean, IFluentBuilder, Boolean) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.#ctor* name: RightJoinInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_RightJoinInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_RightJoinInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -2029,14 +2029,14 @@ references: nameWithType.vb: RightJoinInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_RightJoinInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_RightJoinInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.AppendFormatted nameWithType: RightJoinInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_RightJoinInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_RightJoinInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.AppendFormatted(T) @@ -2045,7 +2045,7 @@ references: nameWithType.vb: RightJoinInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_RightJoinInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_RightJoinInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.AppendFormatted(T, string?) @@ -2054,7 +2054,7 @@ references: nameWithType.vb: RightJoinInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_RightJoinInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_RightJoinInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.AppendLiteral(string) @@ -2063,20 +2063,20 @@ references: nameWithType.vb: RightJoinInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_RightJoinInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_RightJoinInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.RightJoinInterpolatedStringHandler.AppendLiteral nameWithType: RightJoinInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler name: SelectDistinctInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler nameWithType: SelectDistinctInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) name: SelectDistinctInterpolatedStringHandler(int, int, IFluentBuilder) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectDistinctInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectDistinctInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) name.vb: New(Integer, Integer, IFluentBuilder) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.SelectDistinctInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) @@ -2085,7 +2085,7 @@ references: nameWithType.vb: SelectDistinctInterpolatedStringHandler.New(Integer, Integer, IFluentBuilder) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.#ctor* name: SelectDistinctInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectDistinctInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectDistinctInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -2095,14 +2095,14 @@ references: nameWithType.vb: SelectDistinctInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectDistinctInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectDistinctInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.AppendFormatted nameWithType: SelectDistinctInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectDistinctInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectDistinctInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.AppendFormatted(T) @@ -2111,7 +2111,7 @@ references: nameWithType.vb: SelectDistinctInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectDistinctInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectDistinctInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.AppendFormatted(T, string?) @@ -2120,7 +2120,7 @@ references: nameWithType.vb: SelectDistinctInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectDistinctInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectDistinctInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.AppendLiteral(string) @@ -2129,20 +2129,20 @@ references: nameWithType.vb: SelectDistinctInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectDistinctInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectDistinctInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.SelectDistinctInterpolatedStringHandler.AppendLiteral nameWithType: SelectDistinctInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler name: SelectFromInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler nameWithType: SelectFromInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) name: SelectFromInterpolatedStringHandler(int, int, IFluentBuilder) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectFromInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectFromInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) name.vb: New(Integer, Integer, IFluentBuilder) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.SelectFromInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) @@ -2151,7 +2151,7 @@ references: nameWithType.vb: SelectFromInterpolatedStringHandler.New(Integer, Integer, IFluentBuilder) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.#ctor* name: SelectFromInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectFromInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectFromInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -2161,14 +2161,14 @@ references: nameWithType.vb: SelectFromInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectFromInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectFromInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.AppendFormatted nameWithType: SelectFromInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectFromInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectFromInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.AppendFormatted(T) @@ -2177,7 +2177,7 @@ references: nameWithType.vb: SelectFromInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectFromInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectFromInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.AppendFormatted(T, string?) @@ -2186,7 +2186,7 @@ references: nameWithType.vb: SelectFromInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectFromInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectFromInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.AppendLiteral(string) @@ -2195,20 +2195,20 @@ references: nameWithType.vb: SelectFromInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectFromInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectFromInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.SelectFromInterpolatedStringHandler.AppendLiteral nameWithType: SelectFromInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler name: SelectInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler nameWithType: SelectInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) name: SelectInterpolatedStringHandler(int, int, IFluentBuilder) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) name.vb: New(Integer, Integer, IFluentBuilder) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.SelectInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) @@ -2217,7 +2217,7 @@ references: nameWithType.vb: SelectInterpolatedStringHandler.New(Integer, Integer, IFluentBuilder) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.#ctor* name: SelectInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -2227,14 +2227,14 @@ references: nameWithType.vb: SelectInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.AppendFormatted nameWithType: SelectInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.AppendFormatted(T) @@ -2243,7 +2243,7 @@ references: nameWithType.vb: SelectInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.AppendFormatted(T, string?) @@ -2252,7 +2252,7 @@ references: nameWithType.vb: SelectInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.AppendLiteral(string) @@ -2261,20 +2261,20 @@ references: nameWithType.vb: SelectInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_SelectInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.SelectInterpolatedStringHandler.AppendLiteral nameWithType: SelectInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler name: UpdateInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler nameWithType: UpdateInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) name: UpdateInterpolatedStringHandler(int, int, IFluentBuilder) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) name.vb: New(Integer, Integer, IFluentBuilder) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.UpdateInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) @@ -2283,7 +2283,7 @@ references: nameWithType.vb: UpdateInterpolatedStringHandler.New(Integer, Integer, IFluentBuilder) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.#ctor* name: UpdateInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -2293,14 +2293,14 @@ references: nameWithType.vb: UpdateInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.AppendFormatted nameWithType: UpdateInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.AppendFormatted(T) @@ -2309,7 +2309,7 @@ references: nameWithType.vb: UpdateInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.AppendFormatted(T, string?) @@ -2318,7 +2318,7 @@ references: nameWithType.vb: UpdateInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.AppendLiteral(string) @@ -2327,20 +2327,20 @@ references: nameWithType.vb: UpdateInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateInterpolatedStringHandler.AppendLiteral nameWithType: UpdateInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler name: UpdateSetInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler nameWithType: UpdateSetInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name: UpdateSetInterpolatedStringHandler(int, int, IFluentBuilder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateSetInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateSetInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name.vb: New(Integer, Integer, IFluentBuilder, Boolean) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.UpdateSetInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder, out bool) @@ -2349,7 +2349,7 @@ references: nameWithType.vb: UpdateSetInterpolatedStringHandler.New(Integer, Integer, IFluentBuilder, Boolean) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name: UpdateSetInterpolatedStringHandler(int, int, bool, IFluentBuilder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateSetInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateSetInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name.vb: New(Integer, Integer, Boolean, IFluentBuilder, Boolean) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.UpdateSetInterpolatedStringHandler(int, int, bool, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder, out bool) @@ -2358,7 +2358,7 @@ references: nameWithType.vb: UpdateSetInterpolatedStringHandler.New(Integer, Integer, Boolean, IFluentBuilder, Boolean) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.#ctor* name: UpdateSetInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateSetInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateSetInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -2368,14 +2368,14 @@ references: nameWithType.vb: UpdateSetInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateSetInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateSetInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.AppendFormatted nameWithType: UpdateSetInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateSetInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateSetInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.AppendFormatted(T) @@ -2384,7 +2384,7 @@ references: nameWithType.vb: UpdateSetInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateSetInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateSetInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.AppendFormatted(T, string?) @@ -2393,7 +2393,7 @@ references: nameWithType.vb: UpdateSetInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateSetInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateSetInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.AppendLiteral(string) @@ -2402,20 +2402,20 @@ references: nameWithType.vb: UpdateSetInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateSetInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_UpdateSetInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.UpdateSetInterpolatedStringHandler.AppendLiteral nameWithType: UpdateSetInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler name: WhereFilterInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler nameWithType: WhereFilterInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) name: WhereFilterInterpolatedStringHandler(int, int, IFluentBuilder) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereFilterInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereFilterInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) name.vb: New(Integer, Integer, IFluentBuilder) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.WhereFilterInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) @@ -2424,7 +2424,7 @@ references: nameWithType.vb: WhereFilterInterpolatedStringHandler.New(Integer, Integer, IFluentBuilder) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.#ctor* name: WhereFilterInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereFilterInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereFilterInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -2434,14 +2434,14 @@ references: nameWithType.vb: WhereFilterInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereFilterInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereFilterInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.AppendFormatted nameWithType: WhereFilterInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereFilterInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereFilterInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.AppendFormatted(T) @@ -2450,7 +2450,7 @@ references: nameWithType.vb: WhereFilterInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereFilterInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereFilterInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.AppendFormatted(T, string?) @@ -2459,7 +2459,7 @@ references: nameWithType.vb: WhereFilterInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereFilterInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereFilterInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.AppendLiteral(string) @@ -2468,20 +2468,20 @@ references: nameWithType.vb: WhereFilterInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereFilterInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereFilterInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereFilterInterpolatedStringHandler.AppendLiteral nameWithType: WhereFilterInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler name: WhereInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler nameWithType: WhereInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name: WhereInterpolatedStringHandler(int, int, IFluentBuilder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name.vb: New(Integer, Integer, IFluentBuilder, Boolean) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.WhereInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder, out bool) @@ -2490,7 +2490,7 @@ references: nameWithType.vb: WhereInterpolatedStringHandler.New(Integer, Integer, IFluentBuilder, Boolean) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name: WhereInterpolatedStringHandler(int, int, bool, IFluentBuilder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name.vb: New(Integer, Integer, Boolean, IFluentBuilder, Boolean) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.WhereInterpolatedStringHandler(int, int, bool, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder, out bool) @@ -2499,7 +2499,7 @@ references: nameWithType.vb: WhereInterpolatedStringHandler.New(Integer, Integer, Boolean, IFluentBuilder, Boolean) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.#ctor* name: WhereInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -2509,14 +2509,14 @@ references: nameWithType.vb: WhereInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.AppendFormatted nameWithType: WhereInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.AppendFormatted(T) @@ -2525,7 +2525,7 @@ references: nameWithType.vb: WhereInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.AppendFormatted(T, string?) @@ -2534,7 +2534,7 @@ references: nameWithType.vb: WhereInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.AppendLiteral(string) @@ -2543,20 +2543,20 @@ references: nameWithType.vb: WhereInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereInterpolatedStringHandler.AppendLiteral nameWithType: WhereInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler name: WhereOrFilterInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler nameWithType: WhereOrFilterInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) name: WhereOrFilterInterpolatedStringHandler(int, int, IFluentBuilder) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrFilterInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrFilterInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) name.vb: New(Integer, Integer, IFluentBuilder) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.WhereOrFilterInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder) @@ -2565,7 +2565,7 @@ references: nameWithType.vb: WhereOrFilterInterpolatedStringHandler.New(Integer, Integer, IFluentBuilder) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.#ctor* name: WhereOrFilterInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrFilterInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrFilterInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -2575,14 +2575,14 @@ references: nameWithType.vb: WhereOrFilterInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrFilterInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrFilterInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.AppendFormatted nameWithType: WhereOrFilterInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrFilterInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrFilterInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.AppendFormatted(T) @@ -2591,7 +2591,7 @@ references: nameWithType.vb: WhereOrFilterInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrFilterInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrFilterInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.AppendFormatted(T, string?) @@ -2600,7 +2600,7 @@ references: nameWithType.vb: WhereOrFilterInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrFilterInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrFilterInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.AppendLiteral(string) @@ -2609,20 +2609,20 @@ references: nameWithType.vb: WhereOrFilterInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrFilterInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrFilterInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrFilterInterpolatedStringHandler.AppendLiteral nameWithType: WhereOrFilterInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler name: WhereOrInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler nameWithType: WhereOrInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name: WhereOrInterpolatedStringHandler(int, int, IFluentBuilder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name.vb: New(Integer, Integer, IFluentBuilder, Boolean) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.WhereOrInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder, out bool) @@ -2631,7 +2631,7 @@ references: nameWithType.vb: WhereOrInterpolatedStringHandler.New(Integer, Integer, IFluentBuilder, Boolean) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name: WhereOrInterpolatedStringHandler(int, int, bool, IFluentBuilder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name.vb: New(Integer, Integer, Boolean, IFluentBuilder, Boolean) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.WhereOrInterpolatedStringHandler(int, int, bool, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder, out bool) @@ -2640,7 +2640,7 @@ references: nameWithType.vb: WhereOrInterpolatedStringHandler.New(Integer, Integer, Boolean, IFluentBuilder, Boolean) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.#ctor* name: WhereOrInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -2650,14 +2650,14 @@ references: nameWithType.vb: WhereOrInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.AppendFormatted nameWithType: WhereOrInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.AppendFormatted(T) @@ -2666,7 +2666,7 @@ references: nameWithType.vb: WhereOrInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.AppendFormatted(T, string?) @@ -2675,7 +2675,7 @@ references: nameWithType.vb: WhereOrInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.AppendLiteral(string) @@ -2684,20 +2684,20 @@ references: nameWithType.vb: WhereOrInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereOrInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereOrInterpolatedStringHandler.AppendLiteral nameWithType: WhereOrInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler name: WhereWithFilterInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler nameWithType: WhereWithFilterInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name: WhereWithFilterInterpolatedStringHandler(int, int, IFluentBuilder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithFilterInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithFilterInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name.vb: New(Integer, Integer, IFluentBuilder, Boolean) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.WhereWithFilterInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder, out bool) @@ -2706,7 +2706,7 @@ references: nameWithType.vb: WhereWithFilterInterpolatedStringHandler.New(Integer, Integer, IFluentBuilder, Boolean) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name: WhereWithFilterInterpolatedStringHandler(int, int, bool, IFluentBuilder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithFilterInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithFilterInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name.vb: New(Integer, Integer, Boolean, IFluentBuilder, Boolean) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.WhereWithFilterInterpolatedStringHandler(int, int, bool, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder, out bool) @@ -2715,7 +2715,7 @@ references: nameWithType.vb: WhereWithFilterInterpolatedStringHandler.New(Integer, Integer, Boolean, IFluentBuilder, Boolean) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.#ctor* name: WhereWithFilterInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithFilterInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithFilterInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -2725,14 +2725,14 @@ references: nameWithType.vb: WhereWithFilterInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithFilterInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithFilterInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.AppendFormatted nameWithType: WhereWithFilterInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithFilterInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithFilterInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.AppendFormatted(T) @@ -2741,7 +2741,7 @@ references: nameWithType.vb: WhereWithFilterInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithFilterInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithFilterInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.AppendFormatted(T, string?) @@ -2750,7 +2750,7 @@ references: nameWithType.vb: WhereWithFilterInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithFilterInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithFilterInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.AppendLiteral(string) @@ -2759,20 +2759,20 @@ references: nameWithType.vb: WhereWithFilterInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithFilterInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithFilterInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithFilterInterpolatedStringHandler.AppendLiteral nameWithType: WhereWithFilterInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler name: WhereWithOrFilterInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler nameWithType: WhereWithOrFilterInterpolatedStringHandler - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name: WhereWithOrFilterInterpolatedStringHandler(int, int, IFluentBuilder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithOrFilterInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithOrFilterInterpolatedStringHandler__ctor_System_Int32_System_Int32_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.#ctor(System.Int32,System.Int32,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name.vb: New(Integer, Integer, IFluentBuilder, Boolean) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.WhereWithOrFilterInterpolatedStringHandler(int, int, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder, out bool) @@ -2781,7 +2781,7 @@ references: nameWithType.vb: WhereWithOrFilterInterpolatedStringHandler.New(Integer, Integer, IFluentBuilder, Boolean) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name: WhereWithOrFilterInterpolatedStringHandler(int, int, bool, IFluentBuilder, out bool) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithOrFilterInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithOrFilterInterpolatedStringHandler__ctor_System_Int32_System_Int32_System_Boolean_Dapper_SimpleSqlBuilder_FluentBuilder_IFluentBuilder_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.#ctor(System.Int32,System.Int32,System.Boolean,Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder,System.Boolean@) name.vb: New(Integer, Integer, Boolean, IFluentBuilder, Boolean) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.WhereWithOrFilterInterpolatedStringHandler(int, int, bool, Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder, out bool) @@ -2790,7 +2790,7 @@ references: nameWithType.vb: WhereWithOrFilterInterpolatedStringHandler.New(Integer, Integer, Boolean, IFluentBuilder, Boolean) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.#ctor* name: WhereWithOrFilterInterpolatedStringHandler - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithOrFilterInterpolatedStringHandler__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithOrFilterInterpolatedStringHandler__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.#ctor isSpec: "True" name.vb: New @@ -2800,14 +2800,14 @@ references: nameWithType.vb: WhereWithOrFilterInterpolatedStringHandler.New - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.AppendFormatted* name: AppendFormatted - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithOrFilterInterpolatedStringHandler_AppendFormatted_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithOrFilterInterpolatedStringHandler_AppendFormatted_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.AppendFormatted isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.AppendFormatted nameWithType: WhereWithOrFilterInterpolatedStringHandler.AppendFormatted - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.AppendFormatted``1(``0) name: AppendFormatted(T) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithOrFilterInterpolatedStringHandler_AppendFormatted__1___0_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithOrFilterInterpolatedStringHandler_AppendFormatted__1___0_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.AppendFormatted``1(``0) name.vb: AppendFormatted(Of T)(T) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.AppendFormatted(T) @@ -2816,7 +2816,7 @@ references: nameWithType.vb: WhereWithOrFilterInterpolatedStringHandler.AppendFormatted(Of T)(T) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name: AppendFormatted(T, string?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithOrFilterInterpolatedStringHandler_AppendFormatted__1___0_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithOrFilterInterpolatedStringHandler_AppendFormatted__1___0_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.AppendFormatted``1(``0,System.String) name.vb: AppendFormatted(Of T)(T, String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.AppendFormatted(T, string?) @@ -2825,7 +2825,7 @@ references: nameWithType.vb: WhereWithOrFilterInterpolatedStringHandler.AppendFormatted(Of T)(T, String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.AppendLiteral(System.String) name: AppendLiteral(string) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithOrFilterInterpolatedStringHandler_AppendLiteral_System_String_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithOrFilterInterpolatedStringHandler_AppendLiteral_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.AppendLiteral(System.String) name.vb: AppendLiteral(String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.AppendLiteral(string) @@ -2834,136 +2834,136 @@ references: nameWithType.vb: WhereWithOrFilterInterpolatedStringHandler.AppendLiteral(String) - uid: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.AppendLiteral* name: AppendLiteral - href: api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithOrFilterInterpolatedStringHandler_AppendLiteral_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.html#Dapper_SimpleSqlBuilder_FluentBuilder_WhereWithOrFilterInterpolatedStringHandler_AppendLiteral_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.AppendLiteral isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.WhereWithOrFilterInterpolatedStringHandler.AppendLiteral nameWithType: WhereWithOrFilterInterpolatedStringHandler.AppendLiteral - uid: Dapper.SimpleSqlBuilder.ISimpleParameterInfo name: ISimpleParameterInfo - href: api-docs/netcore/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html commentId: T:Dapper.SimpleSqlBuilder.ISimpleParameterInfo fullName: Dapper.SimpleSqlBuilder.ISimpleParameterInfo nameWithType: ISimpleParameterInfo - uid: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.DbType name: DbType - href: api-docs/netcore/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_DbType + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_DbType commentId: P:Dapper.SimpleSqlBuilder.ISimpleParameterInfo.DbType fullName: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.DbType nameWithType: ISimpleParameterInfo.DbType - uid: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.DbType* name: DbType - href: api-docs/netcore/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_DbType_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_DbType_ commentId: Overload:Dapper.SimpleSqlBuilder.ISimpleParameterInfo.DbType isSpec: "True" fullName: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.DbType nameWithType: ISimpleParameterInfo.DbType - uid: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Precision name: Precision - href: api-docs/netcore/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Precision + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Precision commentId: P:Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Precision fullName: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Precision nameWithType: ISimpleParameterInfo.Precision - uid: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Precision* name: Precision - href: api-docs/netcore/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Precision_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Precision_ commentId: Overload:Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Precision isSpec: "True" fullName: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Precision nameWithType: ISimpleParameterInfo.Precision - uid: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Scale name: Scale - href: api-docs/netcore/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Scale + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Scale commentId: P:Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Scale fullName: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Scale nameWithType: ISimpleParameterInfo.Scale - uid: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Scale* name: Scale - href: api-docs/netcore/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Scale_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Scale_ commentId: Overload:Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Scale isSpec: "True" fullName: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Scale nameWithType: ISimpleParameterInfo.Scale - uid: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Size name: Size - href: api-docs/netcore/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Size + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Size commentId: P:Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Size fullName: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Size nameWithType: ISimpleParameterInfo.Size - uid: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Size* name: Size - href: api-docs/netcore/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Size_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Size_ commentId: Overload:Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Size isSpec: "True" fullName: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Size nameWithType: ISimpleParameterInfo.Size - uid: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Value name: Value - href: api-docs/netcore/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Value + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Value commentId: P:Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Value fullName: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Value nameWithType: ISimpleParameterInfo.Value - uid: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Value* name: Value - href: api-docs/netcore/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Value_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Value_ commentId: Overload:Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Value isSpec: "True" fullName: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Value nameWithType: ISimpleParameterInfo.Value - uid: Dapper.SimpleSqlBuilder.ISqlBuilder name: ISqlBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.ISqlBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.ISqlBuilder.html commentId: T:Dapper.SimpleSqlBuilder.ISqlBuilder fullName: Dapper.SimpleSqlBuilder.ISqlBuilder nameWithType: ISqlBuilder - uid: Dapper.SimpleSqlBuilder.ISqlBuilder.ParameterNames name: ParameterNames - href: api-docs/netcore/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_ParameterNames + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_ParameterNames commentId: P:Dapper.SimpleSqlBuilder.ISqlBuilder.ParameterNames fullName: Dapper.SimpleSqlBuilder.ISqlBuilder.ParameterNames nameWithType: ISqlBuilder.ParameterNames - uid: Dapper.SimpleSqlBuilder.ISqlBuilder.ParameterNames* name: ParameterNames - href: api-docs/netcore/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_ParameterNames_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_ParameterNames_ commentId: Overload:Dapper.SimpleSqlBuilder.ISqlBuilder.ParameterNames isSpec: "True" fullName: Dapper.SimpleSqlBuilder.ISqlBuilder.ParameterNames nameWithType: ISqlBuilder.ParameterNames - uid: Dapper.SimpleSqlBuilder.ISqlBuilder.Parameters name: Parameters - href: api-docs/netcore/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_Parameters + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_Parameters commentId: P:Dapper.SimpleSqlBuilder.ISqlBuilder.Parameters fullName: Dapper.SimpleSqlBuilder.ISqlBuilder.Parameters nameWithType: ISqlBuilder.Parameters - uid: Dapper.SimpleSqlBuilder.ISqlBuilder.Parameters* name: Parameters - href: api-docs/netcore/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_Parameters_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_Parameters_ commentId: Overload:Dapper.SimpleSqlBuilder.ISqlBuilder.Parameters isSpec: "True" fullName: Dapper.SimpleSqlBuilder.ISqlBuilder.Parameters nameWithType: ISqlBuilder.Parameters - uid: Dapper.SimpleSqlBuilder.ISqlBuilder.Sql name: Sql - href: api-docs/netcore/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_Sql + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_Sql commentId: P:Dapper.SimpleSqlBuilder.ISqlBuilder.Sql fullName: Dapper.SimpleSqlBuilder.ISqlBuilder.Sql nameWithType: ISqlBuilder.Sql - uid: Dapper.SimpleSqlBuilder.ISqlBuilder.Sql* name: Sql - href: api-docs/netcore/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_Sql_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_Sql_ commentId: Overload:Dapper.SimpleSqlBuilder.ISqlBuilder.Sql isSpec: "True" fullName: Dapper.SimpleSqlBuilder.ISqlBuilder.Sql nameWithType: ISqlBuilder.Sql - uid: Dapper.SimpleSqlBuilder.SimpleBuilder name: SimpleBuilder - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilder.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilder.html commentId: T:Dapper.SimpleSqlBuilder.SimpleBuilder fullName: Dapper.SimpleSqlBuilder.SimpleBuilder nameWithType: SimpleBuilder - uid: Dapper.SimpleSqlBuilder.SimpleBuilder.Create(System.FormattableString,System.String,System.Nullable{System.Boolean}) name: Create(FormattableString?, string?, bool?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilder.html#Dapper_SimpleSqlBuilder_SimpleBuilder_Create_System_FormattableString_System_String_System_Nullable_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilder.html#Dapper_SimpleSqlBuilder_SimpleBuilder_Create_System_FormattableString_System_String_System_Nullable_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.SimpleBuilder.Create(System.FormattableString,System.String,System.Nullable{System.Boolean}) name.vb: Create(FormattableString, String, Boolean?) fullName: Dapper.SimpleSqlBuilder.SimpleBuilder.Create(System.FormattableString?, string?, bool?) @@ -2972,14 +2972,14 @@ references: nameWithType.vb: SimpleBuilder.Create(FormattableString, String, Boolean?) - uid: Dapper.SimpleSqlBuilder.SimpleBuilder.Create* name: Create - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilder.html#Dapper_SimpleSqlBuilder_SimpleBuilder_Create_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilder.html#Dapper_SimpleSqlBuilder_SimpleBuilder_Create_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleBuilder.Create isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleBuilder.Create nameWithType: SimpleBuilder.Create - uid: Dapper.SimpleSqlBuilder.SimpleBuilder.CreateFluent(System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean}) name: CreateFluent(string?, bool?, bool?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilder.html#Dapper_SimpleSqlBuilder_SimpleBuilder_CreateFluent_System_String_System_Nullable_System_Boolean__System_Nullable_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilder.html#Dapper_SimpleSqlBuilder_SimpleBuilder_CreateFluent_System_String_System_Nullable_System_Boolean__System_Nullable_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.SimpleBuilder.CreateFluent(System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean}) name.vb: CreateFluent(String, Boolean?, Boolean?) fullName: Dapper.SimpleSqlBuilder.SimpleBuilder.CreateFluent(string?, bool?, bool?) @@ -2988,20 +2988,20 @@ references: nameWithType.vb: SimpleBuilder.CreateFluent(String, Boolean?, Boolean?) - uid: Dapper.SimpleSqlBuilder.SimpleBuilder.CreateFluent* name: CreateFluent - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilder.html#Dapper_SimpleSqlBuilder_SimpleBuilder_CreateFluent_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilder.html#Dapper_SimpleSqlBuilder_SimpleBuilder_CreateFluent_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleBuilder.CreateFluent isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleBuilder.CreateFluent nameWithType: SimpleBuilder.CreateFluent - uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings name: SimpleBuilderSettings - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html commentId: T:Dapper.SimpleSqlBuilder.SimpleBuilderSettings fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings nameWithType: SimpleBuilderSettings - uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Configure(System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean}) name: Configure(string?, string?, bool?, bool?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_Configure_System_String_System_String_System_Nullable_System_Boolean__System_Nullable_System_Boolean__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_Configure_System_String_System_String_System_Nullable_System_Boolean__System_Nullable_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Configure(System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean}) name.vb: Configure(String, String, Boolean?, Boolean?) fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Configure(string?, string?, bool?, bool?) @@ -3010,85 +3010,85 @@ references: nameWithType.vb: SimpleBuilderSettings.Configure(String, String, Boolean?, Boolean?) - uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Configure* name: Configure - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_Configure_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_Configure_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Configure isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Configure nameWithType: SimpleBuilderSettings.Configure - uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterNameTemplate name: DatabaseParameterNameTemplate - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_DatabaseParameterNameTemplate + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_DatabaseParameterNameTemplate commentId: P:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterNameTemplate fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterNameTemplate nameWithType: SimpleBuilderSettings.DatabaseParameterNameTemplate - uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterNameTemplate* name: DatabaseParameterNameTemplate - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_DatabaseParameterNameTemplate_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_DatabaseParameterNameTemplate_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterNameTemplate isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterNameTemplate nameWithType: SimpleBuilderSettings.DatabaseParameterNameTemplate - uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterPrefix name: DatabaseParameterPrefix - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_DatabaseParameterPrefix + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_DatabaseParameterPrefix commentId: P:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterPrefix fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterPrefix nameWithType: SimpleBuilderSettings.DatabaseParameterPrefix - uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterPrefix* name: DatabaseParameterPrefix - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_DatabaseParameterPrefix_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_DatabaseParameterPrefix_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterPrefix isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterPrefix nameWithType: SimpleBuilderSettings.DatabaseParameterPrefix - uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Instance name: Instance - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_Instance + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_Instance commentId: P:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Instance fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Instance nameWithType: SimpleBuilderSettings.Instance - uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Instance* name: Instance - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_Instance_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_Instance_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Instance isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Instance nameWithType: SimpleBuilderSettings.Instance - uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.ReuseParameters name: ReuseParameters - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_ReuseParameters + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_ReuseParameters commentId: P:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.ReuseParameters fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.ReuseParameters nameWithType: SimpleBuilderSettings.ReuseParameters - uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.ReuseParameters* name: ReuseParameters - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_ReuseParameters_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_ReuseParameters_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.ReuseParameters isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.ReuseParameters nameWithType: SimpleBuilderSettings.ReuseParameters - uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.UseLowerCaseClauses name: UseLowerCaseClauses - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_UseLowerCaseClauses + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_UseLowerCaseClauses commentId: P:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.UseLowerCaseClauses fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.UseLowerCaseClauses nameWithType: SimpleBuilderSettings.UseLowerCaseClauses - uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.UseLowerCaseClauses* name: UseLowerCaseClauses - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_UseLowerCaseClauses_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_UseLowerCaseClauses_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.UseLowerCaseClauses isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.UseLowerCaseClauses nameWithType: SimpleBuilderSettings.UseLowerCaseClauses - uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo name: SimpleParameterInfo - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html commentId: T:Dapper.SimpleSqlBuilder.SimpleParameterInfo fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo nameWithType: SimpleParameterInfo - uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.#ctor(System.Object,System.Nullable{System.Data.DbType},System.Nullable{System.Int32},System.Nullable{System.Byte},System.Nullable{System.Byte}) name: SimpleParameterInfo(object?, DbType?, int?, byte?, byte?) - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo__ctor_System_Object_System_Nullable_System_Data_DbType__System_Nullable_System_Int32__System_Nullable_System_Byte__System_Nullable_System_Byte__ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo__ctor_System_Object_System_Nullable_System_Data_DbType__System_Nullable_System_Int32__System_Nullable_System_Byte__System_Nullable_System_Byte__ commentId: M:Dapper.SimpleSqlBuilder.SimpleParameterInfo.#ctor(System.Object,System.Nullable{System.Data.DbType},System.Nullable{System.Int32},System.Nullable{System.Byte},System.Nullable{System.Byte}) name.vb: New(Object, DbType?, Integer?, Byte?, Byte?) fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo.SimpleParameterInfo(object?, System.Data.DbType?, int?, byte?, byte?) @@ -3097,7 +3097,7 @@ references: nameWithType.vb: SimpleParameterInfo.New(Object, DbType?, Integer?, Byte?, Byte?) - uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.#ctor* name: SimpleParameterInfo - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo__ctor_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleParameterInfo.#ctor isSpec: "True" name.vb: New @@ -3107,65 +3107,65 @@ references: nameWithType.vb: SimpleParameterInfo.New - uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.DbType name: DbType - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_DbType + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_DbType commentId: P:Dapper.SimpleSqlBuilder.SimpleParameterInfo.DbType fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo.DbType nameWithType: SimpleParameterInfo.DbType - uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.DbType* name: DbType - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_DbType_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_DbType_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleParameterInfo.DbType isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo.DbType nameWithType: SimpleParameterInfo.DbType - uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Precision name: Precision - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Precision + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Precision commentId: P:Dapper.SimpleSqlBuilder.SimpleParameterInfo.Precision fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Precision nameWithType: SimpleParameterInfo.Precision - uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Precision* name: Precision - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Precision_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Precision_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleParameterInfo.Precision isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Precision nameWithType: SimpleParameterInfo.Precision - uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Scale name: Scale - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Scale + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Scale commentId: P:Dapper.SimpleSqlBuilder.SimpleParameterInfo.Scale fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Scale nameWithType: SimpleParameterInfo.Scale - uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Scale* name: Scale - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Scale_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Scale_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleParameterInfo.Scale isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Scale nameWithType: SimpleParameterInfo.Scale - uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Size name: Size - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Size + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Size commentId: P:Dapper.SimpleSqlBuilder.SimpleParameterInfo.Size fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Size nameWithType: SimpleParameterInfo.Size - uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Size* name: Size - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Size_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Size_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleParameterInfo.Size isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Size nameWithType: SimpleParameterInfo.Size - uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Value name: Value - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Value + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Value commentId: P:Dapper.SimpleSqlBuilder.SimpleParameterInfo.Value fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Value nameWithType: SimpleParameterInfo.Value - uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Value* name: Value - href: api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Value_ + href: http://localhost:8080/api-docs/netcore/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Value_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleParameterInfo.Value isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Value diff --git a/docs/github-pages/xrefs/netstd2.xrefmap.yml b/docs/github-pages/xrefs/netstd2.xrefmap.yml index 1efa3ed..6fa1922 100644 --- a/docs/github-pages/xrefs/netstd2.xrefmap.yml +++ b/docs/github-pages/xrefs/netstd2.xrefmap.yml @@ -1,202 +1,202 @@ ### YamlMime:XRefMap sorted: true references: -- uid: Dapper.SimpleSqlBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder name: Dapper.SimpleSqlBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.html commentId: N:Dapper.SimpleSqlBuilder fullName: Dapper.SimpleSqlBuilder nameWithType: Dapper.SimpleSqlBuilder -- uid: Dapper.SimpleSqlBuilder.Builder +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder name: Builder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html commentId: T:Dapper.SimpleSqlBuilder.Builder fullName: Dapper.SimpleSqlBuilder.Builder nameWithType: Builder -- uid: Dapper.SimpleSqlBuilder.Builder.AddDynamicParameters(System.Object) +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.AddDynamicParameters(System.Object) name: AddDynamicParameters(object?) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AddDynamicParameters_System_Object_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AddDynamicParameters_System_Object_ commentId: M:Dapper.SimpleSqlBuilder.Builder.AddDynamicParameters(System.Object) name.vb: AddDynamicParameters(Object) fullName: Dapper.SimpleSqlBuilder.Builder.AddDynamicParameters(object?) fullName.vb: Dapper.SimpleSqlBuilder.Builder.AddDynamicParameters(Object) nameWithType: Builder.AddDynamicParameters(object?) nameWithType.vb: Builder.AddDynamicParameters(Object) -- uid: Dapper.SimpleSqlBuilder.Builder.AddDynamicParameters* +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.AddDynamicParameters* name: AddDynamicParameters - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AddDynamicParameters_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AddDynamicParameters_ commentId: Overload:Dapper.SimpleSqlBuilder.Builder.AddDynamicParameters isSpec: "True" fullName: Dapper.SimpleSqlBuilder.Builder.AddDynamicParameters nameWithType: Builder.AddDynamicParameters -- uid: Dapper.SimpleSqlBuilder.Builder.AddParameter(System.String,System.Object,System.Nullable{System.Data.DbType},System.Nullable{System.Data.ParameterDirection},System.Nullable{System.Int32},System.Nullable{System.Byte},System.Nullable{System.Byte}) +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.AddParameter(System.String,System.Object,System.Nullable{System.Data.DbType},System.Nullable{System.Data.ParameterDirection},System.Nullable{System.Int32},System.Nullable{System.Byte},System.Nullable{System.Byte}) name: AddParameter(string, object?, DbType?, ParameterDirection?, int?, byte?, byte?) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AddParameter_System_String_System_Object_System_Nullable_System_Data_DbType__System_Nullable_System_Data_ParameterDirection__System_Nullable_System_Int32__System_Nullable_System_Byte__System_Nullable_System_Byte__ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AddParameter_System_String_System_Object_System_Nullable_System_Data_DbType__System_Nullable_System_Data_ParameterDirection__System_Nullable_System_Int32__System_Nullable_System_Byte__System_Nullable_System_Byte__ commentId: M:Dapper.SimpleSqlBuilder.Builder.AddParameter(System.String,System.Object,System.Nullable{System.Data.DbType},System.Nullable{System.Data.ParameterDirection},System.Nullable{System.Int32},System.Nullable{System.Byte},System.Nullable{System.Byte}) name.vb: AddParameter(String, Object, DbType?, ParameterDirection?, Integer?, Byte?, Byte?) fullName: Dapper.SimpleSqlBuilder.Builder.AddParameter(string, object?, System.Data.DbType?, System.Data.ParameterDirection?, int?, byte?, byte?) fullName.vb: Dapper.SimpleSqlBuilder.Builder.AddParameter(String, Object, System.Data.DbType?, System.Data.ParameterDirection?, Integer?, Byte?, Byte?) nameWithType: Builder.AddParameter(string, object?, DbType?, ParameterDirection?, int?, byte?, byte?) nameWithType.vb: Builder.AddParameter(String, Object, DbType?, ParameterDirection?, Integer?, Byte?, Byte?) -- uid: Dapper.SimpleSqlBuilder.Builder.AddParameter* +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.AddParameter* name: AddParameter - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AddParameter_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AddParameter_ commentId: Overload:Dapper.SimpleSqlBuilder.Builder.AddParameter isSpec: "True" fullName: Dapper.SimpleSqlBuilder.Builder.AddParameter nameWithType: Builder.AddParameter -- uid: Dapper.SimpleSqlBuilder.Builder.Append(System.Boolean,System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.Append(System.Boolean,System.FormattableString) name: Append(bool, FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Append_System_Boolean_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Append_System_Boolean_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.Builder.Append(System.Boolean,System.FormattableString) name.vb: Append(Boolean, FormattableString) fullName: Dapper.SimpleSqlBuilder.Builder.Append(bool, System.FormattableString) fullName.vb: Dapper.SimpleSqlBuilder.Builder.Append(Boolean, System.FormattableString) nameWithType: Builder.Append(bool, FormattableString) nameWithType.vb: Builder.Append(Boolean, FormattableString) -- uid: Dapper.SimpleSqlBuilder.Builder.Append(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.Append(System.FormattableString) name: Append(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Append_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Append_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.Builder.Append(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.Builder.Append(System.FormattableString) nameWithType: Builder.Append(FormattableString) -- uid: Dapper.SimpleSqlBuilder.Builder.Append* +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.Append* name: Append - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Append_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Append_ commentId: Overload:Dapper.SimpleSqlBuilder.Builder.Append isSpec: "True" fullName: Dapper.SimpleSqlBuilder.Builder.Append nameWithType: Builder.Append -- uid: Dapper.SimpleSqlBuilder.Builder.AppendIntact(System.Boolean,System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.AppendIntact(System.Boolean,System.FormattableString) name: AppendIntact(bool, FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendIntact_System_Boolean_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendIntact_System_Boolean_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.Builder.AppendIntact(System.Boolean,System.FormattableString) name.vb: AppendIntact(Boolean, FormattableString) fullName: Dapper.SimpleSqlBuilder.Builder.AppendIntact(bool, System.FormattableString) fullName.vb: Dapper.SimpleSqlBuilder.Builder.AppendIntact(Boolean, System.FormattableString) nameWithType: Builder.AppendIntact(bool, FormattableString) nameWithType.vb: Builder.AppendIntact(Boolean, FormattableString) -- uid: Dapper.SimpleSqlBuilder.Builder.AppendIntact(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.AppendIntact(System.FormattableString) name: AppendIntact(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendIntact_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendIntact_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.Builder.AppendIntact(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.Builder.AppendIntact(System.FormattableString) nameWithType: Builder.AppendIntact(FormattableString) -- uid: Dapper.SimpleSqlBuilder.Builder.AppendIntact* +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.AppendIntact* name: AppendIntact - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendIntact_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendIntact_ commentId: Overload:Dapper.SimpleSqlBuilder.Builder.AppendIntact isSpec: "True" fullName: Dapper.SimpleSqlBuilder.Builder.AppendIntact nameWithType: Builder.AppendIntact -- uid: Dapper.SimpleSqlBuilder.Builder.AppendNewLine +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.AppendNewLine name: AppendNewLine() - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendNewLine + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendNewLine commentId: M:Dapper.SimpleSqlBuilder.Builder.AppendNewLine fullName: Dapper.SimpleSqlBuilder.Builder.AppendNewLine() nameWithType: Builder.AppendNewLine() -- uid: Dapper.SimpleSqlBuilder.Builder.AppendNewLine(System.Boolean,System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.AppendNewLine(System.Boolean,System.FormattableString) name: AppendNewLine(bool, FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendNewLine_System_Boolean_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendNewLine_System_Boolean_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.Builder.AppendNewLine(System.Boolean,System.FormattableString) name.vb: AppendNewLine(Boolean, FormattableString) fullName: Dapper.SimpleSqlBuilder.Builder.AppendNewLine(bool, System.FormattableString) fullName.vb: Dapper.SimpleSqlBuilder.Builder.AppendNewLine(Boolean, System.FormattableString) nameWithType: Builder.AppendNewLine(bool, FormattableString) nameWithType.vb: Builder.AppendNewLine(Boolean, FormattableString) -- uid: Dapper.SimpleSqlBuilder.Builder.AppendNewLine(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.AppendNewLine(System.FormattableString) name: AppendNewLine(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendNewLine_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendNewLine_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.Builder.AppendNewLine(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.Builder.AppendNewLine(System.FormattableString) nameWithType: Builder.AppendNewLine(FormattableString) -- uid: Dapper.SimpleSqlBuilder.Builder.AppendNewLine* +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.AppendNewLine* name: AppendNewLine - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendNewLine_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_AppendNewLine_ commentId: Overload:Dapper.SimpleSqlBuilder.Builder.AppendNewLine isSpec: "True" fullName: Dapper.SimpleSqlBuilder.Builder.AppendNewLine nameWithType: Builder.AppendNewLine -- uid: Dapper.SimpleSqlBuilder.Builder.GetValue* +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.GetValue* name: GetValue - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_GetValue_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_GetValue_ commentId: Overload:Dapper.SimpleSqlBuilder.Builder.GetValue isSpec: "True" fullName: Dapper.SimpleSqlBuilder.Builder.GetValue nameWithType: Builder.GetValue -- uid: Dapper.SimpleSqlBuilder.Builder.GetValue``1(System.String) +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.GetValue``1(System.String) name: GetValue(string) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_GetValue__1_System_String_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_GetValue__1_System_String_ commentId: M:Dapper.SimpleSqlBuilder.Builder.GetValue``1(System.String) name.vb: GetValue(Of T)(String) fullName: Dapper.SimpleSqlBuilder.Builder.GetValue(string) fullName.vb: Dapper.SimpleSqlBuilder.Builder.GetValue(Of T)(String) nameWithType: Builder.GetValue(string) nameWithType.vb: Builder.GetValue(Of T)(String) -- uid: Dapper.SimpleSqlBuilder.Builder.ParameterNames +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.ParameterNames name: ParameterNames - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_ParameterNames + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_ParameterNames commentId: P:Dapper.SimpleSqlBuilder.Builder.ParameterNames fullName: Dapper.SimpleSqlBuilder.Builder.ParameterNames nameWithType: Builder.ParameterNames -- uid: Dapper.SimpleSqlBuilder.Builder.ParameterNames* +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.ParameterNames* name: ParameterNames - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_ParameterNames_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_ParameterNames_ commentId: Overload:Dapper.SimpleSqlBuilder.Builder.ParameterNames isSpec: "True" fullName: Dapper.SimpleSqlBuilder.Builder.ParameterNames nameWithType: Builder.ParameterNames -- uid: Dapper.SimpleSqlBuilder.Builder.Parameters +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.Parameters name: Parameters - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Parameters + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Parameters commentId: P:Dapper.SimpleSqlBuilder.Builder.Parameters fullName: Dapper.SimpleSqlBuilder.Builder.Parameters nameWithType: Builder.Parameters -- uid: Dapper.SimpleSqlBuilder.Builder.Parameters* +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.Parameters* name: Parameters - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Parameters_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Parameters_ commentId: Overload:Dapper.SimpleSqlBuilder.Builder.Parameters isSpec: "True" fullName: Dapper.SimpleSqlBuilder.Builder.Parameters nameWithType: Builder.Parameters -- uid: Dapper.SimpleSqlBuilder.Builder.Reset +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.Reset name: Reset() - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Reset + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Reset commentId: M:Dapper.SimpleSqlBuilder.Builder.Reset fullName: Dapper.SimpleSqlBuilder.Builder.Reset() nameWithType: Builder.Reset() -- uid: Dapper.SimpleSqlBuilder.Builder.Reset* +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.Reset* name: Reset - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Reset_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Reset_ commentId: Overload:Dapper.SimpleSqlBuilder.Builder.Reset isSpec: "True" fullName: Dapper.SimpleSqlBuilder.Builder.Reset nameWithType: Builder.Reset -- uid: Dapper.SimpleSqlBuilder.Builder.Sql +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.Sql name: Sql - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Sql + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Sql commentId: P:Dapper.SimpleSqlBuilder.Builder.Sql fullName: Dapper.SimpleSqlBuilder.Builder.Sql nameWithType: Builder.Sql -- uid: Dapper.SimpleSqlBuilder.Builder.Sql* +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.Sql* name: Sql - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Sql_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_Sql_ commentId: Overload:Dapper.SimpleSqlBuilder.Builder.Sql isSpec: "True" fullName: Dapper.SimpleSqlBuilder.Builder.Sql nameWithType: Builder.Sql -- uid: Dapper.SimpleSqlBuilder.Builder.op_Addition(Dapper.SimpleSqlBuilder.Builder,System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.op_Addition(Dapper.SimpleSqlBuilder.Builder,System.FormattableString) name: operator +(Builder, FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_op_Addition_Dapper_SimpleSqlBuilder_Builder_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_op_Addition_Dapper_SimpleSqlBuilder_Builder_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.Builder.op_Addition(Dapper.SimpleSqlBuilder.Builder,System.FormattableString) name.vb: +(Builder, FormattableString) fullName: Dapper.SimpleSqlBuilder.Builder.operator +(Dapper.SimpleSqlBuilder.Builder, System.FormattableString) fullName.vb: Dapper.SimpleSqlBuilder.Builder.+(Dapper.SimpleSqlBuilder.Builder, System.FormattableString) nameWithType: Builder.operator +(Builder, FormattableString) nameWithType.vb: Builder.+(Builder, FormattableString) -- uid: Dapper.SimpleSqlBuilder.Builder.op_Addition* +- uid: netstd2.Dapper.SimpleSqlBuilder.Builder.op_Addition* name: operator + - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_op_Addition_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Builder.html#Dapper_SimpleSqlBuilder_Builder_op_Addition_ commentId: Overload:Dapper.SimpleSqlBuilder.Builder.op_Addition isSpec: "True" name.vb: + @@ -204,967 +204,967 @@ references: fullName.vb: Dapper.SimpleSqlBuilder.Builder.+ nameWithType: Builder.operator + nameWithType.vb: Builder.+ -- uid: Dapper.SimpleSqlBuilder.Extensions +- uid: netstd2.Dapper.SimpleSqlBuilder.Extensions name: Dapper.SimpleSqlBuilder.Extensions - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Extensions.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Extensions.html commentId: N:Dapper.SimpleSqlBuilder.Extensions fullName: Dapper.SimpleSqlBuilder.Extensions nameWithType: Dapper.SimpleSqlBuilder.Extensions -- uid: Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions +- uid: netstd2.Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions name: SimpleParameterInfoExtensions - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.html commentId: T:Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions fullName: Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions nameWithType: SimpleParameterInfoExtensions -- uid: Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.DefineParam* +- uid: netstd2.Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.DefineParam* name: DefineParam - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.html#Dapper_SimpleSqlBuilder_Extensions_SimpleParameterInfoExtensions_DefineParam_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.html#Dapper_SimpleSqlBuilder_Extensions_SimpleParameterInfoExtensions_DefineParam_ commentId: Overload:Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.DefineParam isSpec: "True" fullName: Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.DefineParam nameWithType: SimpleParameterInfoExtensions.DefineParam -- uid: Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.DefineParam``1(``0,System.Nullable{System.Data.DbType},System.Nullable{System.Int32},System.Nullable{System.Byte},System.Nullable{System.Byte}) +- uid: netstd2.Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.DefineParam``1(``0,System.Nullable{System.Data.DbType},System.Nullable{System.Int32},System.Nullable{System.Byte},System.Nullable{System.Byte}) name: DefineParam(T, DbType?, int?, byte?, byte?) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.html#Dapper_SimpleSqlBuilder_Extensions_SimpleParameterInfoExtensions_DefineParam__1___0_System_Nullable_System_Data_DbType__System_Nullable_System_Int32__System_Nullable_System_Byte__System_Nullable_System_Byte__ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.html#Dapper_SimpleSqlBuilder_Extensions_SimpleParameterInfoExtensions_DefineParam__1___0_System_Nullable_System_Data_DbType__System_Nullable_System_Int32__System_Nullable_System_Byte__System_Nullable_System_Byte__ commentId: M:Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.DefineParam``1(``0,System.Nullable{System.Data.DbType},System.Nullable{System.Int32},System.Nullable{System.Byte},System.Nullable{System.Byte}) name.vb: DefineParam(Of T)(T, DbType?, Integer?, Byte?, Byte?) fullName: Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.DefineParam(T, System.Data.DbType?, int?, byte?, byte?) fullName.vb: Dapper.SimpleSqlBuilder.Extensions.SimpleParameterInfoExtensions.DefineParam(Of T)(T, System.Data.DbType?, Integer?, Byte?, Byte?) nameWithType: SimpleParameterInfoExtensions.DefineParam(T, DbType?, int?, byte?, byte?) nameWithType.vb: SimpleParameterInfoExtensions.DefineParam(Of T)(T, DbType?, Integer?, Byte?, Byte?) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder name: Dapper.SimpleSqlBuilder.FluentBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.html commentId: N:Dapper.SimpleSqlBuilder.FluentBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder nameWithType: Dapper.SimpleSqlBuilder.FluentBuilder -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilder name: IDeleteBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilder nameWithType: IDeleteBuilder -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry name: IDeleteBuilderEntry - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry nameWithType: IDeleteBuilderEntry -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.DeleteFrom(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.DeleteFrom(System.FormattableString) name: DeleteFrom(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IDeleteBuilderEntry_DeleteFrom_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IDeleteBuilderEntry_DeleteFrom_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.DeleteFrom(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.DeleteFrom(System.FormattableString) nameWithType: IDeleteBuilderEntry.DeleteFrom(FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.DeleteFrom* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.DeleteFrom* name: DeleteFrom - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IDeleteBuilderEntry_DeleteFrom_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IDeleteBuilderEntry_DeleteFrom_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.DeleteFrom isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IDeleteBuilderEntry.DeleteFrom nameWithType: IDeleteBuilderEntry.DeleteFrom -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder name: IFetchBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder nameWithType: IFetchBuilder -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.FetchNext(System.Int32) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.FetchNext(System.Int32) name: FetchNext(int) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFetchBuilder_FetchNext_System_Int32_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFetchBuilder_FetchNext_System_Int32_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.FetchNext(System.Int32) name.vb: FetchNext(Integer) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.FetchNext(int) fullName.vb: Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.FetchNext(Integer) nameWithType: IFetchBuilder.FetchNext(int) nameWithType.vb: IFetchBuilder.FetchNext(Integer) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.FetchNext* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.FetchNext* name: FetchNext - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFetchBuilder_FetchNext_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFetchBuilder_FetchNext_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.FetchNext isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IFetchBuilder.FetchNext nameWithType: IFetchBuilder.FetchNext -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder name: IFluentBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilder nameWithType: IFluentBuilder -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder name: IFluentSqlBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder nameWithType: IFluentSqlBuilder -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.AddParameter(System.String,System.Object,System.Nullable{System.Data.DbType},System.Nullable{System.Data.ParameterDirection},System.Nullable{System.Int32},System.Nullable{System.Byte},System.Nullable{System.Byte}) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.AddParameter(System.String,System.Object,System.Nullable{System.Data.DbType},System.Nullable{System.Data.ParameterDirection},System.Nullable{System.Int32},System.Nullable{System.Byte},System.Nullable{System.Byte}) name: AddParameter(string, object?, DbType?, ParameterDirection?, int?, byte?, byte?) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFluentSqlBuilder_AddParameter_System_String_System_Object_System_Nullable_System_Data_DbType__System_Nullable_System_Data_ParameterDirection__System_Nullable_System_Int32__System_Nullable_System_Byte__System_Nullable_System_Byte__ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFluentSqlBuilder_AddParameter_System_String_System_Object_System_Nullable_System_Data_DbType__System_Nullable_System_Data_ParameterDirection__System_Nullable_System_Int32__System_Nullable_System_Byte__System_Nullable_System_Byte__ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.AddParameter(System.String,System.Object,System.Nullable{System.Data.DbType},System.Nullable{System.Data.ParameterDirection},System.Nullable{System.Int32},System.Nullable{System.Byte},System.Nullable{System.Byte}) name.vb: AddParameter(String, Object, DbType?, ParameterDirection?, Integer?, Byte?, Byte?) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.AddParameter(string, object?, System.Data.DbType?, System.Data.ParameterDirection?, int?, byte?, byte?) fullName.vb: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.AddParameter(String, Object, System.Data.DbType?, System.Data.ParameterDirection?, Integer?, Byte?, Byte?) nameWithType: IFluentSqlBuilder.AddParameter(string, object?, DbType?, ParameterDirection?, int?, byte?, byte?) nameWithType.vb: IFluentSqlBuilder.AddParameter(String, Object, DbType?, ParameterDirection?, Integer?, Byte?, Byte?) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.AddParameter* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.AddParameter* name: AddParameter - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFluentSqlBuilder_AddParameter_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFluentSqlBuilder_AddParameter_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.AddParameter isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.AddParameter nameWithType: IFluentSqlBuilder.AddParameter -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.GetValue* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.GetValue* name: GetValue - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFluentSqlBuilder_GetValue_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFluentSqlBuilder_GetValue_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.GetValue isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.GetValue nameWithType: IFluentSqlBuilder.GetValue -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.GetValue``1(System.String) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.GetValue``1(System.String) name: GetValue(string) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFluentSqlBuilder_GetValue__1_System_String_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IFluentSqlBuilder_GetValue__1_System_String_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.GetValue``1(System.String) name.vb: GetValue(Of T)(String) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.GetValue(string) fullName.vb: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentSqlBuilder.GetValue(Of T)(String) nameWithType: IFluentSqlBuilder.GetValue(string) nameWithType.vb: IFluentSqlBuilder.GetValue(Of T)(String) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder name: IGroupByBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder nameWithType: IGroupByBuilder -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.GroupBy(System.Boolean,System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.GroupBy(System.Boolean,System.FormattableString) name: GroupBy(bool, FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IGroupByBuilder_GroupBy_System_Boolean_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IGroupByBuilder_GroupBy_System_Boolean_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.GroupBy(System.Boolean,System.FormattableString) name.vb: GroupBy(Boolean, FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.GroupBy(bool, System.FormattableString) fullName.vb: Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.GroupBy(Boolean, System.FormattableString) nameWithType: IGroupByBuilder.GroupBy(bool, FormattableString) nameWithType.vb: IGroupByBuilder.GroupBy(Boolean, FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.GroupBy(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.GroupBy(System.FormattableString) name: GroupBy(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IGroupByBuilder_GroupBy_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IGroupByBuilder_GroupBy_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.GroupBy(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.GroupBy(System.FormattableString) nameWithType: IGroupByBuilder.GroupBy(FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.GroupBy* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.GroupBy* name: GroupBy - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IGroupByBuilder_GroupBy_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IGroupByBuilder_GroupBy_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.GroupBy isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IGroupByBuilder.GroupBy nameWithType: IGroupByBuilder.GroupBy -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder name: IHavingBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder nameWithType: IHavingBuilder -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.Having(System.Boolean,System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.Having(System.Boolean,System.FormattableString) name: Having(bool, FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IHavingBuilder_Having_System_Boolean_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IHavingBuilder_Having_System_Boolean_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.Having(System.Boolean,System.FormattableString) name.vb: Having(Boolean, FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.Having(bool, System.FormattableString) fullName.vb: Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.Having(Boolean, System.FormattableString) nameWithType: IHavingBuilder.Having(bool, FormattableString) nameWithType.vb: IHavingBuilder.Having(Boolean, FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.Having(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.Having(System.FormattableString) name: Having(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IHavingBuilder_Having_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IHavingBuilder_Having_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.Having(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.Having(System.FormattableString) nameWithType: IHavingBuilder.Having(FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.Having* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.Having* name: Having - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IHavingBuilder_Having_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IHavingBuilder_Having_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.Having isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IHavingBuilder.Having nameWithType: IHavingBuilder.Having -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder name: IInsertBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder nameWithType: IInsertBuilder -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.Columns(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.Columns(System.FormattableString) name: Columns(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertBuilder_Columns_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertBuilder_Columns_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.Columns(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.Columns(System.FormattableString) nameWithType: IInsertBuilder.Columns(FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.Columns* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.Columns* name: Columns - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertBuilder_Columns_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertBuilder_Columns_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.Columns isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilder.Columns nameWithType: IInsertBuilder.Columns -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry name: IInsertBuilderEntry - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry nameWithType: IInsertBuilderEntry -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.InsertInto(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.InsertInto(System.FormattableString) name: InsertInto(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertBuilderEntry_InsertInto_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertBuilderEntry_InsertInto_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.InsertInto(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.InsertInto(System.FormattableString) nameWithType: IInsertBuilderEntry.InsertInto(FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.InsertInto* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.InsertInto* name: InsertInto - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertBuilderEntry_InsertInto_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertBuilderEntry_InsertInto_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.InsertInto isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertBuilderEntry.InsertInto nameWithType: IInsertBuilderEntry.InsertInto -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder name: IInsertValueBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder nameWithType: IInsertValueBuilder -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.Values(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.Values(System.FormattableString) name: Values(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertValueBuilder_Values_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertValueBuilder_Values_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.Values(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.Values(System.FormattableString) nameWithType: IInsertValueBuilder.Values(FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.Values* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.Values* name: Values - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertValueBuilder_Values_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IInsertValueBuilder_Values_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.Values isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IInsertValueBuilder.Values nameWithType: IInsertValueBuilder.Values -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder name: IJoinBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder nameWithType: IJoinBuilder -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.InnerJoin(System.Boolean,System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.InnerJoin(System.Boolean,System.FormattableString) name: InnerJoin(bool, FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_InnerJoin_System_Boolean_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_InnerJoin_System_Boolean_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.InnerJoin(System.Boolean,System.FormattableString) name.vb: InnerJoin(Boolean, FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.InnerJoin(bool, System.FormattableString) fullName.vb: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.InnerJoin(Boolean, System.FormattableString) nameWithType: IJoinBuilder.InnerJoin(bool, FormattableString) nameWithType.vb: IJoinBuilder.InnerJoin(Boolean, FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.InnerJoin(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.InnerJoin(System.FormattableString) name: InnerJoin(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_InnerJoin_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_InnerJoin_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.InnerJoin(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.InnerJoin(System.FormattableString) nameWithType: IJoinBuilder.InnerJoin(FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.InnerJoin* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.InnerJoin* name: InnerJoin - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_InnerJoin_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_InnerJoin_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.InnerJoin isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.InnerJoin nameWithType: IJoinBuilder.InnerJoin -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.LeftJoin(System.Boolean,System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.LeftJoin(System.Boolean,System.FormattableString) name: LeftJoin(bool, FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_LeftJoin_System_Boolean_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_LeftJoin_System_Boolean_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.LeftJoin(System.Boolean,System.FormattableString) name.vb: LeftJoin(Boolean, FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.LeftJoin(bool, System.FormattableString) fullName.vb: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.LeftJoin(Boolean, System.FormattableString) nameWithType: IJoinBuilder.LeftJoin(bool, FormattableString) nameWithType.vb: IJoinBuilder.LeftJoin(Boolean, FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.LeftJoin(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.LeftJoin(System.FormattableString) name: LeftJoin(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_LeftJoin_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_LeftJoin_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.LeftJoin(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.LeftJoin(System.FormattableString) nameWithType: IJoinBuilder.LeftJoin(FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.LeftJoin* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.LeftJoin* name: LeftJoin - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_LeftJoin_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_LeftJoin_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.LeftJoin isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.LeftJoin nameWithType: IJoinBuilder.LeftJoin -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.RightJoin(System.Boolean,System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.RightJoin(System.Boolean,System.FormattableString) name: RightJoin(bool, FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_RightJoin_System_Boolean_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_RightJoin_System_Boolean_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.RightJoin(System.Boolean,System.FormattableString) name.vb: RightJoin(Boolean, FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.RightJoin(bool, System.FormattableString) fullName.vb: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.RightJoin(Boolean, System.FormattableString) nameWithType: IJoinBuilder.RightJoin(bool, FormattableString) nameWithType.vb: IJoinBuilder.RightJoin(Boolean, FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.RightJoin(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.RightJoin(System.FormattableString) name: RightJoin(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_RightJoin_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_RightJoin_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.RightJoin(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.RightJoin(System.FormattableString) nameWithType: IJoinBuilder.RightJoin(FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.RightJoin* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.RightJoin* name: RightJoin - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_RightJoin_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IJoinBuilder_RightJoin_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.RightJoin isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IJoinBuilder.RightJoin nameWithType: IJoinBuilder.RightJoin -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder name: ILimitBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder nameWithType: ILimitBuilder -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.Limit(System.Int32) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.Limit(System.Int32) name: Limit(int) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ILimitBuilder_Limit_System_Int32_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ILimitBuilder_Limit_System_Int32_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.Limit(System.Int32) name.vb: Limit(Integer) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.Limit(int) fullName.vb: Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.Limit(Integer) nameWithType: ILimitBuilder.Limit(int) nameWithType.vb: ILimitBuilder.Limit(Integer) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.Limit* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.Limit* name: Limit - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ILimitBuilder_Limit_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ILimitBuilder_Limit_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.Limit isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ILimitBuilder.Limit nameWithType: ILimitBuilder.Limit -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder name: IOffsetBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder nameWithType: IOffsetBuilder -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.Offset(System.Int32) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.Offset(System.Int32) name: Offset(int) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOffsetBuilder_Offset_System_Int32_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOffsetBuilder_Offset_System_Int32_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.Offset(System.Int32) name.vb: Offset(Integer) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.Offset(int) fullName.vb: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.Offset(Integer) nameWithType: IOffsetBuilder.Offset(int) nameWithType.vb: IOffsetBuilder.Offset(Integer) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.Offset* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.Offset* name: Offset - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOffsetBuilder_Offset_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOffsetBuilder_Offset_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.Offset isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetBuilder.Offset nameWithType: IOffsetBuilder.Offset -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder name: IOffsetRowsBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder nameWithType: IOffsetRowsBuilder -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.OffsetRows(System.Int32) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.OffsetRows(System.Int32) name: OffsetRows(int) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOffsetRowsBuilder_OffsetRows_System_Int32_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOffsetRowsBuilder_OffsetRows_System_Int32_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.OffsetRows(System.Int32) name.vb: OffsetRows(Integer) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.OffsetRows(int) fullName.vb: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.OffsetRows(Integer) nameWithType: IOffsetRowsBuilder.OffsetRows(int) nameWithType.vb: IOffsetRowsBuilder.OffsetRows(Integer) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.OffsetRows* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.OffsetRows* name: OffsetRows - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOffsetRowsBuilder_OffsetRows_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOffsetRowsBuilder_OffsetRows_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.OffsetRows isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IOffsetRowsBuilder.OffsetRows nameWithType: IOffsetRowsBuilder.OffsetRows -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilder name: IOrderByBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilder nameWithType: IOrderByBuilder -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry name: IOrderByBuilderEntry - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry nameWithType: IOrderByBuilderEntry -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.OrderBy(System.Boolean,System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.OrderBy(System.Boolean,System.FormattableString) name: OrderBy(bool, FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOrderByBuilderEntry_OrderBy_System_Boolean_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOrderByBuilderEntry_OrderBy_System_Boolean_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.OrderBy(System.Boolean,System.FormattableString) name.vb: OrderBy(Boolean, FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.OrderBy(bool, System.FormattableString) fullName.vb: Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.OrderBy(Boolean, System.FormattableString) nameWithType: IOrderByBuilderEntry.OrderBy(bool, FormattableString) nameWithType.vb: IOrderByBuilderEntry.OrderBy(Boolean, FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.OrderBy(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.OrderBy(System.FormattableString) name: OrderBy(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOrderByBuilderEntry_OrderBy_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOrderByBuilderEntry_OrderBy_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.OrderBy(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.OrderBy(System.FormattableString) nameWithType: IOrderByBuilderEntry.OrderBy(FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.OrderBy* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.OrderBy* name: OrderBy - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOrderByBuilderEntry_OrderBy_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IOrderByBuilderEntry_OrderBy_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.OrderBy isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IOrderByBuilderEntry.OrderBy nameWithType: IOrderByBuilderEntry.OrderBy -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder name: ISelectBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder nameWithType: ISelectBuilder -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.Select(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.Select(System.FormattableString) name: Select(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilder_Select_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilder_Select_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.Select(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.Select(System.FormattableString) nameWithType: ISelectBuilder.Select(FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.Select* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.Select* name: Select - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilder_Select_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilder_Select_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.Select isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilder.Select nameWithType: ISelectBuilder.Select -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry name: ISelectBuilderEntry - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry nameWithType: ISelectBuilderEntry -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.Select(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.Select(System.FormattableString) name: Select(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilderEntry_Select_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilderEntry_Select_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.Select(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.Select(System.FormattableString) nameWithType: ISelectBuilderEntry.Select(FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.Select* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.Select* name: Select - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilderEntry_Select_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilderEntry_Select_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.Select isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.Select nameWithType: ISelectBuilderEntry.Select -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.SelectDistinct(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.SelectDistinct(System.FormattableString) name: SelectDistinct(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilderEntry_SelectDistinct_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilderEntry_SelectDistinct_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.SelectDistinct(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.SelectDistinct(System.FormattableString) nameWithType: ISelectBuilderEntry.SelectDistinct(FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.SelectDistinct* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.SelectDistinct* name: SelectDistinct - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilderEntry_SelectDistinct_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectBuilderEntry_SelectDistinct_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.SelectDistinct isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectBuilderEntry.SelectDistinct nameWithType: ISelectBuilderEntry.SelectDistinct -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder name: ISelectDistinctBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder nameWithType: ISelectDistinctBuilder -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.SelectDistinct(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.SelectDistinct(System.FormattableString) name: SelectDistinct(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectDistinctBuilder_SelectDistinct_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectDistinctBuilder_SelectDistinct_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.SelectDistinct(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.SelectDistinct(System.FormattableString) nameWithType: ISelectDistinctBuilder.SelectDistinct(FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.SelectDistinct* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.SelectDistinct* name: SelectDistinct - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectDistinctBuilder_SelectDistinct_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectDistinctBuilder_SelectDistinct_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.SelectDistinct isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectDistinctBuilder.SelectDistinct nameWithType: ISelectDistinctBuilder.SelectDistinct -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilder name: ISelectFromBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilder nameWithType: ISelectFromBuilder -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry name: ISelectFromBuilderEntry - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry nameWithType: ISelectFromBuilderEntry -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.From(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.From(System.FormattableString) name: From(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectFromBuilderEntry_From_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectFromBuilderEntry_From_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.From(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.From(System.FormattableString) nameWithType: ISelectFromBuilderEntry.From(FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.From* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.From* name: From - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectFromBuilderEntry_From_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_ISelectFromBuilderEntry_From_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.From isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISelectFromBuilderEntry.From nameWithType: ISelectFromBuilderEntry.From -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilder name: ISimpleFluentBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilder nameWithType: ISimpleFluentBuilder -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilderEntry +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilderEntry name: ISimpleFluentBuilderEntry - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilderEntry.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilderEntry.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilderEntry fullName: Dapper.SimpleSqlBuilder.FluentBuilder.ISimpleFluentBuilderEntry nameWithType: ISimpleFluentBuilderEntry -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder name: IUpdateBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder nameWithType: IUpdateBuilder -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.Set(System.Boolean,System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.Set(System.Boolean,System.FormattableString) name: Set(bool, FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IUpdateBuilder_Set_System_Boolean_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IUpdateBuilder_Set_System_Boolean_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.Set(System.Boolean,System.FormattableString) name.vb: Set(Boolean, FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.Set(bool, System.FormattableString) fullName.vb: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.Set(Boolean, System.FormattableString) nameWithType: IUpdateBuilder.Set(bool, FormattableString) nameWithType.vb: IUpdateBuilder.Set(Boolean, FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.Set(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.Set(System.FormattableString) name: Set(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IUpdateBuilder_Set_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IUpdateBuilder_Set_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.Set(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.Set(System.FormattableString) nameWithType: IUpdateBuilder.Set(FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.Set* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.Set* name: Set - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IUpdateBuilder_Set_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IUpdateBuilder_Set_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.Set isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilder.Set nameWithType: IUpdateBuilder.Set -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry name: IUpdateBuilderEntry - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry nameWithType: IUpdateBuilderEntry -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.Update(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.Update(System.FormattableString) name: Update(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IUpdateBuilderEntry_Update_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IUpdateBuilderEntry_Update_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.Update(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.Update(System.FormattableString) nameWithType: IUpdateBuilderEntry.Update(FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.Update* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.Update* name: Update - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IUpdateBuilderEntry_Update_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.html#Dapper_SimpleSqlBuilder_FluentBuilder_IUpdateBuilderEntry_Update_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.Update isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IUpdateBuilderEntry.Update nameWithType: IUpdateBuilderEntry.Update -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder name: IWhereBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder nameWithType: IWhereBuilder -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhere(System.Boolean,System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhere(System.Boolean,System.FormattableString) name: OrWhere(bool, FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhere_System_Boolean_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhere_System_Boolean_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhere(System.Boolean,System.FormattableString) name.vb: OrWhere(Boolean, FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhere(bool, System.FormattableString) fullName.vb: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhere(Boolean, System.FormattableString) nameWithType: IWhereBuilder.OrWhere(bool, FormattableString) nameWithType.vb: IWhereBuilder.OrWhere(Boolean, FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhere(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhere(System.FormattableString) name: OrWhere(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhere_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhere_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhere(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhere(System.FormattableString) nameWithType: IWhereBuilder.OrWhere(FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhere* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhere* name: OrWhere - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhere_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhere_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhere isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhere nameWithType: IWhereBuilder.OrWhere -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhereFilter +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhereFilter name: OrWhereFilter() - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhereFilter + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhereFilter commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhereFilter fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhereFilter() nameWithType: IWhereBuilder.OrWhereFilter() -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhereFilter(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhereFilter(System.FormattableString) name: OrWhereFilter(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhereFilter_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhereFilter_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhereFilter(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhereFilter(System.FormattableString) nameWithType: IWhereBuilder.OrWhereFilter(FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhereFilter* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhereFilter* name: OrWhereFilter - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhereFilter_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_OrWhereFilter_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhereFilter isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.OrWhereFilter nameWithType: IWhereBuilder.OrWhereFilter -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.Where(System.Boolean,System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.Where(System.Boolean,System.FormattableString) name: Where(bool, FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_Where_System_Boolean_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_Where_System_Boolean_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.Where(System.Boolean,System.FormattableString) name.vb: Where(Boolean, FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.Where(bool, System.FormattableString) fullName.vb: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.Where(Boolean, System.FormattableString) nameWithType: IWhereBuilder.Where(bool, FormattableString) nameWithType.vb: IWhereBuilder.Where(Boolean, FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.Where(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.Where(System.FormattableString) name: Where(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_Where_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_Where_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.Where(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.Where(System.FormattableString) nameWithType: IWhereBuilder.Where(FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.Where* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.Where* name: Where - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_Where_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_Where_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.Where isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.Where nameWithType: IWhereBuilder.Where -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.WhereFilter +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.WhereFilter name: WhereFilter() - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_WhereFilter + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_WhereFilter commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.WhereFilter fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.WhereFilter() nameWithType: IWhereBuilder.WhereFilter() -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.WhereFilter(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.WhereFilter(System.FormattableString) name: WhereFilter(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_WhereFilter_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_WhereFilter_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.WhereFilter(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.WhereFilter(System.FormattableString) nameWithType: IWhereBuilder.WhereFilter(FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.WhereFilter* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.WhereFilter* name: WhereFilter - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_WhereFilter_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereBuilder_WhereFilter_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.WhereFilter isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereBuilder.WhereFilter nameWithType: IWhereBuilder.WhereFilter -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder name: IWhereFilterBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html commentId: T:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder nameWithType: IWhereFilterBuilder -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter(System.Boolean,System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter(System.Boolean,System.FormattableString) name: WithFilter(bool, FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithFilter_System_Boolean_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithFilter_System_Boolean_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter(System.Boolean,System.FormattableString) name.vb: WithFilter(Boolean, FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter(bool, System.FormattableString) fullName.vb: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter(Boolean, System.FormattableString) nameWithType: IWhereFilterBuilder.WithFilter(bool, FormattableString) nameWithType.vb: IWhereFilterBuilder.WithFilter(Boolean, FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter(System.FormattableString) name: WithFilter(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithFilter_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithFilter_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter(System.FormattableString) nameWithType: IWhereFilterBuilder.WithFilter(FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter* name: WithFilter - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithFilter_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithFilter_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithFilter nameWithType: IWhereFilterBuilder.WithFilter -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter(System.Boolean,System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter(System.Boolean,System.FormattableString) name: WithOrFilter(bool, FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithOrFilter_System_Boolean_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithOrFilter_System_Boolean_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter(System.Boolean,System.FormattableString) name.vb: WithOrFilter(Boolean, FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter(bool, System.FormattableString) fullName.vb: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter(Boolean, System.FormattableString) nameWithType: IWhereFilterBuilder.WithOrFilter(bool, FormattableString) nameWithType.vb: IWhereFilterBuilder.WithOrFilter(Boolean, FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter(System.FormattableString) +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter(System.FormattableString) name: WithOrFilter(FormattableString) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithOrFilter_System_FormattableString_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithOrFilter_System_FormattableString_ commentId: M:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter(System.FormattableString) fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter(System.FormattableString) nameWithType: IWhereFilterBuilder.WithOrFilter(FormattableString) -- uid: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter* +- uid: netstd2.Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter* name: WithOrFilter - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithOrFilter_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.html#Dapper_SimpleSqlBuilder_FluentBuilder_IWhereFilterBuilder_WithOrFilter_ commentId: Overload:Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter isSpec: "True" fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IWhereFilterBuilder.WithOrFilter nameWithType: IWhereFilterBuilder.WithOrFilter -- uid: Dapper.SimpleSqlBuilder.ISimpleParameterInfo +- uid: netstd2.Dapper.SimpleSqlBuilder.ISimpleParameterInfo name: ISimpleParameterInfo - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html commentId: T:Dapper.SimpleSqlBuilder.ISimpleParameterInfo fullName: Dapper.SimpleSqlBuilder.ISimpleParameterInfo nameWithType: ISimpleParameterInfo -- uid: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.DbType +- uid: netstd2.Dapper.SimpleSqlBuilder.ISimpleParameterInfo.DbType name: DbType - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_DbType + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_DbType commentId: P:Dapper.SimpleSqlBuilder.ISimpleParameterInfo.DbType fullName: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.DbType nameWithType: ISimpleParameterInfo.DbType -- uid: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.DbType* +- uid: netstd2.Dapper.SimpleSqlBuilder.ISimpleParameterInfo.DbType* name: DbType - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_DbType_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_DbType_ commentId: Overload:Dapper.SimpleSqlBuilder.ISimpleParameterInfo.DbType isSpec: "True" fullName: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.DbType nameWithType: ISimpleParameterInfo.DbType -- uid: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Precision +- uid: netstd2.Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Precision name: Precision - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Precision + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Precision commentId: P:Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Precision fullName: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Precision nameWithType: ISimpleParameterInfo.Precision -- uid: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Precision* +- uid: netstd2.Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Precision* name: Precision - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Precision_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Precision_ commentId: Overload:Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Precision isSpec: "True" fullName: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Precision nameWithType: ISimpleParameterInfo.Precision -- uid: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Scale +- uid: netstd2.Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Scale name: Scale - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Scale + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Scale commentId: P:Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Scale fullName: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Scale nameWithType: ISimpleParameterInfo.Scale -- uid: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Scale* +- uid: netstd2.Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Scale* name: Scale - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Scale_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Scale_ commentId: Overload:Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Scale isSpec: "True" fullName: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Scale nameWithType: ISimpleParameterInfo.Scale -- uid: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Size +- uid: netstd2.Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Size name: Size - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Size + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Size commentId: P:Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Size fullName: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Size nameWithType: ISimpleParameterInfo.Size -- uid: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Size* +- uid: netstd2.Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Size* name: Size - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Size_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Size_ commentId: Overload:Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Size isSpec: "True" fullName: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Size nameWithType: ISimpleParameterInfo.Size -- uid: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Value +- uid: netstd2.Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Value name: Value - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Value + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Value commentId: P:Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Value fullName: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Value nameWithType: ISimpleParameterInfo.Value -- uid: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Value* +- uid: netstd2.Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Value* name: Value - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Value_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.ISimpleParameterInfo.html#Dapper_SimpleSqlBuilder_ISimpleParameterInfo_Value_ commentId: Overload:Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Value isSpec: "True" fullName: Dapper.SimpleSqlBuilder.ISimpleParameterInfo.Value nameWithType: ISimpleParameterInfo.Value -- uid: Dapper.SimpleSqlBuilder.ISqlBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder.ISqlBuilder name: ISqlBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.ISqlBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.ISqlBuilder.html commentId: T:Dapper.SimpleSqlBuilder.ISqlBuilder fullName: Dapper.SimpleSqlBuilder.ISqlBuilder nameWithType: ISqlBuilder -- uid: Dapper.SimpleSqlBuilder.ISqlBuilder.ParameterNames +- uid: netstd2.Dapper.SimpleSqlBuilder.ISqlBuilder.ParameterNames name: ParameterNames - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_ParameterNames + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_ParameterNames commentId: P:Dapper.SimpleSqlBuilder.ISqlBuilder.ParameterNames fullName: Dapper.SimpleSqlBuilder.ISqlBuilder.ParameterNames nameWithType: ISqlBuilder.ParameterNames -- uid: Dapper.SimpleSqlBuilder.ISqlBuilder.ParameterNames* +- uid: netstd2.Dapper.SimpleSqlBuilder.ISqlBuilder.ParameterNames* name: ParameterNames - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_ParameterNames_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_ParameterNames_ commentId: Overload:Dapper.SimpleSqlBuilder.ISqlBuilder.ParameterNames isSpec: "True" fullName: Dapper.SimpleSqlBuilder.ISqlBuilder.ParameterNames nameWithType: ISqlBuilder.ParameterNames -- uid: Dapper.SimpleSqlBuilder.ISqlBuilder.Parameters +- uid: netstd2.Dapper.SimpleSqlBuilder.ISqlBuilder.Parameters name: Parameters - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_Parameters + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_Parameters commentId: P:Dapper.SimpleSqlBuilder.ISqlBuilder.Parameters fullName: Dapper.SimpleSqlBuilder.ISqlBuilder.Parameters nameWithType: ISqlBuilder.Parameters -- uid: Dapper.SimpleSqlBuilder.ISqlBuilder.Parameters* +- uid: netstd2.Dapper.SimpleSqlBuilder.ISqlBuilder.Parameters* name: Parameters - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_Parameters_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_Parameters_ commentId: Overload:Dapper.SimpleSqlBuilder.ISqlBuilder.Parameters isSpec: "True" fullName: Dapper.SimpleSqlBuilder.ISqlBuilder.Parameters nameWithType: ISqlBuilder.Parameters -- uid: Dapper.SimpleSqlBuilder.ISqlBuilder.Sql +- uid: netstd2.Dapper.SimpleSqlBuilder.ISqlBuilder.Sql name: Sql - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_Sql + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_Sql commentId: P:Dapper.SimpleSqlBuilder.ISqlBuilder.Sql fullName: Dapper.SimpleSqlBuilder.ISqlBuilder.Sql nameWithType: ISqlBuilder.Sql -- uid: Dapper.SimpleSqlBuilder.ISqlBuilder.Sql* +- uid: netstd2.Dapper.SimpleSqlBuilder.ISqlBuilder.Sql* name: Sql - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_Sql_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.ISqlBuilder.html#Dapper_SimpleSqlBuilder_ISqlBuilder_Sql_ commentId: Overload:Dapper.SimpleSqlBuilder.ISqlBuilder.Sql isSpec: "True" fullName: Dapper.SimpleSqlBuilder.ISqlBuilder.Sql nameWithType: ISqlBuilder.Sql -- uid: Dapper.SimpleSqlBuilder.SimpleBuilder +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleBuilder name: SimpleBuilder - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilder.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilder.html commentId: T:Dapper.SimpleSqlBuilder.SimpleBuilder fullName: Dapper.SimpleSqlBuilder.SimpleBuilder nameWithType: SimpleBuilder -- uid: Dapper.SimpleSqlBuilder.SimpleBuilder.Create(System.FormattableString,System.String,System.Nullable{System.Boolean}) +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleBuilder.Create(System.FormattableString,System.String,System.Nullable{System.Boolean}) name: Create(FormattableString?, string?, bool?) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilder.html#Dapper_SimpleSqlBuilder_SimpleBuilder_Create_System_FormattableString_System_String_System_Nullable_System_Boolean__ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilder.html#Dapper_SimpleSqlBuilder_SimpleBuilder_Create_System_FormattableString_System_String_System_Nullable_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.SimpleBuilder.Create(System.FormattableString,System.String,System.Nullable{System.Boolean}) name.vb: Create(FormattableString, String, Boolean?) fullName: Dapper.SimpleSqlBuilder.SimpleBuilder.Create(System.FormattableString?, string?, bool?) fullName.vb: Dapper.SimpleSqlBuilder.SimpleBuilder.Create(System.FormattableString, String, Boolean?) nameWithType: SimpleBuilder.Create(FormattableString?, string?, bool?) nameWithType.vb: SimpleBuilder.Create(FormattableString, String, Boolean?) -- uid: Dapper.SimpleSqlBuilder.SimpleBuilder.Create* +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleBuilder.Create* name: Create - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilder.html#Dapper_SimpleSqlBuilder_SimpleBuilder_Create_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilder.html#Dapper_SimpleSqlBuilder_SimpleBuilder_Create_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleBuilder.Create isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleBuilder.Create nameWithType: SimpleBuilder.Create -- uid: Dapper.SimpleSqlBuilder.SimpleBuilder.CreateFluent(System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean}) +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleBuilder.CreateFluent(System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean}) name: CreateFluent(string?, bool?, bool?) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilder.html#Dapper_SimpleSqlBuilder_SimpleBuilder_CreateFluent_System_String_System_Nullable_System_Boolean__System_Nullable_System_Boolean__ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilder.html#Dapper_SimpleSqlBuilder_SimpleBuilder_CreateFluent_System_String_System_Nullable_System_Boolean__System_Nullable_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.SimpleBuilder.CreateFluent(System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean}) name.vb: CreateFluent(String, Boolean?, Boolean?) fullName: Dapper.SimpleSqlBuilder.SimpleBuilder.CreateFluent(string?, bool?, bool?) fullName.vb: Dapper.SimpleSqlBuilder.SimpleBuilder.CreateFluent(String, Boolean?, Boolean?) nameWithType: SimpleBuilder.CreateFluent(string?, bool?, bool?) nameWithType.vb: SimpleBuilder.CreateFluent(String, Boolean?, Boolean?) -- uid: Dapper.SimpleSqlBuilder.SimpleBuilder.CreateFluent* +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleBuilder.CreateFluent* name: CreateFluent - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilder.html#Dapper_SimpleSqlBuilder_SimpleBuilder_CreateFluent_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilder.html#Dapper_SimpleSqlBuilder_SimpleBuilder_CreateFluent_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleBuilder.CreateFluent isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleBuilder.CreateFluent nameWithType: SimpleBuilder.CreateFluent -- uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleBuilderSettings name: SimpleBuilderSettings - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html commentId: T:Dapper.SimpleSqlBuilder.SimpleBuilderSettings fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings nameWithType: SimpleBuilderSettings -- uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Configure(System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean}) +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Configure(System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean}) name: Configure(string?, string?, bool?, bool?) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_Configure_System_String_System_String_System_Nullable_System_Boolean__System_Nullable_System_Boolean__ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_Configure_System_String_System_String_System_Nullable_System_Boolean__System_Nullable_System_Boolean__ commentId: M:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Configure(System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean}) name.vb: Configure(String, String, Boolean?, Boolean?) fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Configure(string?, string?, bool?, bool?) fullName.vb: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Configure(String, String, Boolean?, Boolean?) nameWithType: SimpleBuilderSettings.Configure(string?, string?, bool?, bool?) nameWithType.vb: SimpleBuilderSettings.Configure(String, String, Boolean?, Boolean?) -- uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Configure* +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Configure* name: Configure - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_Configure_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_Configure_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Configure isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Configure nameWithType: SimpleBuilderSettings.Configure -- uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterNameTemplate +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterNameTemplate name: DatabaseParameterNameTemplate - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_DatabaseParameterNameTemplate + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_DatabaseParameterNameTemplate commentId: P:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterNameTemplate fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterNameTemplate nameWithType: SimpleBuilderSettings.DatabaseParameterNameTemplate -- uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterNameTemplate* +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterNameTemplate* name: DatabaseParameterNameTemplate - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_DatabaseParameterNameTemplate_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_DatabaseParameterNameTemplate_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterNameTemplate isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterNameTemplate nameWithType: SimpleBuilderSettings.DatabaseParameterNameTemplate -- uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterPrefix +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterPrefix name: DatabaseParameterPrefix - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_DatabaseParameterPrefix + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_DatabaseParameterPrefix commentId: P:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterPrefix fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterPrefix nameWithType: SimpleBuilderSettings.DatabaseParameterPrefix -- uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterPrefix* +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterPrefix* name: DatabaseParameterPrefix - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_DatabaseParameterPrefix_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_DatabaseParameterPrefix_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterPrefix isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.DatabaseParameterPrefix nameWithType: SimpleBuilderSettings.DatabaseParameterPrefix -- uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Instance +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Instance name: Instance - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_Instance + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_Instance commentId: P:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Instance fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Instance nameWithType: SimpleBuilderSettings.Instance -- uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Instance* +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Instance* name: Instance - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_Instance_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_Instance_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Instance isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.Instance nameWithType: SimpleBuilderSettings.Instance -- uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.ReuseParameters +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleBuilderSettings.ReuseParameters name: ReuseParameters - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_ReuseParameters + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_ReuseParameters commentId: P:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.ReuseParameters fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.ReuseParameters nameWithType: SimpleBuilderSettings.ReuseParameters -- uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.ReuseParameters* +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleBuilderSettings.ReuseParameters* name: ReuseParameters - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_ReuseParameters_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_ReuseParameters_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.ReuseParameters isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.ReuseParameters nameWithType: SimpleBuilderSettings.ReuseParameters -- uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.UseLowerCaseClauses +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleBuilderSettings.UseLowerCaseClauses name: UseLowerCaseClauses - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_UseLowerCaseClauses + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_UseLowerCaseClauses commentId: P:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.UseLowerCaseClauses fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.UseLowerCaseClauses nameWithType: SimpleBuilderSettings.UseLowerCaseClauses -- uid: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.UseLowerCaseClauses* +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleBuilderSettings.UseLowerCaseClauses* name: UseLowerCaseClauses - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_UseLowerCaseClauses_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleBuilderSettings.html#Dapper_SimpleSqlBuilder_SimpleBuilderSettings_UseLowerCaseClauses_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleBuilderSettings.UseLowerCaseClauses isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleBuilderSettings.UseLowerCaseClauses nameWithType: SimpleBuilderSettings.UseLowerCaseClauses -- uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleParameterInfo name: SimpleParameterInfo - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html commentId: T:Dapper.SimpleSqlBuilder.SimpleParameterInfo fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo nameWithType: SimpleParameterInfo -- uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.#ctor(System.Object,System.Nullable{System.Data.DbType},System.Nullable{System.Int32},System.Nullable{System.Byte},System.Nullable{System.Byte}) +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleParameterInfo.#ctor(System.Object,System.Nullable{System.Data.DbType},System.Nullable{System.Int32},System.Nullable{System.Byte},System.Nullable{System.Byte}) name: SimpleParameterInfo(object?, DbType?, int?, byte?, byte?) - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo__ctor_System_Object_System_Nullable_System_Data_DbType__System_Nullable_System_Int32__System_Nullable_System_Byte__System_Nullable_System_Byte__ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo__ctor_System_Object_System_Nullable_System_Data_DbType__System_Nullable_System_Int32__System_Nullable_System_Byte__System_Nullable_System_Byte__ commentId: M:Dapper.SimpleSqlBuilder.SimpleParameterInfo.#ctor(System.Object,System.Nullable{System.Data.DbType},System.Nullable{System.Int32},System.Nullable{System.Byte},System.Nullable{System.Byte}) name.vb: New(Object, DbType?, Integer?, Byte?, Byte?) fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo.SimpleParameterInfo(object?, System.Data.DbType?, int?, byte?, byte?) fullName.vb: Dapper.SimpleSqlBuilder.SimpleParameterInfo.New(Object, System.Data.DbType?, Integer?, Byte?, Byte?) nameWithType: SimpleParameterInfo.SimpleParameterInfo(object?, DbType?, int?, byte?, byte?) nameWithType.vb: SimpleParameterInfo.New(Object, DbType?, Integer?, Byte?, Byte?) -- uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.#ctor* +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleParameterInfo.#ctor* name: SimpleParameterInfo - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo__ctor_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo__ctor_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleParameterInfo.#ctor isSpec: "True" name.vb: New @@ -1172,67 +1172,67 @@ references: fullName.vb: Dapper.SimpleSqlBuilder.SimpleParameterInfo.New nameWithType: SimpleParameterInfo.SimpleParameterInfo nameWithType.vb: SimpleParameterInfo.New -- uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.DbType +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleParameterInfo.DbType name: DbType - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_DbType + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_DbType commentId: P:Dapper.SimpleSqlBuilder.SimpleParameterInfo.DbType fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo.DbType nameWithType: SimpleParameterInfo.DbType -- uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.DbType* +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleParameterInfo.DbType* name: DbType - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_DbType_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_DbType_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleParameterInfo.DbType isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo.DbType nameWithType: SimpleParameterInfo.DbType -- uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Precision +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleParameterInfo.Precision name: Precision - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Precision + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Precision commentId: P:Dapper.SimpleSqlBuilder.SimpleParameterInfo.Precision fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Precision nameWithType: SimpleParameterInfo.Precision -- uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Precision* +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleParameterInfo.Precision* name: Precision - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Precision_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Precision_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleParameterInfo.Precision isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Precision nameWithType: SimpleParameterInfo.Precision -- uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Scale +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleParameterInfo.Scale name: Scale - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Scale + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Scale commentId: P:Dapper.SimpleSqlBuilder.SimpleParameterInfo.Scale fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Scale nameWithType: SimpleParameterInfo.Scale -- uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Scale* +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleParameterInfo.Scale* name: Scale - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Scale_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Scale_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleParameterInfo.Scale isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Scale nameWithType: SimpleParameterInfo.Scale -- uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Size +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleParameterInfo.Size name: Size - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Size + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Size commentId: P:Dapper.SimpleSqlBuilder.SimpleParameterInfo.Size fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Size nameWithType: SimpleParameterInfo.Size -- uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Size* +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleParameterInfo.Size* name: Size - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Size_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Size_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleParameterInfo.Size isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Size nameWithType: SimpleParameterInfo.Size -- uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Value +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleParameterInfo.Value name: Value - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Value + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Value commentId: P:Dapper.SimpleSqlBuilder.SimpleParameterInfo.Value fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Value nameWithType: SimpleParameterInfo.Value -- uid: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Value* +- uid: netstd2.Dapper.SimpleSqlBuilder.SimpleParameterInfo.Value* name: Value - href: api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Value_ + href: http://localhost:8080/api-docs/netstd2/Dapper.SimpleSqlBuilder.SimpleParameterInfo.html#Dapper_SimpleSqlBuilder_SimpleParameterInfo_Value_ commentId: Overload:Dapper.SimpleSqlBuilder.SimpleParameterInfo.Value isSpec: "True" fullName: Dapper.SimpleSqlBuilder.SimpleParameterInfo.Value diff --git a/docs/github-pages/xrefs/xrefmap.yml b/docs/github-pages/xrefs/xrefmap.yml index 23a6508..8e75a9e 100644 --- a/docs/github-pages/xrefs/xrefmap.yml +++ b/docs/github-pages/xrefs/xrefmap.yml @@ -1,15 +1,15 @@ ### YamlMime:XRefMap sorted: true references: - - uid: "Dapper.DynamicParameters" - name: "DynamicParameters" - href: "https://github.com/DapperLib/Dapper/blob/main/Dapper/DynamicParameters.cs" - fullName: "Dapper.DynamicParameters" - - uid: "Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilderFormatter" - name: "IFluentBuilderFormatter" - href: "https://github.com/mishael-o/Dapper.SimpleSqlBuilder/blob/main/src/Builder/SimpleSqlBuilder/FluentBuilder/FluentSqlBuilder.Formatter.cs" - fullName: "Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilderFormatter" - - uid: "Dapper.SimpleSqlBuilder.IBuilderFormatter" - name: "IBuilderFormatter" - href: "https://github.com/mishael-o/Dapper.SimpleSqlBuilder/blob/main/src/Builder/SimpleSqlBuilder/Core/IBuilderFormatter.cs" - fullName: "Dapper.SimpleSqlBuilder.IBuilderFormatter" + - uid: Dapper.DynamicParameters + name: DynamicParameters + href: https://github.com/DapperLib/Dapper/blob/main/Dapper/DynamicParameters.cs + fullName: Dapper.DynamicParameters + - uid: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilderFormatter + name: IFluentBuilderFormatter + href: https://github.com/mishael-o/Dapper.SimpleSqlBuilder/blob/main/src/Builder/SimpleSqlBuilder/FluentBuilder/FluentSqlBuilder.Formatter.cs + fullName: Dapper.SimpleSqlBuilder.FluentBuilder.IFluentBuilderFormatter + - uid: Dapper.SimpleSqlBuilder.IBuilderFormatter + name: IBuilderFormatter + href: https://github.com/mishael-o/Dapper.SimpleSqlBuilder/blob/main/src/Builder/SimpleSqlBuilder/Core/IBuilderFormatter.cs + fullName: Dapper.SimpleSqlBuilder.IBuilderFormatter diff --git a/src/Directory.Packages.props b/src/Directory.Packages.props index 8e616b1..cd33281 100644 --- a/src/Directory.Packages.props +++ b/src/Directory.Packages.props @@ -2,69 +2,81 @@ true - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + - + - + - + - + - + - - - - - - - - - - - + - - - - - - - - - + + + - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +