Inflatable 5.0.72

dotnet add package Inflatable --version 5.0.72
                    
NuGet\Install-Package Inflatable -Version 5.0.72
                    
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.72" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Inflatable" Version="5.0.72" />
                    
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.72
                    
#r "nuget: Inflatable, 5.0.72"
                    
#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.72
                    
#: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.72
                    
Install as a Cake Addin
#tool nuget:?package=Inflatable&version=5.0.72
                    
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.72 23 9/11/2025
5.0.71 42 9/10/2025
5.0.70 37 9/10/2025
5.0.69 193 8/20/2025
5.0.68 131 8/20/2025
5.0.67 130 8/20/2025
5.0.66 132 8/20/2025
5.0.65 143 8/19/2025
5.0.64 140 8/18/2025
5.0.63 128 8/18/2025
5.0.62 128 8/18/2025
5.0.61 130 8/18/2025
5.0.60 225 8/7/2025
5.0.59 210 8/7/2025
5.0.58 221 8/6/2025
5.0.57 233 8/5/2025
5.0.56 228 8/5/2025
5.0.55 224 8/5/2025
5.0.54 226 8/5/2025
5.0.53 162 8/4/2025
5.0.52 161 8/4/2025
5.0.51 162 8/4/2025
5.0.50 161 8/4/2025
5.0.49 127 7/29/2025
5.0.48 102 7/29/2025
5.0.47 103 7/29/2025
5.0.46 102 7/29/2025
5.0.45 133 7/18/2025
5.0.44 145 7/17/2025
5.0.43 140 7/17/2025
5.0.42 152 7/16/2025
5.0.41 146 7/16/2025
5.0.40 162 7/9/2025
5.0.39 150 7/9/2025
5.0.38 164 7/1/2025
5.0.36 150 7/1/2025
5.0.35 150 6/30/2025
5.0.33 146 6/30/2025
5.0.32 156 6/30/2025
5.0.31 147 6/27/2025
5.0.30 137 6/27/2025
5.0.29 129 6/27/2025
5.0.28 155 6/27/2025
5.0.25 198 2/4/2025
5.0.24 130 1/31/2025
5.0.23 129 1/30/2025
5.0.22 124 1/29/2025
5.0.21 138 1/27/2025
5.0.20 126 1/24/2025
5.0.19 130 1/23/2025
5.0.18 130 1/17/2025
5.0.17 120 1/16/2025
5.0.16 99 1/15/2025
5.0.15 106 1/14/2025
5.0.14 108 1/13/2025
5.0.13 112 1/10/2025
5.0.12 152 12/18/2024
5.0.11 139 12/17/2024
5.0.10 139 12/11/2024
5.0.9 134 12/10/2024
5.0.8 122 12/9/2024
5.0.7 154 12/6/2024
5.0.6 150 11/27/2024
5.0.5 138 11/27/2024
5.0.4 133 11/26/2024
5.0.3 132 11/25/2024
5.0.2 144 11/24/2024
4.0.244 144 10/29/2024
4.0.243 153 10/25/2024
4.0.242 191 9/27/2024
4.0.241 160 9/23/2024
4.0.240 163 9/6/2024
4.0.239 162 8/29/2024
4.0.238 191 8/27/2024
4.0.237 176 8/26/2024
4.0.236 185 8/22/2024
4.0.235 183 8/21/2024
4.0.234 167 8/20/2024
4.0.233 171 8/15/2024
4.0.232 134 8/5/2024
4.0.231 152 8/1/2024
4.0.230 158 7/25/2024
4.0.229 152 7/11/2024
4.0.228 147 7/10/2024
4.0.227 171 7/10/2024
4.0.226 162 7/5/2024
4.0.225 160 6/27/2024
4.0.224 162 6/26/2024
4.0.223 146 6/25/2024
4.0.222 149 6/24/2024
4.0.220 166 6/21/2024
4.0.219 162 6/19/2024
4.0.218 161 6/18/2024
4.0.217 176 6/17/2024
4.0.216 159 6/14/2024
4.0.215 183 6/13/2024
4.0.214 166 5/31/2024
4.0.213 165 5/30/2024
4.0.212 166 5/27/2024
4.0.211 176 5/23/2024
4.0.210 161 5/17/2024
4.0.209 175 5/16/2024
4.0.208 187 5/8/2024
4.0.207 192 5/7/2024
4.0.206 173 5/6/2024
4.0.205 148 5/3/2024
4.0.204 138 5/2/2024
4.0.203 135 5/2/2024
4.0.202 140 5/2/2024
4.0.201 150 5/2/2024
4.0.198 179 5/1/2024
4.0.197 182 4/30/2024
4.0.196 172 4/29/2024
4.0.195 161 4/29/2024
4.0.194 181 4/25/2024
4.0.193 185 4/15/2024
4.0.192 171 4/12/2024
4.0.191 167 4/12/2024
4.0.190 181 4/11/2024
4.0.189 172 4/9/2024
4.0.188 176 4/2/2024
4.0.187 201 4/1/2024
4.0.186 167 3/29/2024
4.0.185 195 3/22/2024
4.0.184 170 3/19/2024
4.0.183 171 3/18/2024
4.0.182 174 3/15/2024
4.0.181 182 3/14/2024
4.0.180 181 3/12/2024
4.0.179 186 3/11/2024
4.0.178 198 3/8/2024
4.0.177 183 3/7/2024
4.0.176 164 3/6/2024
4.0.175 188 3/5/2024
4.0.174 169 3/4/2024
4.0.173 176 3/4/2024
4.0.172 191 3/1/2024
4.0.171 170 2/29/2024
4.0.170 173 2/28/2024
4.0.169 184 2/27/2024
4.0.168 169 2/26/2024
4.0.167 176 2/23/2024
4.0.166 164 2/22/2024
4.0.165 188 2/21/2024
4.0.164 174 2/20/2024
4.0.163 185 2/19/2024
4.0.162 171 2/19/2024
4.0.161 177 2/16/2024
4.0.160 167 2/16/2024
4.0.159 184 2/15/2024
4.0.158 179 2/14/2024
4.0.157 162 2/13/2024
4.0.156 158 2/12/2024
4.0.155 180 2/9/2024
4.0.154 171 2/8/2024
4.0.153 176 2/7/2024
4.0.152 161 2/7/2024
4.0.151 166 2/6/2024
4.0.150 161 2/5/2024
4.0.149 152 2/2/2024
4.0.148 157 2/1/2024
4.0.147 167 2/1/2024
4.0.146 171 1/31/2024
4.0.145 144 1/30/2024
4.0.144 159 1/29/2024
4.0.143 177 1/26/2024
4.0.142 156 1/25/2024
4.0.141 155 1/24/2024
4.0.140 163 1/23/2024
4.0.139 162 1/19/2024
4.0.138 169 1/19/2024
4.0.137 172 1/18/2024
4.0.136 178 1/17/2024
4.0.135 165 1/16/2024
4.0.134 176 1/16/2024
4.0.133 186 1/15/2024
4.0.132 172 1/12/2024
4.0.131 162 1/11/2024
4.0.130 162 1/10/2024
4.0.129 189 1/9/2024
4.0.128 184 1/8/2024
4.0.127 192 1/5/2024
4.0.126 207 12/29/2023
4.0.125 197 12/28/2023
4.0.124 200 12/27/2023
4.0.123 164 12/26/2023
4.0.122 201 12/26/2023
4.0.121 183 12/25/2023
4.0.120 159 12/25/2023
4.0.119 186 12/22/2023
4.0.118 177 12/21/2023
4.0.117 187 12/20/2023
4.0.116 162 12/19/2023
4.0.115 174 12/18/2023
4.0.114 161 12/15/2023
4.0.113 166 12/14/2023
4.0.112 140 12/14/2023
4.0.111 185 12/13/2023
4.0.106 196 12/8/2023
4.0.105 164 12/7/2023
4.0.104 156 12/6/2023
4.0.103 161 12/6/2023
4.0.102 156 12/5/2023
4.0.101 142 12/5/2023
4.0.100 161 11/27/2023
4.0.99 153 11/24/2023
4.0.98 156 11/22/2023
4.0.97 152 11/21/2023
4.0.96 175 11/20/2023
4.0.95 157 11/20/2023
4.0.94 649 11/17/2023
4.0.93 155 11/16/2023
4.0.92 150 11/14/2023
4.0.91 141 11/13/2023
4.0.90 156 11/10/2023
4.0.89 154 11/9/2023
4.0.88 159 11/9/2023
4.0.87 156 11/8/2023
4.0.86 140 11/7/2023
4.0.85 136 11/6/2023
4.0.84 172 11/5/2023
4.0.83 144 11/3/2023
4.0.82 146 11/3/2023
4.0.81 149 11/2/2023
4.0.80 150 11/1/2023
4.0.77 151 10/31/2023
4.0.76 179 10/30/2023
4.0.75 155 10/27/2023
4.0.74 179 10/26/2023
4.0.73 183 10/18/2023
4.0.72 163 10/17/2023
4.0.71 174 10/17/2023
4.0.70 186 10/16/2023
4.0.69 192 10/13/2023
4.0.68 166 10/13/2023
4.0.67 158 10/12/2023
4.0.66 188 10/6/2023
4.0.65 161 10/5/2023
4.0.64 157 9/27/2023
4.0.63 155 9/26/2023
4.0.62 164 9/25/2023
4.0.61 165 9/21/2023
4.0.60 160 9/20/2023
4.0.59 170 9/19/2023
4.0.58 167 9/18/2023
4.0.55 180 9/15/2023
4.0.54 168 9/14/2023
4.0.53 166 9/13/2023
4.0.52 224 9/12/2023
4.0.51 188 9/11/2023
4.0.50 210 9/11/2023
4.0.49 193 9/11/2023
4.0.48 252 9/8/2023
4.0.47 184 9/7/2023
4.0.46 224 9/6/2023
4.0.45 184 9/5/2023
4.0.44 176 9/5/2023
4.0.43 189 9/4/2023
4.0.42 222 9/1/2023
4.0.41 208 8/31/2023
4.0.40 214 8/30/2023
4.0.39 188 8/30/2023
4.0.38 192 8/29/2023
4.0.37 237 8/28/2023
4.0.36 227 8/25/2023
4.0.35 203 8/24/2023
4.0.34 208 8/23/2023
4.0.33 182 8/21/2023
4.0.32 173 8/18/2023
4.0.31 209 8/17/2023
4.0.30 170 8/17/2023
4.0.29 193 8/17/2023
4.0.28 201 8/17/2023
4.0.27 219 8/11/2023
4.0.26 219 8/10/2023
4.0.25 216 8/9/2023
4.0.24 184 8/8/2023
4.0.23 219 8/8/2023
4.0.22 281 8/8/2023
4.0.21 209 8/7/2023
4.0.20 209 8/4/2023
4.0.19 217 8/3/2023
4.0.18 229 7/27/2023
4.0.17 239 7/26/2023
4.0.16 257 7/21/2023
4.0.15 224 7/20/2023
4.0.14 236 7/19/2023
4.0.13 220 7/18/2023
4.0.12 237 7/18/2023
4.0.11 203 7/18/2023
4.0.10 225 7/18/2023
4.0.9 247 7/17/2023
4.0.7 344 2/10/2023
4.0.6 358 2/6/2023
4.0.5 382 1/30/2023
4.0.4 386 1/30/2023
4.0.3 354 1/27/2023
4.0.2 372 12/13/2022
4.0.1 407 12/13/2022
3.0.111 591 9/17/2022
3.0.110 568 8/11/2022
3.0.109 613 6/10/2022
3.0.107 657 4/20/2022
3.0.106 594 1/11/2022
3.0.105 544 1/10/2022
3.0.104 435 12/7/2021
3.0.103 535 10/27/2021
3.0.102 534 6/17/2021
3.0.100 579 6/17/2021
3.0.95 586 6/16/2021
3.0.91 565 1/14/2021
3.0.90 585 1/7/2021
3.0.89 625 12/16/2020
3.0.88 595 12/15/2020
3.0.87 675 12/10/2020
3.0.86 607 12/7/2020
3.0.84 630 12/7/2020
3.0.80 684 10/2/2020
3.0.79 777 10/1/2020
3.0.78 680 9/29/2020
3.0.77 685 9/13/2020
3.0.76 684 6/19/2020
3.0.75 673 6/8/2020
3.0.74 674 6/1/2020
3.0.73 712 5/13/2020
3.0.72 695 5/13/2020
3.0.70 711 5/12/2020
3.0.69 673 5/12/2020
3.0.68 695 5/12/2020
3.0.67 704 5/12/2020
3.0.41 714 4/28/2020
3.0.40 680 4/24/2020
3.0.39 686 4/16/2020
3.0.38 711 4/16/2020
3.0.37 704 4/15/2020
3.0.36 705 4/15/2020
3.0.34 763 4/11/2020
3.0.33 752 4/10/2020
3.0.32 739 4/7/2020
3.0.31 738 4/6/2020
3.0.30 750 4/5/2020
3.0.29 776 4/5/2020
3.0.28 861 4/5/2020
3.0.27 771 4/2/2020
3.0.24 735 4/1/2020
3.0.23 758 3/29/2020
3.0.22 710 3/26/2020
3.0.21 705 3/26/2020
3.0.20 655 3/25/2020
3.0.19 741 3/25/2020
3.0.18 786 3/22/2020
3.0.16 795 3/21/2020
3.0.15 728 3/16/2020
3.0.14 744 3/14/2020
3.0.13 812 3/14/2020
3.0.11 700 3/13/2020
3.0.10 721 3/13/2020
3.0.8 738 3/5/2020
3.0.7 696 2/28/2020
3.0.6 741 2/28/2020
3.0.5 747 2/22/2020
3.0.4 761 2/6/2020
3.0.3 731 2/6/2020
3.0.1 778 1/10/2020
3.0.0 764 12/26/2019
2.0.34 838 4/17/2019
2.0.33 795 4/17/2019
2.0.32 827 3/14/2019
2.0.31 904 2/22/2019
2.0.30 1,038 11/1/2018
2.0.29 1,040 10/11/2018
2.0.27 1,012 10/5/2018
2.0.26 1,029 10/2/2018
2.0.25 1,021 9/25/2018
2.0.24 1,001 9/19/2018
2.0.23 1,048 9/19/2018
2.0.22 1,058 9/18/2018
2.0.21 1,118 9/13/2018
2.0.20 1,194 8/7/2018
2.0.19 1,117 8/1/2018
2.0.18 1,169 8/1/2018
2.0.17 1,359 7/3/2018
2.0.16 1,434 6/26/2018
2.0.15 1,389 6/26/2018
2.0.14 1,342 6/14/2018
2.0.13 1,404 5/31/2018
2.0.11 1,331 5/22/2018
2.0.10 1,409 5/21/2018
2.0.9 1,525 5/21/2018
2.0.8 1,476 5/11/2018
2.0.7 1,548 2/15/2018
2.0.6 1,491 2/15/2018
2.0.5 1,512 2/13/2018
2.0.4 1,458 1/24/2018
2.0.3 1,498 1/8/2018
2.0.2 1,527 1/2/2018
1.0.83 1,504 12/15/2017
1.0.82 1,314 12/1/2017
1.0.81 1,244 11/22/2017
1.0.80 1,226 11/21/2017
1.0.79 1,289 11/21/2017
1.0.78 1,258 11/21/2017
1.0.76 1,215 11/17/2017
1.0.72 1,291 11/17/2017
1.0.71 1,229 11/17/2017
1.0.67 1,255 11/16/2017
1.0.66 1,270 11/16/2017
1.0.65 1,297 11/14/2017
1.0.63 1,247 11/14/2017
1.0.62 1,250 11/14/2017
1.0.61 1,283 11/13/2017
1.0.60 1,316 11/13/2017
1.0.55 1,325 11/13/2017
1.0.53 1,323 11/13/2017
1.0.52 1,265 11/13/2017
1.0.50 1,264 11/6/2017
1.0.49 1,256 10/24/2017
1.0.48 1,251 10/24/2017
1.0.44 1,249 10/19/2017
1.0.42 1,257 10/19/2017
1.0.40 1,231 10/18/2017
1.0.39 1,275 10/13/2017
1.0.34 1,274 10/12/2017
1.0.32 1,307 10/12/2017
1.0.31 1,222 10/11/2017
1.0.26 1,261 10/2/2017
1.0.24 1,305 9/29/2017
1.0.21 1,270 9/26/2017
1.0.19 1,251 9/25/2017
1.0.16 1,255 9/23/2017
1.0.15 1,256 9/22/2017
1.0.11 1,246 9/22/2017
1.0.10 1,266 9/22/2017
1.0.8 1,270 9/21/2017
1.0.7 1,293 9/21/2017
1.0.5 1,311 9/21/2017