Inflatable 5.0.106

dotnet add package Inflatable --version 5.0.106
                    
NuGet\Install-Package Inflatable -Version 5.0.106
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Inflatable" Version="5.0.106" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Inflatable" Version="5.0.106" />
                    
Directory.Packages.props
<PackageReference Include="Inflatable" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Inflatable --version 5.0.106
                    
#r "nuget: Inflatable, 5.0.106"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Inflatable@5.0.106
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Inflatable&version=5.0.106
                    
Install as a Cake Addin
#tool nuget:?package=Inflatable&version=5.0.106
                    
Install as a Cake Tool

Inflatable

Build status

Inflatable is a feature-rich ORM (Object-Relational Mapping) library for .NET applications. It provides seamless integration with your data access layer, allowing you to interact with your database using a convenient and expressive API.

Getting Started

To use Inflatable, you need to wire it up with you ServiceCollection. Follow the steps below to configure your application:

  1. Install the Inflatable package from NuGet.

  2. In your application's startup code, add the following lines to configure Canister:

    var services = new ServiceCollection();
    services.AddCanisterModules();
    // ...
    

    The AddCanisterModules() extension method registers Inflatable with the IoC container.

  3. With these steps completed, Inflatable is ready to be used within your application.

Basic Usage

The primary class of interest in Inflatable is the DbContext class, which provides a rich set of features for querying and interacting with your database.

Querying Data

To retrieve data from the database, use the DbContext<T> class with the CreateQuery() method:

var results = DbContext<MyPoco>.CreateQuery().Where(x => x.MyProperty == 12).ToList();

The CreateQuery() method returns an IQueryable<T>, allowing you to chain additional query operations such as Where, Select, OrderBy, Distinct, First, Single, Take, and their variations. Please note that functions like GroupBy, Union, and Include are not currently implemented.

For more complex queries or when you need to execute raw SQL, you can use the ExecuteAsync() method:

var results = await DbContext<MyPoco>.ExecuteAsync("SELECT * FROM MyTable", CommandType.Text, "MyConnectionString");

Saving and Deleting Objects

To save or delete an object, you need to create an instance of DbContext or a Session object:

await new DbContext<MyPoco>().Save(myObject).ExecuteAsync();

Alternatively, you can resolve the DbContext from the service provider in your application.

Documentation

For detailed information on using Inflatable and its advanced features, refer to the documentation available on the project's website.

Contributing

Contributions are welcome! If you have any bug reports, feature requests, or would like to contribute to the project, please check out the contribution guidelines.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.0.106 29 11/24/2025
5.0.105 379 11/19/2025
5.0.104 393 11/18/2025
5.0.103 226 11/14/2025
5.0.102 246 11/14/2025
5.0.101 271 11/13/2025
5.0.100 277 11/13/2025
5.0.99 176 11/7/2025
5.0.98 175 11/6/2025
5.0.97 191 11/3/2025
5.0.96 173 10/31/2025
5.0.95 184 10/20/2025
5.0.94 165 10/20/2025
5.0.93 165 10/20/2025
5.0.92 171 10/20/2025
5.0.91 158 10/17/2025
5.0.90 180 10/16/2025
5.0.89 186 10/15/2025
5.0.88 159 10/15/2025
5.0.87 181 10/14/2025
5.0.86 177 10/13/2025
5.0.85 168 10/13/2025
5.0.84 170 10/13/2025
5.0.83 171 10/12/2025
5.0.82 202 10/1/2025
5.0.81 188 9/30/2025
5.0.80 185 9/29/2025
5.0.79 163 9/26/2025
5.0.78 193 9/25/2025
5.0.77 305 9/19/2025
5.0.76 313 9/18/2025
5.0.75 305 9/18/2025
5.0.74 316 9/17/2025
5.0.73 162 9/12/2025
5.0.72 179 9/11/2025
5.0.71 166 9/10/2025
5.0.70 170 9/10/2025
5.0.69 235 8/20/2025
5.0.68 170 8/20/2025
5.0.67 175 8/20/2025
5.0.66 173 8/20/2025
5.0.65 185 8/19/2025
5.0.64 180 8/18/2025
5.0.63 168 8/18/2025
5.0.62 171 8/18/2025
5.0.61 169 8/18/2025
5.0.60 265 8/7/2025
5.0.59 251 8/7/2025
5.0.58 261 8/6/2025
5.0.57 276 8/5/2025
5.0.56 271 8/5/2025
5.0.55 266 8/5/2025
5.0.54 267 8/5/2025
5.0.53 207 8/4/2025
5.0.52 203 8/4/2025
5.0.51 205 8/4/2025
5.0.50 203 8/4/2025
5.0.49 204 7/29/2025
5.0.48 139 7/29/2025
5.0.47 144 7/29/2025
5.0.46 138 7/29/2025
5.0.45 178 7/18/2025
5.0.44 184 7/17/2025
5.0.43 183 7/17/2025
5.0.42 185 7/16/2025
5.0.41 187 7/16/2025
5.0.40 201 7/9/2025
5.0.39 188 7/9/2025
5.0.38 207 7/1/2025
5.0.36 190 7/1/2025
5.0.35 189 6/30/2025
5.0.33 186 6/30/2025
5.0.32 195 6/30/2025
5.0.31 199 6/27/2025
5.0.30 175 6/27/2025
5.0.29 167 6/27/2025
5.0.28 198 6/27/2025
5.0.25 234 2/4/2025
5.0.24 165 1/31/2025
5.0.23 167 1/30/2025
5.0.22 163 1/29/2025
5.0.21 173 1/27/2025
5.0.20 164 1/24/2025
5.0.19 167 1/23/2025
5.0.18 167 1/17/2025
5.0.17 157 1/16/2025
5.0.16 132 1/15/2025
5.0.15 135 1/14/2025
5.0.14 144 1/13/2025
5.0.13 149 1/10/2025
5.0.12 187 12/18/2024
5.0.11 173 12/17/2024
5.0.10 187 12/11/2024
5.0.9 182 12/10/2024
5.0.8 161 12/9/2024
5.0.7 190 12/6/2024
5.0.6 183 11/27/2024
5.0.5 172 11/27/2024
5.0.4 171 11/26/2024
5.0.3 169 11/25/2024
5.0.2 178 11/24/2024
4.0.244 181 10/29/2024
4.0.243 185 10/25/2024
4.0.242 227 9/27/2024
4.0.241 204 9/23/2024
4.0.240 198 9/6/2024
4.0.239 194 8/29/2024
4.0.238 227 8/27/2024
4.0.237 210 8/26/2024
4.0.236 218 8/22/2024
4.0.235 215 8/21/2024
4.0.234 209 8/20/2024
4.0.233 195 8/15/2024
4.0.232 170 8/5/2024
4.0.231 183 8/1/2024
4.0.230 194 7/25/2024
4.0.229 190 7/11/2024
4.0.228 185 7/10/2024
4.0.227 204 7/10/2024
4.0.226 199 7/5/2024
4.0.225 197 6/27/2024
4.0.224 200 6/26/2024
4.0.223 182 6/25/2024
4.0.222 186 6/24/2024
4.0.220 201 6/21/2024
4.0.219 193 6/19/2024
4.0.218 194 6/18/2024
4.0.217 210 6/17/2024
4.0.216 184 6/14/2024
4.0.215 217 6/13/2024
4.0.214 201 5/31/2024
4.0.213 197 5/30/2024
4.0.212 200 5/27/2024
4.0.211 214 5/23/2024
4.0.210 200 5/17/2024
4.0.209 208 5/16/2024
4.0.208 221 5/8/2024
4.0.207 232 5/7/2024
4.0.206 197 5/6/2024
4.0.205 181 5/3/2024
4.0.204 172 5/2/2024
4.0.203 170 5/2/2024
4.0.202 175 5/2/2024
4.0.201 185 5/2/2024
4.0.198 213 5/1/2024
4.0.197 213 4/30/2024
4.0.196 195 4/29/2024
4.0.195 186 4/29/2024
4.0.194 203 4/25/2024
4.0.193 222 4/15/2024
4.0.192 197 4/12/2024
4.0.191 211 4/12/2024
4.0.190 214 4/11/2024
4.0.189 210 4/9/2024
4.0.188 213 4/2/2024
4.0.187 226 4/1/2024
4.0.186 204 3/29/2024
4.0.185 244 3/22/2024
4.0.184 197 3/19/2024
4.0.183 206 3/18/2024
4.0.182 212 3/15/2024
4.0.181 222 3/14/2024
4.0.180 227 3/12/2024
4.0.179 222 3/11/2024
4.0.178 234 3/8/2024
4.0.177 221 3/7/2024
4.0.176 191 3/6/2024
4.0.175 227 3/5/2024
4.0.174 205 3/4/2024
4.0.173 213 3/4/2024
4.0.172 214 3/1/2024
4.0.171 204 2/29/2024
4.0.170 207 2/28/2024
4.0.169 208 2/27/2024
4.0.168 206 2/26/2024
4.0.167 211 2/23/2024
4.0.166 202 2/22/2024
4.0.165 213 2/21/2024
4.0.164 201 2/20/2024
4.0.163 221 2/19/2024
4.0.162 206 2/19/2024
4.0.161 216 2/16/2024
4.0.160 203 2/16/2024
4.0.159 219 2/15/2024
4.0.158 213 2/14/2024
4.0.157 197 2/13/2024
4.0.156 190 2/12/2024
4.0.155 216 2/9/2024
4.0.154 203 2/8/2024
4.0.153 201 2/7/2024
4.0.152 193 2/7/2024
4.0.151 202 2/6/2024
4.0.150 199 2/5/2024
4.0.149 176 2/2/2024
4.0.148 192 2/1/2024
4.0.147 200 2/1/2024
4.0.146 206 1/31/2024
4.0.145 179 1/30/2024
4.0.144 182 1/29/2024
4.0.143 213 1/26/2024
4.0.142 189 1/25/2024
4.0.141 193 1/24/2024
4.0.140 201 1/23/2024
4.0.139 187 1/19/2024
4.0.138 205 1/19/2024
4.0.137 206 1/18/2024
4.0.136 206 1/17/2024
4.0.135 199 1/16/2024
4.0.134 210 1/16/2024
4.0.133 209 1/15/2024
4.0.132 208 1/12/2024
4.0.131 186 1/11/2024
4.0.130 197 1/10/2024
4.0.129 230 1/9/2024
4.0.128 208 1/8/2024
4.0.127 224 1/5/2024
4.0.126 237 12/29/2023
4.0.125 233 12/28/2023
4.0.124 234 12/27/2023
4.0.123 200 12/26/2023
4.0.122 229 12/26/2023
4.0.121 210 12/25/2023
4.0.120 194 12/25/2023
4.0.119 219 12/22/2023
4.0.118 203 12/21/2023
4.0.117 211 12/20/2023
4.0.116 188 12/19/2023
4.0.115 208 12/18/2023
4.0.114 200 12/15/2023
4.0.113 192 12/14/2023
4.0.112 173 12/14/2023
4.0.111 211 12/13/2023
4.0.106 232 12/8/2023
4.0.105 180 12/7/2023
4.0.104 179 12/6/2023
4.0.103 190 12/6/2023
4.0.102 185 12/5/2023
4.0.101 171 12/5/2023
4.0.100 184 11/27/2023
4.0.99 168 11/24/2023
4.0.98 179 11/22/2023
4.0.97 176 11/21/2023
4.0.96 198 11/20/2023
4.0.95 182 11/20/2023
4.0.94 675 11/17/2023
4.0.93 170 11/16/2023
4.0.92 166 11/14/2023
4.0.91 168 11/13/2023
4.0.90 173 11/10/2023
4.0.89 186 11/9/2023
4.0.88 190 11/9/2023
4.0.87 178 11/8/2023
4.0.86 165 11/7/2023
4.0.85 156 11/6/2023
4.0.84 199 11/5/2023
4.0.83 163 11/3/2023
4.0.82 161 11/3/2023
4.0.81 177 11/2/2023
4.0.80 197 11/1/2023
4.0.77 177 10/31/2023
4.0.76 207 10/30/2023
4.0.75 178 10/27/2023
4.0.74 195 10/26/2023
4.0.73 188 10/18/2023
4.0.72 181 10/17/2023
4.0.71 199 10/17/2023
4.0.70 201 10/16/2023
4.0.69 219 10/13/2023
4.0.68 174 10/13/2023
4.0.67 186 10/12/2023
4.0.66 213 10/6/2023
4.0.65 177 10/5/2023
4.0.64 184 9/27/2023
4.0.63 180 9/26/2023
4.0.62 191 9/25/2023
4.0.61 192 9/21/2023
4.0.60 166 9/20/2023
4.0.59 188 9/19/2023
4.0.58 185 9/18/2023
4.0.55 205 9/15/2023
4.0.54 193 9/14/2023
4.0.53 181 9/13/2023
4.0.52 242 9/12/2023
4.0.51 213 9/11/2023
4.0.50 236 9/11/2023
4.0.49 222 9/11/2023
4.0.48 278 9/8/2023
4.0.47 202 9/7/2023
4.0.46 255 9/6/2023
4.0.45 200 9/5/2023
4.0.44 193 9/5/2023
4.0.43 208 9/4/2023
4.0.42 244 9/1/2023
4.0.41 238 8/31/2023
4.0.40 241 8/30/2023
4.0.39 219 8/30/2023
4.0.38 219 8/29/2023
4.0.37 269 8/28/2023
4.0.36 255 8/25/2023
4.0.35 237 8/24/2023
4.0.34 243 8/23/2023
4.0.33 210 8/21/2023
4.0.32 201 8/18/2023
4.0.31 238 8/17/2023
4.0.30 189 8/17/2023
4.0.29 212 8/17/2023
4.0.28 220 8/17/2023
4.0.27 237 8/11/2023
4.0.26 241 8/10/2023
4.0.25 236 8/9/2023
4.0.24 206 8/8/2023
4.0.23 239 8/8/2023
4.0.22 312 8/8/2023
4.0.21 242 8/7/2023
4.0.20 248 8/4/2023
4.0.19 249 8/3/2023
4.0.18 262 7/27/2023
4.0.17 261 7/26/2023
4.0.16 282 7/21/2023
4.0.15 255 7/20/2023
4.0.14 257 7/19/2023
4.0.13 240 7/18/2023
4.0.12 260 7/18/2023
4.0.11 237 7/18/2023
4.0.10 247 7/18/2023
4.0.9 269 7/17/2023
4.0.7 377 2/10/2023
4.0.6 387 2/6/2023
4.0.5 405 1/30/2023
4.0.4 425 1/30/2023
4.0.3 384 1/27/2023
4.0.2 403 12/13/2022
4.0.1 438 12/13/2022
3.0.111 645 9/17/2022
3.0.110 609 8/11/2022
3.0.109 634 6/10/2022
3.0.107 690 4/20/2022
3.0.106 646 1/11/2022
3.0.105 580 1/10/2022
3.0.104 476 12/7/2021
3.0.103 572 10/27/2021
3.0.102 574 6/17/2021
3.0.100 615 6/17/2021
3.0.95 624 6/16/2021
3.0.91 607 1/14/2021
3.0.90 634 1/7/2021
3.0.89 677 12/16/2020
3.0.88 639 12/15/2020
3.0.87 729 12/10/2020
3.0.86 661 12/7/2020
3.0.84 686 12/7/2020
3.0.80 735 10/2/2020
3.0.79 842 10/1/2020
3.0.78 731 9/29/2020
3.0.77 731 9/13/2020
3.0.76 740 6/19/2020
3.0.75 732 6/8/2020
3.0.74 716 6/1/2020
3.0.73 755 5/13/2020
3.0.72 727 5/13/2020
3.0.70 754 5/12/2020
3.0.69 720 5/12/2020
3.0.68 749 5/12/2020
3.0.67 755 5/12/2020
3.0.41 766 4/28/2020
3.0.40 731 4/24/2020
3.0.39 732 4/16/2020
3.0.38 777 4/16/2020
3.0.37 749 4/15/2020
3.0.36 735 4/15/2020
3.0.34 816 4/11/2020
3.0.33 785 4/10/2020
3.0.32 784 4/7/2020
3.0.31 780 4/6/2020
3.0.30 795 4/5/2020
3.0.29 819 4/5/2020
3.0.28 892 4/5/2020
3.0.27 815 4/2/2020
3.0.24 770 4/1/2020
3.0.23 789 3/29/2020
3.0.22 753 3/26/2020
3.0.21 748 3/26/2020
3.0.20 686 3/25/2020
3.0.19 793 3/25/2020
3.0.18 827 3/22/2020
3.0.16 849 3/21/2020
3.0.15 762 3/16/2020
3.0.14 777 3/14/2020
3.0.13 860 3/14/2020
3.0.11 732 3/13/2020
3.0.10 756 3/13/2020
3.0.8 779 3/5/2020
3.0.7 750 2/28/2020
3.0.6 775 2/28/2020
3.0.5 782 2/22/2020
3.0.4 805 2/6/2020
3.0.3 778 2/6/2020
3.0.1 823 1/10/2020
3.0.0 799 12/26/2019
2.0.34 883 4/17/2019
2.0.33 836 4/17/2019
2.0.32 869 3/14/2019
2.0.31 937 2/22/2019
2.0.30 1,090 11/1/2018
2.0.29 1,076 10/11/2018
2.0.27 1,084 10/5/2018
2.0.26 1,075 10/2/2018
2.0.25 1,067 9/25/2018
2.0.24 1,047 9/19/2018
2.0.23 1,083 9/19/2018
2.0.22 1,117 9/18/2018
2.0.21 1,161 9/13/2018
2.0.20 1,256 8/7/2018
2.0.19 1,190 8/1/2018
2.0.18 1,230 8/1/2018
2.0.17 1,450 7/3/2018
2.0.16 1,539 6/26/2018
2.0.15 1,492 6/26/2018
2.0.14 1,457 6/14/2018
2.0.13 1,507 5/31/2018
2.0.11 1,441 5/22/2018
2.0.10 1,502 5/21/2018
2.0.9 1,617 5/21/2018
2.0.8 1,579 5/11/2018
2.0.7 1,637 2/15/2018
2.0.6 1,587 2/15/2018
2.0.5 1,617 2/13/2018
2.0.4 1,572 1/24/2018
2.0.3 1,604 1/8/2018
2.0.2 1,642 1/2/2018
1.0.83 1,598 12/15/2017
1.0.82 1,394 12/1/2017
1.0.81 1,305 11/22/2017
1.0.80 1,311 11/21/2017
1.0.79 1,364 11/21/2017
1.0.78 1,346 11/21/2017
1.0.76 1,296 11/17/2017
1.0.72 1,366 11/17/2017
1.0.71 1,303 11/17/2017
1.0.67 1,329 11/16/2017
1.0.66 1,345 11/16/2017
1.0.65 1,392 11/14/2017
1.0.63 1,319 11/14/2017
1.0.62 1,325 11/14/2017
1.0.61 1,356 11/13/2017
1.0.60 1,387 11/13/2017
1.0.55 1,409 11/13/2017
1.0.53 1,398 11/13/2017
1.0.52 1,337 11/13/2017
1.0.50 1,335 11/6/2017
1.0.49 1,328 10/24/2017
1.0.48 1,316 10/24/2017
1.0.44 1,310 10/19/2017
1.0.42 1,320 10/19/2017
1.0.40 1,311 10/18/2017
1.0.39 1,350 10/13/2017
1.0.34 1,345 10/12/2017
1.0.32 1,379 10/12/2017
1.0.31 1,297 10/11/2017
1.0.26 1,324 10/2/2017
1.0.24 1,383 9/29/2017
1.0.21 1,346 9/26/2017
1.0.19 1,326 9/25/2017
1.0.16 1,345 9/23/2017
1.0.15 1,339 9/22/2017
1.0.11 1,332 9/22/2017
1.0.10 1,347 9/22/2017
1.0.8 1,342 9/21/2017
1.0.7 1,355 9/21/2017
1.0.5 1,397 9/21/2017