1
vote
0answers
13 views
Fluent NHibernate enforce Not Nullable on Foreign Key Reference
Hello All,
Just getting my feet wet with some Fluent NHibernate AutoMap conventions, and ran into something I couldn't figure out. I assume I'm just not looking in the right place …
1
vote
4answers
77 views
simple convention Automapper
check this out, I just wrote a simple automapper, it takes the value from the property with the same name and type of one object and puts it into another, and you can add exception …
0
votes
2answers
54 views
How do you automap List<float> or float[] with Fluent NHibernate?
Having successfully gotten a sample program working, I'm now starting
to do Real Work with Fluent NHibernate - trying to use Automapping on my project's class
heirarchy.
It's a …
0
votes
3answers
87 views
Fluent NHibernate AutoMapping throws “StaleStateException” when try to Commit a List<>
The following code throws a StaleStateException exception when the Order.OrderItems property (an IList) is Commited. The full text of the exception is:
An unhandled exception of …
3
votes
2answers
75 views
Is there a Fluent NHibernate Automapping sample project that “just works”?
I just started looking a NHibernate this week, and would love to use the Automapping approach on my current project.
I'm working with Fluent NHibernate 1.0.0.594, which I download …
1
vote
1answer
41 views
In Fluent NHibernate how do you combine automapped types with non-automapped types?
Right now, I'm switching my project over from the classic fluent nhibernate style of manually defining a ClassMap for each domain entity, to having the auto-mapper auto-generate th …
0
votes
0answers
64 views
Fluent NHibernate auto mapping - how to create a many-to-many relationship table?
Hi,
just wondered if anyone know if there is a way to crate a Many-to-Many relationship table automatically using some attribute? without creating the table, or mapping a class to …
0
votes
1answer
47 views
Is it possible to use both automapping and schema generation with Fluent NHibernate?
I'm using the following:
Fluently.Configure()
.Database(MsSqlConfiguration.MsSql2005.ConnectionString(connectionString))
.Mappings(m => m.AutoMappings.Add(AutoM …
0
votes
1answer
190 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 …
3
votes
4answers
208 views
Confusion between DTOs (linq2sql) and Class objects!
Hi there,
i have been successfully working with linq2sql and the linq DTOs (the classes that are created by linq2sql) ....
I am confused, i have the task of updating an old appli …
2
votes
4answers
1k views
Entity Framework + AutoMapper ( Entity to DTO and DTO to Entity )
Hello.
i got some problems using EF with AutoMapper. =/
for example :
i got 2 related entities ( Customers and Orders )
and theyr DTO classes :
class CustomerDTO
{
public st …
0
votes
1answer
72 views
Overriding Fluent NHibernate Automappings
This is a Fluent NHibernate newbie question, so bear with me.
I have a set of classes, and I'm applying the Automapping capabilities to it.
But I need to mark one of the properti …
2
votes
3answers
282 views
Fluent NHibernate. Auto Mapping and Conventions
Im new to NHibernate, the configuration aspect of it has always seemed overly onerous to me. Yesterday, I came across the Auto Mapping features of Fluent NHibernate and was suitabl …
0
votes
1answer
200 views
Issues with Fluent Nhibernate Automapping in version 1.0RC
I am new to NHibernate and am running into some issues getting the Automap functionality to work properly. Here are a couple of issues I am having.
The getting started wiki for Fl …
0
votes
1answer
129 views
Fluent NHibernate DuplicateMappingException with AutoMapping
Summary:
I want to save two classes of the same name and different namespaces with the Fluent NHibernate Automapper
Context
I'm writing having to import a lot of different objec …
