Inflatable 5.0.103

dotnet add package Inflatable --version 5.0.103
                    
NuGet\Install-Package Inflatable -Version 5.0.103
                    
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.103" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Inflatable" Version="5.0.103" />
                    
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.103
                    
#r "nuget: Inflatable, 5.0.103"
                    
#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.103
                    
#: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.103
                    
Install as a Cake Addin
#tool nuget:?package=Inflatable&version=5.0.103
                    
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.103 150 11/14/2025
5.0.102 180 11/14/2025
5.0.101 206 11/13/2025
5.0.100 215 11/13/2025
5.0.99 170 11/7/2025
5.0.98 171 11/6/2025
5.0.97 185 11/3/2025
5.0.96 168 10/31/2025
5.0.95 180 10/20/2025
5.0.94 162 10/20/2025
5.0.93 161 10/20/2025
5.0.92 166 10/20/2025
5.0.91 154 10/17/2025
5.0.90 175 10/16/2025
5.0.89 182 10/15/2025
5.0.88 154 10/15/2025
5.0.87 175 10/14/2025
5.0.86 173 10/13/2025
5.0.85 164 10/13/2025
5.0.84 165 10/13/2025
5.0.83 167 10/12/2025
5.0.82 198 10/1/2025
5.0.81 184 9/30/2025
5.0.80 180 9/29/2025
5.0.79 159 9/26/2025
5.0.78 188 9/25/2025
5.0.77 300 9/19/2025
5.0.76 307 9/18/2025
5.0.75 301 9/18/2025
5.0.74 309 9/17/2025
5.0.73 158 9/12/2025
5.0.72 174 9/11/2025
5.0.71 162 9/10/2025
5.0.70 166 9/10/2025
5.0.69 230 8/20/2025
5.0.68 166 8/20/2025
5.0.67 171 8/20/2025
5.0.66 169 8/20/2025
5.0.65 182 8/19/2025
5.0.64 177 8/18/2025
5.0.63 164 8/18/2025
5.0.62 167 8/18/2025
5.0.61 166 8/18/2025
5.0.60 260 8/7/2025
5.0.59 246 8/7/2025
5.0.58 257 8/6/2025
5.0.57 271 8/5/2025
5.0.56 267 8/5/2025
5.0.55 263 8/5/2025
5.0.54 261 8/5/2025
5.0.53 200 8/4/2025
5.0.52 197 8/4/2025
5.0.51 200 8/4/2025
5.0.50 197 8/4/2025
5.0.49 195 7/29/2025
5.0.48 136 7/29/2025
5.0.47 140 7/29/2025
5.0.46 134 7/29/2025
5.0.45 173 7/18/2025
5.0.44 180 7/17/2025
5.0.43 180 7/17/2025
5.0.42 180 7/16/2025
5.0.41 183 7/16/2025
5.0.40 196 7/9/2025
5.0.39 184 7/9/2025
5.0.38 200 7/1/2025
5.0.36 186 7/1/2025
5.0.35 184 6/30/2025
5.0.33 180 6/30/2025
5.0.32 189 6/30/2025
5.0.31 195 6/27/2025
5.0.30 172 6/27/2025
5.0.29 164 6/27/2025
5.0.28 194 6/27/2025
5.0.25 231 2/4/2025
5.0.24 163 1/31/2025
5.0.23 164 1/30/2025
5.0.22 159 1/29/2025
5.0.21 170 1/27/2025
5.0.20 160 1/24/2025
5.0.19 163 1/23/2025
5.0.18 162 1/17/2025
5.0.17 154 1/16/2025
5.0.16 130 1/15/2025
5.0.15 129 1/14/2025
5.0.14 140 1/13/2025
5.0.13 145 1/10/2025
5.0.12 182 12/18/2024
5.0.11 171 12/17/2024
5.0.10 183 12/11/2024
5.0.9 178 12/10/2024
5.0.8 156 12/9/2024
5.0.7 185 12/6/2024
5.0.6 181 11/27/2024
5.0.5 170 11/27/2024
5.0.4 168 11/26/2024
5.0.3 165 11/25/2024
5.0.2 174 11/24/2024
4.0.244 178 10/29/2024
4.0.243 182 10/25/2024
4.0.242 225 9/27/2024
4.0.241 201 9/23/2024
4.0.240 193 9/6/2024
4.0.239 192 8/29/2024
4.0.238 223 8/27/2024
4.0.237 206 8/26/2024
4.0.236 214 8/22/2024
4.0.235 212 8/21/2024
4.0.234 206 8/20/2024
4.0.233 192 8/15/2024
4.0.232 166 8/5/2024
4.0.231 180 8/1/2024
4.0.230 192 7/25/2024
4.0.229 186 7/11/2024
4.0.228 181 7/10/2024
4.0.227 202 7/10/2024
4.0.226 195 7/5/2024
4.0.225 195 6/27/2024
4.0.224 194 6/26/2024
4.0.223 178 6/25/2024
4.0.222 182 6/24/2024
4.0.220 199 6/21/2024
4.0.219 191 6/19/2024
4.0.218 190 6/18/2024
4.0.217 208 6/17/2024
4.0.216 181 6/14/2024
4.0.215 214 6/13/2024
4.0.214 197 5/31/2024
4.0.213 195 5/30/2024
4.0.212 196 5/27/2024
4.0.211 211 5/23/2024
4.0.210 197 5/17/2024
4.0.209 206 5/16/2024
4.0.208 219 5/8/2024
4.0.207 228 5/7/2024
4.0.206 194 5/6/2024
4.0.205 178 5/3/2024
4.0.204 169 5/2/2024
4.0.203 166 5/2/2024
4.0.202 171 5/2/2024
4.0.201 183 5/2/2024
4.0.198 210 5/1/2024
4.0.197 211 4/30/2024
4.0.196 191 4/29/2024
4.0.195 182 4/29/2024
4.0.194 201 4/25/2024
4.0.193 219 4/15/2024
4.0.192 193 4/12/2024
4.0.191 208 4/12/2024
4.0.190 211 4/11/2024
4.0.189 207 4/9/2024
4.0.188 210 4/2/2024
4.0.187 223 4/1/2024
4.0.186 202 3/29/2024
4.0.185 239 3/22/2024
4.0.184 192 3/19/2024
4.0.183 201 3/18/2024
4.0.182 208 3/15/2024
4.0.181 219 3/14/2024
4.0.180 224 3/12/2024
4.0.179 220 3/11/2024
4.0.178 232 3/8/2024
4.0.177 219 3/7/2024
4.0.176 186 3/6/2024
4.0.175 224 3/5/2024
4.0.174 201 3/4/2024
4.0.173 209 3/4/2024
4.0.172 212 3/1/2024
4.0.171 202 2/29/2024
4.0.170 204 2/28/2024
4.0.169 206 2/27/2024
4.0.168 203 2/26/2024
4.0.167 208 2/23/2024
4.0.166 197 2/22/2024
4.0.165 211 2/21/2024
4.0.164 199 2/20/2024
4.0.163 217 2/19/2024
4.0.162 203 2/19/2024
4.0.161 212 2/16/2024
4.0.160 199 2/16/2024
4.0.159 215 2/15/2024
4.0.158 208 2/14/2024
4.0.157 193 2/13/2024
4.0.156 188 2/12/2024
4.0.155 212 2/9/2024
4.0.154 201 2/8/2024
4.0.153 196 2/7/2024
4.0.152 190 2/7/2024
4.0.151 199 2/6/2024
4.0.150 193 2/5/2024
4.0.149 172 2/2/2024
4.0.148 188 2/1/2024
4.0.147 198 2/1/2024
4.0.146 202 1/31/2024
4.0.145 177 1/30/2024
4.0.144 178 1/29/2024
4.0.143 209 1/26/2024
4.0.142 186 1/25/2024
4.0.141 189 1/24/2024
4.0.140 197 1/23/2024
4.0.139 185 1/19/2024
4.0.138 203 1/19/2024
4.0.137 202 1/18/2024
4.0.136 203 1/17/2024
4.0.135 195 1/16/2024
4.0.134 206 1/16/2024
4.0.133 206 1/15/2024
4.0.132 203 1/12/2024
4.0.131 184 1/11/2024
4.0.130 194 1/10/2024
4.0.129 228 1/9/2024
4.0.128 205 1/8/2024
4.0.127 219 1/5/2024
4.0.126 232 12/29/2023
4.0.125 229 12/28/2023
4.0.124 232 12/27/2023
4.0.123 195 12/26/2023
4.0.122 224 12/26/2023
4.0.121 206 12/25/2023
4.0.120 192 12/25/2023
4.0.119 217 12/22/2023
4.0.118 200 12/21/2023
4.0.117 208 12/20/2023
4.0.116 185 12/19/2023
4.0.115 205 12/18/2023
4.0.114 193 12/15/2023
4.0.113 190 12/14/2023
4.0.112 170 12/14/2023
4.0.111 209 12/13/2023
4.0.106 229 12/8/2023
4.0.105 178 12/7/2023
4.0.104 179 12/6/2023
4.0.103 188 12/6/2023
4.0.102 183 12/5/2023
4.0.101 170 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 180 11/20/2023
4.0.94 672 11/17/2023
4.0.93 168 11/16/2023
4.0.92 164 11/14/2023
4.0.91 166 11/13/2023
4.0.90 172 11/10/2023
4.0.89 184 11/9/2023
4.0.88 186 11/9/2023
4.0.87 177 11/8/2023
4.0.86 165 11/7/2023
4.0.85 155 11/6/2023
4.0.84 198 11/5/2023
4.0.83 159 11/3/2023
4.0.82 159 11/3/2023
4.0.81 175 11/2/2023
4.0.80 196 11/1/2023
4.0.77 176 10/31/2023
4.0.76 203 10/30/2023
4.0.75 178 10/27/2023
4.0.74 194 10/26/2023
4.0.73 188 10/18/2023
4.0.72 181 10/17/2023
4.0.71 197 10/17/2023
4.0.70 201 10/16/2023
4.0.69 218 10/13/2023
4.0.68 172 10/13/2023
4.0.67 184 10/12/2023
4.0.66 213 10/6/2023
4.0.65 176 10/5/2023
4.0.64 183 9/27/2023
4.0.63 178 9/26/2023
4.0.62 189 9/25/2023
4.0.61 191 9/21/2023
4.0.60 164 9/20/2023
4.0.59 187 9/19/2023
4.0.58 184 9/18/2023
4.0.55 204 9/15/2023
4.0.54 193 9/14/2023
4.0.53 181 9/13/2023
4.0.52 240 9/12/2023
4.0.51 212 9/11/2023
4.0.50 235 9/11/2023
4.0.49 218 9/11/2023
4.0.48 278 9/8/2023
4.0.47 202 9/7/2023
4.0.46 253 9/6/2023
4.0.45 200 9/5/2023
4.0.44 191 9/5/2023
4.0.43 205 9/4/2023
4.0.42 242 9/1/2023
4.0.41 238 8/31/2023
4.0.40 240 8/30/2023
4.0.39 216 8/30/2023
4.0.38 218 8/29/2023
4.0.37 267 8/28/2023
4.0.36 254 8/25/2023
4.0.35 234 8/24/2023
4.0.34 242 8/23/2023
4.0.33 209 8/21/2023
4.0.32 200 8/18/2023
4.0.31 238 8/17/2023
4.0.30 187 8/17/2023
4.0.29 211 8/17/2023
4.0.28 220 8/17/2023
4.0.27 237 8/11/2023
4.0.26 240 8/10/2023
4.0.25 236 8/9/2023
4.0.24 203 8/8/2023
4.0.23 239 8/8/2023
4.0.22 310 8/8/2023
4.0.21 242 8/7/2023
4.0.20 247 8/4/2023
4.0.19 247 8/3/2023
4.0.18 259 7/27/2023
4.0.17 259 7/26/2023
4.0.16 280 7/21/2023
4.0.15 252 7/20/2023
4.0.14 254 7/19/2023
4.0.13 239 7/18/2023
4.0.12 257 7/18/2023
4.0.11 232 7/18/2023
4.0.10 245 7/18/2023
4.0.9 266 7/17/2023
4.0.7 376 2/10/2023
4.0.6 386 2/6/2023
4.0.5 404 1/30/2023
4.0.4 422 1/30/2023
4.0.3 383 1/27/2023
4.0.2 403 12/13/2022
4.0.1 437 12/13/2022
3.0.111 644 9/17/2022
3.0.110 609 8/11/2022
3.0.109 633 6/10/2022
3.0.107 690 4/20/2022
3.0.106 645 1/11/2022
3.0.105 579 1/10/2022
3.0.104 473 12/7/2021
3.0.103 571 10/27/2021
3.0.102 569 6/17/2021
3.0.100 612 6/17/2021
3.0.95 621 6/16/2021
3.0.91 602 1/14/2021
3.0.90 629 1/7/2021
3.0.89 672 12/16/2020
3.0.88 633 12/15/2020
3.0.87 723 12/10/2020
3.0.86 655 12/7/2020
3.0.84 679 12/7/2020
3.0.80 728 10/2/2020
3.0.79 837 10/1/2020
3.0.78 725 9/29/2020
3.0.77 724 9/13/2020
3.0.76 733 6/19/2020
3.0.75 722 6/8/2020
3.0.74 709 6/1/2020
3.0.73 749 5/13/2020
3.0.72 721 5/13/2020
3.0.70 749 5/12/2020
3.0.69 712 5/12/2020
3.0.68 742 5/12/2020
3.0.67 748 5/12/2020
3.0.41 760 4/28/2020
3.0.40 726 4/24/2020
3.0.39 727 4/16/2020
3.0.38 771 4/16/2020
3.0.37 743 4/15/2020
3.0.36 728 4/15/2020
3.0.34 809 4/11/2020
3.0.33 778 4/10/2020
3.0.32 776 4/7/2020
3.0.31 774 4/6/2020
3.0.30 789 4/5/2020
3.0.29 812 4/5/2020
3.0.28 886 4/5/2020
3.0.27 808 4/2/2020
3.0.24 764 4/1/2020
3.0.23 784 3/29/2020
3.0.22 746 3/26/2020
3.0.21 742 3/26/2020
3.0.20 680 3/25/2020
3.0.19 787 3/25/2020
3.0.18 822 3/22/2020
3.0.16 842 3/21/2020
3.0.15 755 3/16/2020
3.0.14 772 3/14/2020
3.0.13 853 3/14/2020
3.0.11 727 3/13/2020
3.0.10 749 3/13/2020
3.0.8 774 3/5/2020
3.0.7 742 2/28/2020
3.0.6 769 2/28/2020
3.0.5 777 2/22/2020
3.0.4 799 2/6/2020
3.0.3 771 2/6/2020
3.0.1 818 1/10/2020
3.0.0 794 12/26/2019
2.0.34 877 4/17/2019
2.0.33 830 4/17/2019
2.0.32 863 3/14/2019
2.0.31 931 2/22/2019
2.0.30 1,084 11/1/2018
2.0.29 1,067 10/11/2018
2.0.27 1,076 10/5/2018
2.0.26 1,065 10/2/2018
2.0.25 1,060 9/25/2018
2.0.24 1,038 9/19/2018
2.0.23 1,076 9/19/2018
2.0.22 1,111 9/18/2018
2.0.21 1,153 9/13/2018
2.0.20 1,246 8/7/2018
2.0.19 1,178 8/1/2018
2.0.18 1,219 8/1/2018
2.0.17 1,434 7/3/2018
2.0.16 1,521 6/26/2018
2.0.15 1,474 6/26/2018
2.0.14 1,440 6/14/2018
2.0.13 1,491 5/31/2018
2.0.11 1,422 5/22/2018
2.0.10 1,483 5/21/2018
2.0.9 1,598 5/21/2018
2.0.8 1,562 5/11/2018
2.0.7 1,619 2/15/2018
2.0.6 1,569 2/15/2018
2.0.5 1,597 2/13/2018
2.0.4 1,553 1/24/2018
2.0.3 1,582 1/8/2018
2.0.2 1,622 1/2/2018
1.0.83 1,579 12/15/2017
1.0.82 1,380 12/1/2017
1.0.81 1,292 11/22/2017
1.0.80 1,297 11/21/2017
1.0.79 1,350 11/21/2017
1.0.78 1,329 11/21/2017
1.0.76 1,284 11/17/2017
1.0.72 1,353 11/17/2017
1.0.71 1,289 11/17/2017
1.0.67 1,316 11/16/2017
1.0.66 1,330 11/16/2017
1.0.65 1,379 11/14/2017
1.0.63 1,306 11/14/2017
1.0.62 1,311 11/14/2017
1.0.61 1,344 11/13/2017
1.0.60 1,375 11/13/2017
1.0.55 1,395 11/13/2017
1.0.53 1,386 11/13/2017
1.0.52 1,324 11/13/2017
1.0.50 1,323 11/6/2017
1.0.49 1,315 10/24/2017
1.0.48 1,301 10/24/2017
1.0.44 1,299 10/19/2017
1.0.42 1,307 10/19/2017
1.0.40 1,298 10/18/2017
1.0.39 1,334 10/13/2017
1.0.34 1,333 10/12/2017
1.0.32 1,366 10/12/2017
1.0.31 1,282 10/11/2017
1.0.26 1,312 10/2/2017
1.0.24 1,371 9/29/2017
1.0.21 1,334 9/26/2017
1.0.19 1,311 9/25/2017
1.0.16 1,333 9/23/2017
1.0.15 1,325 9/22/2017
1.0.11 1,320 9/22/2017
1.0.10 1,334 9/22/2017
1.0.8 1,328 9/21/2017
1.0.7 1,345 9/21/2017
1.0.5 1,385 9/21/2017