Refers to a practice of coding object-oriented APIs with the aim of improving readability of the interface, normally implemented using method chaining. The phrase was first coined by Eric Evans and Martin Fowler.
1
vote
2answers
32 views
Async fluent javascript (node) interface (using deferreds)
What is the best way to build fluent interface in Javascript (node.js) with
obj.function1().function2().function3();
where functions are asynchronous methods?
There is a module called chainsaw, ...
0
votes
0answers
51 views
Custom foreign key relationship using Fluent API
I am working on a project using VS 2012 and EF 5.0.
I am having two tables:
public class AttendanceRecord
{
public int Id { get; set; }
public DateTime RecordedDate { get; set; }
...
4
votes
1answer
80 views
How can I build an interface hierarchy for my fluent API?
I'm working on a fluent API and trying to take advantage of Java's generic methods to offer an elegant API that handles type conversions for my users. I'm running into some trouble getting it working ...
0
votes
0answers
99 views
The DELETE statement conflicted with the SAME TABLE REFERENCE constraint with Entity Framework
I have a table with a self reference where the ParentId is an FK to the ID (PK).
Using EF (code-first), I've set up my relationship as follows:
this.HasOptional(t => t.ParentValue)
...
0
votes
2answers
62 views
Code first model not auto incrementing key on insert
I think I have an error in my model, but I'm not sure what it is.
First the error
The INSERT statement conflicted with the FOREIGN KEY constraint
...
1
vote
1answer
193 views
Entity Framework 5 - Insert data into UsersInRoles Many to Many table
I have a scenario where I need to manually insert an User, Roles & UsersInRoles entries into a database without using the ASP.NET Membership. Now when I try to insert many to many relation ...
0
votes
2answers
69 views
Fluent API with “static” class in java
I have a "static" class (i.e. a class with a private constructor and only static members and functions). It wraps Androids' SharedPreferences Editor which has a rather nice fluent API.
I was ...
1
vote
2answers
50 views
php destructor called too soon with fluent interface
I found a really weird thing about php destructor:
basically I have a database management class which loads an adapter using a factory to define which adapter should be loaded (mysql, mysqli, etc.)
...
0
votes
2answers
46 views
How does Greg Young's Fluent Interface work?
I'm trying to follow along this article: http://codebetter.com/gregyoung/2007/12/05/a-use-for-extension-methods/
I follow along fine up to this point:
Now that I have these I can decorate the ...
0
votes
0answers
95 views
EF 5, Fluent API : invalid column name “Source_ID”
Good morning
I Get invalid column name "Source_ID". my models are :
product:
public int ID { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public decimal ...
0
votes
0answers
44 views
Entity Framework Code First + Fluent Api impossible to map Optional - Many to a link table?
I have to map an optional - many with code first and fluent api to a link table, which presents:
IdLeft(PK, FK, not null) IdRight(PK, FK, not null)
But with fluent api to sperate a part of left ...
5
votes
2answers
68 views
How to implement fluent api in ASP.NET MVC?
I want to implement fluent api to my mvc sites. I got the basics.
So implement object library such as:
public class UIElement{/*...*/}
public class ButtonBase : UIElement{/*...*/}
public class ...
0
votes
1answer
116 views
Entity Framework, Code First Foreign Key Mapping Error
I am having the hardest time figuring the right configuration for mapping a foreign key "Category" to my "Products" table. When the model is being generated (Code First), I am getting this internal ...
1
vote
1answer
63 views
Does DELETE CASCADE Option for Foreign Keys delete grandchildren?
pretty new to SQL cascading delete. I was wondering how cascade delete works when it comes the children. So say I have a table situation like:
ParentTable ==Cascade==> ChildTable ==NoCascade==> ...
1
vote
1answer
53 views
EF Doesn't Delete Records For Fluent API - Many To Many Relationship
I have 2 entities,
News
FileAttachment
I wanted to configure using code-first fluent API so that Each News can have 0,1 or more than 1 attachments.
here is what i'm using right now
public ...
1
vote
2answers
148 views
Using EF code first to generate tables with columns that have special SQL data types
I was wondering if it is possible (either through the Fluent Api or data annotations) to have a property map to the database as bit, hierarchyid, sql_variant, sysname, table, or timestamp when ...
1
vote
0answers
18 views
How to debug fluent APIs?
Fluent APIs are awesome. They give concise and readable code.
But it is a severe pain when something works as not expected.
Are there any ways to see the intermediate results of the method calls ...
0
votes
1answer
47 views
code first database model
I'm trying to create a MVC3 application, i'm troubled with EF code first to create DB.
I have this tables: User, Category, Product, Loan.
A User can create none or more Categories.
A User can add none ...
0
votes
1answer
75 views
How to create a navigation property with a key that is not the the primary key of the 2nd object?
In EF5, using a code first approach and fluent API, how can create a navigation property (many to 1) based on a key that is not the primary key of the other table?
My database model is as such, and I ...
0
votes
0answers
94 views
Conditional Mapping of POCO entities using Fluent API
I have this POCO class :
public class MyClass
{
public int MyKey { get; set; }
public string Name { get; set; }
public bool DiscriminatorField { get; set; }
public string AnotherInfo ...
0
votes
1answer
80 views
nhibernate foreign key relationship on between two natual key columns
I want to define foreign key relationship between two tables using natural keys... By default nhibernate is considering the other column as primary key...
Class A{
public virtual int id {get; ...
0
votes
0answers
65 views
DbGeography mapping in OnModelCreating
I have a class with properties Latitude and Longitude.
I use EF 5 for persistence so DbGeography is a good choice, but I don't want that my entity class library has reference with EF.
Is it possible ...
7
votes
1answer
102 views
Ensuring that a call is made to end a chain of methods
Note/Disclaimer: After a few searches, the nearest thing I have I have seen to this post is a post on SO (Method chaining and the finishing problem) which is similar to my question, but doesn't really ...
1
vote
1answer
47 views
Mapping relationships in existing database with EF
I am using an existing database that I am unfortunately unable to change, and seem to be having trouble creating a relationship. I'm relatively new to EF, and after some searches have found users ...
0
votes
4answers
318 views
How to store double[] array to database with Entity Framework Code-First approach
How can I store an array of doubles to database using Entity Framework Code-First with no impact on the existing code and architecture design?
I've looked at Data Annotation and Fluent API, I've also ...
3
votes
2answers
133 views
Mapping 2 tables to single entity in Entity Framework
I hope you can help me.
I have 2 tables in the db: Bill and BillItem. These tables are configured with one to one relation in the db where bill is the principle table while BillItem is the dependent ...
2
votes
2answers
60 views
Is it bad to have “specifications” for a controller/method specified in routing code?
I'm designing an alternative MVC framework for ASP.Net. Part of my goals for the framework is to have as little "magic" as possible. The only bit of reflection I have is for binding things like form, ...
0
votes
0answers
65 views
Need bit help regarding Fluent style coding design
I have develop a small classes with fluent style design for sending mail. now i want to add some more functionality in my code as a result i can attach many file before sending mail.
the code i use ...
2
votes
1answer
120 views
EF Code First prevent property mapping with Fluent API
I have a class Product and a complex type AddressDetails
public class Product
{
public Guid Id { get; set; }
public AddressDetails AddressDetails { get; set; }
}
public class AddressDetails
...
0
votes
1answer
50 views
EF Map One To Many Composite PK - No PK Property on Child Class
Check at the following Db Scripts:
CREATE TABLE tlogdata
(
logentryid INT NOT NULL, -- PK
[key] NVARCHAR(25) NOT NULL, -- PK
value NVARCHAR(MAX) NOT NULL
)
CREATE TABLE tlogentry
(
...
0
votes
2answers
55 views
Dynamically Return Interface at Design-Time
I'm attempting to write a fluent interface which is able to, at design time, detect the property type being passed as a Linq Expression and return an interface based on an evaluation of that type.
...
-1
votes
3answers
104 views
Entity Framework compilation error. Class cannot be used as scalar property, because it does not have a getter and setter
With Code First approach and implementing a database for an existing system. Therefore I cannot make alot of changes to the existing code. That's why I'm using Fluent API and Entity Framework.
When ...
0
votes
0answers
102 views
EF Code First: Primary Key same as Foreign Key
I have two classes
public class Product
{
public Guid Id { get; set; }
public string ProductDetails { get; set; }
}
public class SpecialProductDetails
{
public Guid Product_Id { get; ...
1
vote
1answer
87 views
How to map complex one-to-many with Entity Framework and Fluent API
I'm coming from Java and is now implementing an existing system into a database with C# and Entity Framework.
Since I cannot show the actual classes here, I've tried to make an example identical to ...
1
vote
0answers
146 views
Entity framework Code First and Fluent API have a difficulty with using type decimal?
I need help!
When I read a decimal value of the DB it returns a different value for C#.
For example: In DataBase the value is 0.0000 and in C# code the value read is 0.1200.
I need to know what is ...
0
votes
1answer
64 views
A conflict in exposing a foreign key as a property during mappings
I have the following table structure:
Affiliations
Id Party1 Party2
1 100 200
2 300 400
And a table referenced through the FKs of Affiliations
Parties
Id Name
100 ...
0
votes
1answer
249 views
Code First and Fluent API one to one relationship
I'm having trouble with reverse navigation on one of my entities.
I have the following two objects:
public class Candidate
{
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
...
0
votes
1answer
94 views
arg array of Expression<Func<object>> as part of a fluent interface
Consider an interface like this:
new Provider().For(myClass).ExcludeProperties("Height", "Width");
public IEditableStateProvider For(object target) {...}
public IEditableStateProvider ...
0
votes
0answers
29 views
EF Code First one to one mapping specifying both keys
I have two classes
public class Metadata
{
public Guid Id { get; private set; }
public decimal Version { get; private set; }
public Guid Entity_Id { get; private set; }
public string ...
0
votes
0answers
38 views
how to obtain name of “key” property using Fluent API
When using Data annotations in a class if I decorated a property with the [Key] attribute,I can then reverse engineer it as below if needed
string keyName = ...
0
votes
0answers
160 views
PHP/Selenium Fluent Interface with Page Object?
I am currently creating functional tests for a CMS using PHPUnit_Selenium. I am trying to use the Page Object pattern for this. I also thought writing these tests would benefit from a Fluent ...
0
votes
1answer
348 views
Enterprise Library Exception Handling “Process” method
I have a question on using Enterprise Library Exception Handling Application Block.
First is the "ExceptionManager.Process" method. what I understood from the documentation is that you can execute ...
0
votes
3answers
143 views
Calling JScript functions from VBScript - Parentheses
I'm trying to bring some sanity to a legacy Classic ASP application, and as part of this I'm trying to write a Fluent API for some JScript classes that I have created.
e.g. ...
2
votes
4answers
120 views
Why is a fluent implementation slower than a non-fluent one?
I wrote some test code that compares the speed of using the append() method of StringBuilder eight times sequentially as a fluent interface against invoking it separately in 8 lines.
As fluent:
...
4
votes
4answers
467 views
How do I write my wrapper class to use partial generic type inference?
This is related to this question.
I'd like to create a generic wrapper class:
public abstract class Wrapper<T>
{
internal protected T Wrapped { get; set; }
}
With the following ...
2
votes
2answers
186 views
Java (Processing 1.5.1): Fluent interface @ multilevel inheritance via generics
I try to implement a fluent interface in my 2D game engine.
Simplified example of my implementation:
public class Sprite<T> {
protected float x = 0.0;
protected float y = 0.0;
...
0
votes
1answer
120 views
Need help on EF Code First Fluent Mapping Many To Many
I am developing an ASP.NET MVC4 application with EF Code First. I am having a many-to-many relationship among following classes. I have defined relationship using EF fluent api in my context class. ...
0
votes
1answer
60 views
EF Fluent - How to map required one to optional one with a goofy foreign key? (Invalid Foreign Key Table_TableId)
Why is this so #$*% hard? Shouldn't be.
Two tables Orders & Shippers:
Orders.ship_via, an int is the FK to Shippers.ShipperId
Shippers.ShipperId is the PK on Shippers
My entities:
public class ...
2
votes
1answer
368 views
Many-to-Many Relations with 'code first' in Entity Framework 5 (EF5 - final release) wtih VS2012
I had invest now one day to find a solution wihtout success.
I like to create a simple Many to Many relation.
For that I've created two Models:
A Player class where i will have the 'Turnaments' ...
2
votes
2answers
221 views
Fluent API Mapping
I have a database that has three tables structured as follows:
Product
ProductID PK
SKU PK
Name
ProductImages
ImageID PK
SKU
Images
ImageID PK
ImageContent
Ignore for a moment that ...


