FluentFramework 1.2.4

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

// Install FluentFramework as a Cake Tool
#tool nuget:?package=FluentFramework&version=1.2.4

Implementation

  1. Create an implementation as like below and configure your connection. You can use different database connections instead of SQLite of course! Others are in FluentNHibernate.Cfg.Db namespace. Also you can expand and improve your FluentNHibernate configurations on here.
public class DefaultConnection : IConnectionDescriptive
{
    public FluentConfiguration Configuration(FluentConfiguration cfg, bool useSecondLevelCache, bool useQueryCache, out bool useDefaultCachingMechanism, out bool autoCreateDatabase)
    {
        autoCreateDatabase = true;
        useDefaultCachingMechanism = true;
        return cfg.Database(SQLiteConfiguration.Standard.ConnectionString("Data Source=Database.db;Version=3;"));
    }
}
  1. Create entities as like below;
public class Book : Entity<DefaultConnection>
{
    public virtual string Name { get; set; }
    public virtual User User { get; set; }
}
  1. Map your entity as like below;
public class BookMap : EntityMap<Book, DefaultConnection>
{
    public BookMap()
    {
        Map(x => x.Name).Not.Nullable();
        References(x => x.User).Not.Nullable();
    }
}
  1. Get your database connection as like below;
public User GetUser(string username)
{
    var repository = Repository<DefaultConnection>.CreateRepository();
    return repository.Query<User>().Where(x => x.Username == username).SingleOrDefault()
}
  1. You can also use transactions easy like below;
public void AddBook(string bookName, User user)
{
    var repository = Repository<DefaultConnection>.CreateRepository();
    repository.Transaction.Begin();
    var book = new Book { Name = bookName, User = user };
    repository.Add(book);
    repository.SaveChanges();
    
    if(!doSomethingWithBook(book))
    {
        repository.Transaction.Rollback();
    }
}

Examine the project to see what you can do more.

Features

  • Caching
  • Multiple ways of ID generation such as Identity, Sequence, HiLo, GUID, Pooled, and the Native mechanism used in databases. Uses Native by default.
  • Lazy Loading
  • Generation and updating system like migration API in Entity framework.
  • Cryptography helper for hashing and verifying passwords.
  • JSON entity serialization
  • Multiple database connections
  • Multiple database providers
    • SQL Server
    • SQL Server Azure
    • Oracle
    • PostgreSQL
    • MySQL
    • SQLite
    • DB2
    • Sybase Adaptive Server
    • Firebird
    • Informix
    • It can even support the use of OLE DB (Object Linking and Embedding) and ODBC (Open Database Connectivity).
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp2.0 is compatible.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on FluentFramework:

Package Downloads
FluentFramework.Observing

FluentFramework.Observing is a helper tool to make database observing easy.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.2.1 759 1/16/2020
2.1.8 527 12/8/2019
2.1.7 514 12/8/2019
2.1.6 533 11/24/2019
2.1.4 990 9/18/2019
2.1.1 543 9/13/2019
1.2.4 785 9/13/2019