Refers to a practice of coding object-oriented APIs with the aim of improving readability of the interface, normally implemented using method chaining.
Method chaining is the practice of object methods returning the object itself in order for the result to be called …
oop fluent-interface method-chainingI'm running EF 4.2 CF and want to create indexes on certain columns in my POCO objects. As an example lets …
c# entity-framework-4 ef-code-first data-annotations fluent-interfaceIf I try to delete a "child" row I always get an exception. Here is a snipset: using (var context = …
entity-framework fluent-interfaceI have created Entity Data Model in Visual Studio. Now I have file with SQL queries and C# classes generated …
c# entity-framework fluent-interfaceHow can I store an array of doubles to database using Entity Framework Code-First with no impact on the existing …
c# .net entity-framework ef-code-first fluent-interfaceI have a column "Name" that must be unqiue. No foreign key or anything like that. EF 6.1 finally supports creating …
c# .net entity-framework entity-framework-6 fluent-interfaceI have the situation where a User can have several addresses. Accordingly, I have an ICollection on my user class. …
entity-framework ef-code-first entity-framework-4.1 fluent-interfaceHow can I do this in PHP $myDBClass->users()->limit(5);//output you limited users to 5 $myDBClass->…
php design-patterns fluent-interfaceI am looking for a tutorial on setting up nhibernate. There seems to be few out there, but most are …
nhibernate fluent-interfaceI have a table with a self reference where the ParentId is an FK to the ID (PK). Using EF (…
c# .net sql-server entity-framework fluent-interface