0
votes
1answer
19 views
Generic ‘TThis’ for fluent classes
I'm constructing a fluent interface where I have a base class that contains the bulk of the fluent logic, and a derived class that add some specialized behavior. The problem I'm fa …
14
votes
16answers
559 views
Design of an Alternative (Fluent?) Interface for Regular Expressions
I've just seen a huge regex for Java that made me think a little about maintainability of regular expressions in general. I believe that most people - except some badass perl monge …
5
votes
7answers
179 views
Persisting complex test data
We are using builder pattern to generate test data. These domain objects have relations between them. Our functional tests require these objects to be persisted.
Think about this …
0
votes
2answers
43 views
NHibernate: Deleting a collection and re-inserting
Hello,
I have a User with related Permissions. Here is what I want:
I create a User and add a permission to the User.Permissions collection. It gets saved and everything happen …
4
votes
8answers
890 views
Fluent Interfaces - Method Chaining
Method chaining is the only way i know to build fluent interfaces.
Here's an example in C#:
John = new JohnBuilder().AddSmartCode("c#").WithfluentInterface("Please").ButHow("Dunn …
0
votes
1answer
183 views
Issue With Fluent Nhibernate Automapping and Guids / UniqueIdentifiers as Primary Key Fields
I am attempting to use the Fluent-NHibernate automapping functionality (in the latest version of the software) and am running into problems using Guids as the Primary Key fields. I …
2
votes
2answers
108 views
Nested Lambda for use with Fluent Interface
Given the following types:
class Parent { List<Child> Children {get;set;}}
class Child {List<Child> GrandChildren {get;set;}}
class Helper<TEntity> {List<str …
0
votes
2answers
187 views
Multi-level inheritence with fluent interface in C#
Given the sample console application below:
QUESTION #1: Why does .Name() return typeof OranizationBuilder, but .Write() calls CorporationBuilder?
QUESTION #2: How to get .Name() …
3
votes
6answers
527 views
Converting an XML document to fluent C#
I'd like to convert an external XML document without any XSD schema associated with it into a fluent .NET object.
I have a simple XML file like:
<application>
<param …
2
votes
6answers
264 views
How can I create a fluent interface for defining Dialog Boxes?
I am looking for examples and experience of using fluent interface to define simple Dialog Boxes (and other UI elements).
(I may need to add support for custom Dialog Boxes to an …
2
votes
6answers
1k views
Tips for writing fluent interfaces in C# 3
I'm after some good tips for fluent interfaces in C#. I'm just learning about it myself but keen to hear what others think outside of the articles I am reading. In particular I'm a …
3
votes
3answers
203 views
C# Lambda+Extensions+Fluent - How Would I Do This?
I want to be able to create "Transformation" classes that take a given object, perform a series of transformations on it (i.e. change property values) and keeps track of the transf …
5
votes
2answers
106 views
Lambda Func<> and Fluent
There are lots of Fluent implementations out there now that work with Lambdas to do things that are quite neat. I'd like to wrap my brain around it so I can start creating some of …
5
votes
2answers
99 views
Question regarding fluent interface in C#
I have the following class:
public class Fluently
{
public Fluently Is(string lhs)
{
return this;
}
public Fluently Does(string lhs)
{
return this;
}
public …
0
votes
2answers
83 views
Finding the right pattern for loading objects with different graphs
I'm trying to figure out the best way to handle loading objects with different graphs (related entities) depending on the context their being used.
For example Here's a sample of …
