Bygdrift.Warehouse 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Bygdrift.Warehouse --version 1.0.1
NuGet\Install-Package Bygdrift.Warehouse -Version 1.0.1
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="Bygdrift.Warehouse" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Bygdrift.Warehouse --version 1.0.1
#r "nuget: Bygdrift.Warehouse, 1.0.1"
#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.
// Install Bygdrift.Warehouse as a Cake Addin
#addin nuget:?package=Bygdrift.Warehouse&version=1.0.1

// Install Bygdrift.Warehouse as a Cake Tool
#tool nuget:?package=Bygdrift.Warehouse&version=1.0.1

Create Azure App functions to fetch data from an unspecified data source, wash data and ingest to a data lake and a database in Azure. This nuget package handles communication with data lake and database.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
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
1.3.3-alpha2 80 9/17/2023
1.3.3-alpha 94 9/11/2023
1.3.2 157 9/8/2023
1.3.0 159 6/25/2023
1.2.9 133 6/12/2023
1.2.8 255 2/7/2023
1.2.7 286 12/11/2022
1.2.6 319 11/16/2022
1.2.5 403 10/20/2022
1.2.4 377 10/3/2022
1.2.2 420 9/19/2022
1.2.0 446 9/10/2022
1.0.5 486 6/28/2022
1.0.4 512 6/11/2022
1.0.3 504 5/30/2022
1.0.2 500 5/21/2022
1.0.1 491 5/17/2022
1.0.0 554 5/15/2022
0.7.0 538 5/12/2022
0.6.6 553 5/5/2022
0.6.5 541 4/21/2022
0.6.1 666 1/26/2022
0.5.1 624 11/15/2021
0.4.0 617 10/24/2021

Added DataLakeQueue, so now it's easy to send, peek and receive queue messages from the Data Lake.

Added function to DataLake:
- Old data can easily be removed: DeleteDirectoriesOlderThanDaysAsync(string basePath, int equalOrolderThanDays)
- Get all directories: GetDirectories(string basePath)

Added two functions to CsvTools:
- A csv can be merged into another csv: FromCsv(Csv mergedCsv, bool createNewUniqueHeaderIfAlreadyExists)
- A column with the same data, can be added: AddColumn(string headerName, object value, bool createNewUniqueHeaderIfAlreadyExists)