Tagged Questions
The fluent tag has no wiki summary.
20
votes
1answer
3k views
Set up caching on entities and relationships in Fluent Nhibernate?
Do anyone have have an example how to set up and what entities to cache in fluent nhibernate. Both using fluent mapping and auto mapping?
And the same for entity relationships, both one to many and ...
17
votes
4answers
7k views
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 2.0
Type Hierarchy
public abstract class Item
{
public ...
15
votes
2answers
3k views
Fluent NHibernate, working with interfaces
I just switched to Fluent NHibernate and I've encountered an issue and did not find any information about it.
Here's the case :
public class Field : DomainObject, IField
{
public Field()
{
...
14
votes
5answers
187 views
Must a “fluent” (or chainable) method be immutable?
Say I have a class with some properties and some methods for manipulating those properties:
public class PersonModel
{
public string Name { get; set; }
public string PrimaryPhoneNumber { get; ...
14
votes
12answers
2k views
What fluent interfaces have you made or seen in C# that were very valuable? What was so great about them?
"Fluent interfaces" is a fairly hot topic these days. C# 3.0 has some nice features (particularly extension methods) that help you make them.
FYI, a fluent API means that each method call returns ...
13
votes
7answers
1k views
creating API that is fluent
How does one go about create an API that is fluent in nature?
Is this using extension methods primarily?
11
votes
1answer
631 views
Anyone know of any decent resources on Stored Procedures for Fluent Nhibernate 1.1
A recent release of Fluent Nhibernate (1.1) now supports stored procedures. I was wondering if anyone out there has found any good blog articles on how to do this!
I am not asking about using classic ...
11
votes
4answers
12k views
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 classes. It's probably a stupid mistake but I've been stuck for a little bit trying to get ...
10
votes
2answers
1k views
Best way to store enum values in database - String or Int
I have a number of enums in my application
which are used as property type in some classes.
What is the best way to store these values in database, as String or Int?
FYI, I will also be mapping ...
10
votes
7answers
1k views
Is there any library to represent SQL queries as objects in Java code?
I was wondering if there is any library that can be used to represent SQL queries as objects in Java.
In the code I have plenty of static variables of type java.lang.String that are hand written SQL ...
9
votes
3answers
962 views
Is there a fluent assertion API for MSTest?
I've recently been exposed to the fluent interface in nUnit and I love it; however, I am using msTest.
Does anyone know if there is a fluent interface that is either testing framework agnostic or ...
8
votes
3answers
839 views
Is there any Fluent NHibernate book?
Taking into consideration that Fluent NHibernate has been available for some time I thought that there would be a book available already so i search in amazon and in google but there is no books for ...
8
votes
4answers
701 views
Fluent log4net configuration
Anyone know if there's a fluent way of configuring log4net (appenders and all the properties for appenders etc...).
The xml is driving me crazy.
Or if not, does anyone know of a decent .Net logging ...
6
votes
3answers
293 views
Better regex syntax ideas
I need some help to complete my idea about regexes.
Introduction
There was a question about better syntax for regexes on SE, but I don't think I'd use the fluent syntax.
It's surely nice for ...
6
votes
1answer
1k views
fluent nhibernate named-query without using hbm file for the map
I am needing to create a named-query, and use it with one of the maps, that i currently have defined as a fluent map.
is it possible to continue using the fluent map, and be able to create the ...
6
votes
3answers
236 views
Is there is a fluent approach to handling WinForm event?
I was handling yet another KeyDown event in a user control when I wondered if it existed a library for typing fluent code for handling event like
...
6
votes
2answers
3k views
How to join table in fluent nhibernate
how do we do this but fluently? i know i can use 'References' but i don't need all the columns from the related table. i just need one property.
5
votes
2answers
4k views
Fluent NHibernate HasManyToMany() Mapping Problem
i am having a problem in Fluent NHibernate example utilizing the Many-to-Many relationships, i tried to find out examples on a similar case, and i found tons , but still having the same problem.
when ...
4
votes
1answer
189 views
Fluent NHibernate Cascade - Which side?
In using Fluent NHibernate, I can't seem to find a good explanation of when you use the cascading option on the References side vs. the HasMany side.
What's the difference (if any) in mapping the ...
4
votes
2answers
1k views
Is there a reference for EF4 Fluent API syntax?
I keep searching the web for examples of the new fluent API syntax in Microsoft's Entity Framework technology previews ... I come up with bits and pieces here and there.
Is there any reliable place ...
4
votes
2answers
828 views
Fluent NHibernate fetching view without unique identifier
I'm trying to map a view without an identifier, but nhibernate still generates a sql with the id column (giving me a sql error, since the ID column does not exists in the db). Maybe I'm ...
4
votes
1answer
227 views
Fluent NHibernate ExportSchema without connection string
I want to generate a database script without having an actual database connection string declared.
To do this for now i use NHibernate ExportSchema bases on a NHibernate configuration generated with ...
4
votes
3answers
415 views
Does Anyone Know Of A Solid Web Example Using ASP.NET MVC1 or MVC2, NHibernate, Fluent NHibernate & Castle?
I am looking for solid non-console examples of how to use ASP.NET MVC1 or MVC2, NHibernate, Fluent NHibernate & Castle. I looked at Sharp Architecture and its just too much to digest for my newbie ...
4
votes
3answers
2k views
Combine Fluent and XML mapping for NHibnernate
I just fell in love with NHibernate and the fluent interface. The latter enables very nice mappings with refactoring support (no more need for xml files).
But nobody is perfect, so I am missing the ...
3
votes
1answer
75 views
Why must we assign a clone to a new variable?
I am currently learning to use the Propel ORM, and I want to reuse a critera for two slightly different queries:
$criteria = ArticleQuery::create()
->filterByIsPublished(true)
...
3
votes
6answers
113 views
refactoring long methods with fluent interfaces
I'd like to know your opinion about using the fluent interface pattern to refactor a long method.
http://en.wikipedia.org/wiki/Fluent_interface
The fluent pattern is not included in the refactoring ...
3
votes
2answers
193 views
MultiLanguage Web App and Data Caching From a Table
We are developing a multi-language web application with ASP.NET MVC 2 and Fluent NHibernate.
Our platform will be multi-language. But just static text will be multi-language. Groups pages depends on ...
3
votes
2answers
247 views
Fluent Nhibernate ClassMaps and Column Order
Our entities have a group of common properties. In order to reduce repetitive mapping, I created a base ClassMap that maps the identities and common properties. For each entity's ClassMap I just ...
3
votes
1answer
369 views
Fluent NHibernate: Mixing Automapping and manual mapping
If using Fluent NHibernate, is it possible to automap most classes, but specify that a couple of particular classes should be mapped using the regular fluent API rather than being automapped? And if ...
3
votes
1answer
212 views
Getting PDT code completion to recognise runtime return types from base class?
I've got an abstract base class:
abstract class BaseClass {
/**
* @return CLASSNAME
*/
public function fluent() {
// do stuff
return $this;
}
}
Generally, i would put BaseClass ...
3
votes
2answers
761 views
NHibernate taking a long time to run query
This is being done using Fluent NHibernate
I've got a NHibernate lookup that is retrieving data from one table. If i take the generated sql and run it through query analyzer, it takes ~18ms to run.
...
3
votes
1answer
767 views
fluent nhibernate automap version column
Current code in my convention:
public void Apply(FluentNHibernate.Conventions.Instances.IVersionInstance instance)
{
instance.Column("RowVersion");
instance.Not.Nullable();
...
3
votes
2answers
1k views
No persister for Entity
I define a simple Bug Class:
using System;
namespace BugNS.Entities
{
class Bug
{
public virtual int Id { get; private set; }
public virtual int BugNumber { get; set; }
}
...
3
votes
3answers
1k views
Fluent NHibernate PersistenceSpecification CheckList
I am currently working on a college project in which we are using Fluent NHibernate. I am working on figuring how to create testing for our entities and Fluent mappings.
I have, however, hit a dead ...
3
votes
1answer
1k views
NHibernate Fluent and named Queries
I am using Nhibernate with fluent.
Now I want to call some Stored procedure and use named Queries.
I created some xml:
<?xml version="1.0" encoding="utf-8"?>
<hibernate-mapping>
...
3
votes
3answers
1k views
Private property mapping with fluent nhibernate
I am getting exception mapping a private property.This is the situation:
I have this in Entity.cs:
privat int m_Inactive;
and in EntityMap.cs I have :
Map(x => ...
2
votes
1answer
48 views
Fluent NHibernate - HasManyToMany NHibernate.MappingException: Repeated column in mapping for collection
I'm a NHibernate novice trying to configure an existing database with Fluent NHibernate. The problem is with a many-to-many mapping, in this example represented by libraries and books. I guess this ...
2
votes
2answers
61 views
Linq Parsing Error when trying to create seperation of concerns
I am in the middle of a refactoring cycle where I converted some extension methods that used to look like this:
public static IQueryable<Family> FilterOnRoute(this IQueryable<Family> ...
2
votes
0answers
141 views
Nibernate / Fluent NHibernate : Using Filter with SubclassMap
Using Fluent NHibernate, I have succeeded in setting up a global Filter on my NHibernate session, and using it in ClassMap classes. The Filter WHERE clause is appended to queries using that map ...
2
votes
2answers
224 views
Fluent NHibernate - How to map a List<enum>?
I have a class and inside it, a string and a list of enumerators.
public enum SomeEnum
{
Undefined=0,
Enum1,
Enum2,
Enum3,
End
}
public class SomeObject
{
public virtual int ...
2
votes
0answers
176 views
Multiple Associations from one Object to two Objects of the same Entity Type
I am attempting to use code first and the fluent API to create an object that holds two different entities from the same table. In other words, a transfer object holds a reference to two different ...
2
votes
3answers
117 views
Are there any Fluent interfaces?
I have read about Fluent APIs, where code can be made to read like English, but I can't seem to find any examples of them, as I would like to find out whether they are a reasonable way to make an easy ...
2
votes
1answer
128 views
Fluent NHibernate mappings for localization
I am trying to build a Database from NHibernate mappings and have run into a problem.
I have many classes with localized string values:
public class MyClass1 {
public virtual int Id { get; set; ...
2
votes
0answers
178 views
Fluent NHibernate map 2 identical classes to one table, first-lazy on, second-lazy off
So, I need to map my class to database table, but sometimes I need lazy loading to be on, sometimes to be off.
Example:
I made duplicates of these two classes described below, and I map them using ...
2
votes
2answers
151 views
Inheritance with Fluent NHibernate produces double results
I have the following scenario:
public class Login
{
public virtual int Id { get; set; }
public virtual string Username { get; set; }
}
public class User : Login
{
public ...
2
votes
3answers
631 views
Fluent Validation and libraries
While looking for something totally different the other day, I have stumbled upon two libraries for doing Fluent Validation in .NET.
The concept seems interesting since so far I am doing my ...
2
votes
1answer
400 views
Mixing Inheritance and Tree Structure with Fluent nHibernate
Part of a model I'm designing is a hierarchy geographic locations. Since there are multiple layers and share some information I decided to use a class hierarchy like this:
public class GeographicNode
...
2
votes
2answers
863 views
How do I override the automapping for a composite Id, one to many relationship with fluent nhibernate?
I'm polling mulitple systems (domains) for security info so I'm dealing domainUsers and their roles. I've got my entities setup as show below, but I'm having trouble setting up the domainUser.HasMany ...
2
votes
1answer
618 views
Fluent NHibernate join single column from another table
I'm using Fluent NHibernate and have two tables;
Customer [ID, Name, LanguageID]
Languages [ID, Description]
I have a Customer entity with the following properties;
ID, Name, LanguageID, Language
...
2
votes
3answers
495 views
Fluent Nhibernate Oracle Identifier Too Long - Alias Name Issue
I've tried to do that.
HasManyToMany<YechidotDoarInGroup>(x => x.Col_yig)
.Table("PigToYig")
.ChildKeyColumn("YIG_GROUP_RECID")
.ParentKeyColumn("PIG_GROUP_RECID");
but I've got:
...