Top "Fluent" questions

Fluent interface is an API which allows method chaining to make code more readable.

Fluent NHibernate Many to one mapping

I am new to Hibernate world. It may be a silly question, but I am not able to solve it. …

nhibernate nhibernate-mapping fluent
Fluent NHibernate Many-to-Many

I am using Fluent NHibernate and having some issues getting a many to many relationship setup with one of my …

c# nhibernate fluent-nhibernate fluent
Understanding of How to Create a Fluent Interface

Hi i'm trying to understand how i could build a readable and also error preventing Fluent-API without to much restriction …

c# fluent fluent-interface
laravel migration re-organising column order

When you create a new column in a table you can use the ->after('column name') to dictate …

laravel-4 eloquent fluent
How to join table in fluent nhibernate

how do we do this mapping but fluently? <class name="Person" table="People"> <id name="Id"> &…

nhibernate fluent
Inheritance Mapping with Fluent NHibernate

Given the following scenario, I want map the type hierarchy to the database schema using Fluent NHibernate. I am using …

nhibernate mapping types fluent polymorphism
Fluent NHibernate Generated AND Assigned ID Columns

I'm using Fluent NHibernate for my data-persistence in a web application. My problem... I have a base class that maps …

c# nhibernate fluent
EF Code First 5 - How to define nullable foreign key using Fluent API?

I have two table - 1. Account 2. Users In Account table, DefaultExpensePartner and AccountOwner are foreign key of UserId field of …

c# entity-framework-5 fluent
Fluent Nhibernate inner join

I have 3 tables (Master, Imagen, Linea) were: Master public virtual int Id { get; private set; } public virtual Imagen imagen { get; …

c# nhibernate mapping inner-join fluent
How can I select the maximum value in NHibernate?

I need to get maximum page order from database: int maxOrder = GetSession.Query<Page>().Max(x => x.…

nhibernate fluent-nhibernate max fluent