VOOZH about

URL: https://www.nuget.org/packages/idee5.Common/

⇱ NuGet Gallery | idee5.Common 5.0.0




👁 Image
idee5.Common 5.0.0

dotnet add package idee5.Common --version 5.0.0
 
 
NuGet\Install-Package idee5.Common -Version 5.0.0
 
 
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="idee5.Common" Version="5.0.0" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="idee5.Common" Version="5.0.0" />
 
Directory.Packages.props
<PackageReference Include="idee5.Common" />
 
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 idee5.Common --version 5.0.0
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: idee5.Common, 5.0.0"
 
 
#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 idee5.Common@5.0.0
 
 
#: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=idee5.Common&version=5.0.0
 
Install as a Cake Addin
#tool nuget:?package=idee5.Common&version=5.0.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Readme.md

Release Notes idee5.Common

2.0.0

  • Converted to PCL base library.

2.0.6

  • Added the IRange interface for checking ranges.
  • Move HashCodeCombiner to PCL
    • File hashes neded to be removed due to lacking PCL APIs.

2.0.7

  • Resolved nuget targeting issues. (portable50 was targeted, not netstandard1.2)

2.0.8

  • Added intersection check to ranges interface For package creation use: msbuild /t:pack /p:Configuration=Release on every package.

2.0.9

  • Added the generic ICopyable interface for deep copies

3.0.0

Changed to netstandard20. Made IQuery contra-variant to support "inheritance".

3.0.2

Added cancellation token to the async query and command interfaces.

3.0.4

Added validation of async command handlers. Renamed the validation decorator.

3.0.5

Added .net 4.6.1 tests to cover differences to .net core. IsClrType now covers .net core too.

3.0.15

Added the Minutes() and Seconds() TimeSpan extensions

3.1.0

Added the ExpandoObject extensions AddProperty and GetPropertyByName.

3.2.0

  • Added enum extensions, enum comparer, CastTo, ...
  • Added DateTimeOffset to ITimeProvider.
  • Added the object.In() extension

3.3.1

3.3.0 wasn't possible. Automatic Versions just skipped this.

  • Removed the event handler extensions. They are no longer useful. "?." is more concise.
  • Replaced object.In by a generic verision (better performance)

3.3.3

  • Removed redundant IAsyncQueryHandler.
  • Added default cancellation tokens to the query and command handlers.

3.3.4

  • Added SafeFireAndForget as task extension

3.3.5

Still 3.x because no offical 3.x version ist released. The version increments are my fault, misusing AutomaticVerions.

  • DelegateEqualityComparer and Enumerable.DistinctBy are never used, obsolete and replaced by Enumerable.Distinct.
  • Fixed several FxCop warnings
    • Renamed the enum Helper class from Enum To EnumUtils.
    • Tons of NULL checks.
    • Corrected IDisposable handling.
    • Renaming to fullfill naming conventions.
    • Made a bunch of string operations culture aware.
    • Lots of additional documentation
    • Removed ToMD5 due to it being broken. Look for other ways.
  • Removed some used prematurely added stuff.

3.3.6

Removed the reference to FxCop analyzers.

3.3.7

Removed the validated command handler, in favor for the one in idee5.Common.Data. Moved localizable strings to internal resource file.

3.3.9

  • Added a "nearly equals" comparison for floats and doubles.
  • Documentation updates

3.3.10

  • Added the Chunk enumerable extension method
  • removed the unused "tmp" variable in StringExtension.ToHex
  • Code reformatting

3.3.11

  • Added "as" to the object extensions
  • Added "IsTypeOf" to the object extensions

3.3.12

  • Added "AsString" to the Object extensions.

3.3.13

  • Added DateTimeRange

3.3.14

  • Added DateTimeRange equality comparability

3.3.15

  • Added DateTimeRange equality operators
  • Fixed a Base64 issue

3.4.0

  • Source generator attribute added
  • Currency query added

3.4.1

  • MIT license

3.4.2

  • Ambient providers marked as obsolete to give a compiler hint on maybe wrong usage outside test scenarios.

3.5

  • Added ProblemDetailsWithErrors

3.6

  • Detect interface implementations added. Used to find command and query handlers.

3.7

  • Multitargetting enabled
  • IsNotNull helper for .NET8+ added
  • Nullable cleanups

4.0

  • Breaking Changes:
    • ObservableDictionary and ObservableSortedDictionary removed for newer .NET versions.
    • Plugin infrastructure removed. Modern DI containers now support most of it.
  • Further nullable and .net8 improvements

4.0.1

  • nuget updates

4.0.2

  • nuget updates

5.0.0

  • Upgrade to .NET 10

Release notes idee5.Common.Data

1.0.0

Initial release

1.0.1

Removed the unit of work stuff.

1.0.5

Added recursive data annotations and data conversion support.

1.0.6

Added soft delete repositories, renamed IMonitoredEntity to IAuditedEntity, readed .NET 4.6.1 package.

1.1.1

Write actions in repositories are now synchronous. The IUnitofWork is the async part.

1.1.2

Use Func<IQueryable<T>, IQueryable<T>> instead on Func<IQueryable<T>, IEnumerable<T>> to make real life easier. Not unit testing.

1.1.3

Write actions in repositories are now synchronous. The IUnitOfWork is the async part.

1.1.4

Added support for the DataDirectory placeholder.

1.1.5

Added the IConnectionStringProvider.

1.1.6

Added bulk operations to the repository interface.

1.2.0

Adjusted the repository interface to the real world asynchrony.

1.3.0

Removed the specifications. The NSpecification package now supports netstandard.

1.4.0

IRepository now needs a TKey type parameter to handle UpdateOrAdd in ARepository.

1.4.1

Added ICompositeKeyRepository to handle cases like idee5.Globalization.

1.4.2

Just to have the new idee5.Common 3.2.5 reference.

1.4.4

Added base implementation for ACompositeKeyRepository.UpdateOrAddAsync to handle a list of items.

1.4.5

Corrected ReplaceDataDirectory.

1.4.6

  • Fixed several FxCop warnings
    • Tons of NULL checks.
    • Corrected IDisposable handling.
    • Renaming to fullfill naming conventions.
    • Lots of additional documentation
    • Fixed some memory allocations
    • ...

1.4.7

Removed the reference to FxCop analyzers.

1.4.8

Do a for loop in the UpdateOrAddAsync method of the abstract repositories. Most ORMs don't support parallel execution on the same context.

1.4.9

  • Added validation result reporter

1.4.10

  • Added localization resource.
  • Added abstract data converter for multiple used input or output handlers.

1.4.11

  • DataConverterAsync: Support for different input handlers with the same output handler
  • Fixed AudtitingRepository's UpdateOrAddAsync.

1.4.12

  • ExportToCsv: Escape the quotation mark

1.4.13

  • Fixed an issue in ARepository.UpdateOrAddAsync

1.4.14

  • Added the AllowedValues attribute

1.4.15

  • Added LogValidationReporter
  • Fixed the namespace of DebugValidationReporter

1.4.16

  • Added LoggingCommandHandler, LogValidationReporter
  • Minor improvements

1.4.17

  • package updates, fixed some typos and added more documentation

1.5

  • AbstractEventstore added

1.6

  • Enabled NULLABLE

1.6.1

Nullable support in IAuditedEntity

1.7

  • MIT license
  • Added RegisterHandlers to add query and command handlers to the DI container

1.7.1

  • event store test now uses a record type instead of a class
  • Added the MasterSystemReference type.

1.8

  • Configurable master system formatter

1.9

  • Multitargetting enabled
  • Nullable cleanups

1.10

  • Proper nullable support in the repositories

2.0

  • Breaking changes in the repository to reduce the possible ORM leak

2.1

  • New data importer added as replacement for the data converter.
  • Improved handler registration, ignoring all decorators not just those with names starting with "Validat".

2.1.1

  • Registration for command and query handlers added to the service collection extensions

2.2

  • No cleanup command and handler added for scenarios without a cleanup

2.3

  • KeyNamePair added
  • Generic data paging support for queries

2.3.1

  • Interface IASyncDataImporter added to enable the decorator pattern

2.3.2

  • Master system configuration options added

2.3.3

  • nuget / security updates

2.3.4

  • nuget / security updates

2.3.5

  • Ability to register handlers only from a specific

3.0.0

  • Upgrade to .NET 10
Product Versions Compatible and additional computed target framework versions.
.NET net5.0 net5.0 was computed.  net5.0-windows net5.0-windows was computed.  net6.0 net6.0 was computed.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 was computed.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 was computed.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 is compatible.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
.NET Core netcoreapp2.0 netcoreapp2.0 was computed.  netcoreapp2.1 netcoreapp2.1 was computed.  netcoreapp2.2 netcoreapp2.2 was computed.  netcoreapp3.0 netcoreapp3.0 was computed.  netcoreapp3.1 netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 netstandard2.0 is compatible.  netstandard2.1 netstandard2.1 was computed. 
.NET Framework net461 net461 was computed.  net462 net462 was computed.  net463 net463 was computed.  net47 net47 was computed.  net471 net471 was computed.  net472 net472 was computed.  net48 net48 was computed.  net481 net481 was computed. 
MonoAndroid monoandroid monoandroid was computed. 
MonoMac monomac monomac was computed. 
MonoTouch monotouch monotouch was computed. 
Tizen tizen40 tizen40 was computed.  tizen60 tizen60 was computed. 
Xamarin.iOS xamarinios xamarinios was computed. 
Xamarin.Mac xamarinmac xamarinmac was computed. 
Xamarin.TVOS xamarintvos xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on idee5.Common:

Package Downloads
idee5.Common.Data

Data access abstractions used by idee5

idee5.Globalization

Globalization extensions. Enables database support for localization resources and parlances for industries and customers..

idee5.AspNetCore

ASP.NET Core additions for commands, queries, ... from the idee5.Common package.

idee5.Calendar

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.0.0 269 11/15/2025
4.0.2 289 6/6/2025
4.0.1 356 12/30/2024
4.0.0 1,937 12/21/2023
3.7.0 340 12/4/2023
3.6.0 336 8/2/2023
3.5.0 280 6/26/2023
3.4.2 428 6/15/2023
3.4.1 581 2/1/2023
3.4.0 967 12/29/2022
3.3.15 466 12/13/2022
3.3.14 709 11/15/2022
3.3.13 775 11/9/2021
3.3.11 965 10/29/2021
3.3.10 728 8/4/2021
3.0.6 1,785 3/22/2018

See the readme