Tagged Questions
0
votes
0answers
40 views
How do I use a convention to specify the Foreign Key and the Primary Key should be the same column on a Joined Subclass table?
Title pretty much says it all. If I have 2 classes:
public class Account
{
public virtual Guid AccountId { get; set; }
public virtual string Name { get; set; }
}
public class VendorAccount ...
3
votes
1answer
221 views
Automapping an object with a child collection NHibernate
I just recently switched from EF5 to NHibernate due to a few features that I want in my ORM but didn't find in EF. So, I'm new to NHibernate. I'm working in ASP.Net MVC.
I'm using Automapper to map ...
1
vote
1answer
92 views
Overwriting bool property convention in fluent NHHibernate
I am experimenting with the automap feature of Fluent Nhibernate..
I saw an example which had a default string convention as follows:
namespace Vuscode.Framework.NHibernate.Conventions
{
using ...
1
vote
1answer
122 views
Struggling to get AutoMapper to map my ViewModel to my Domain, What could I be doing wrong?
I've been fiddling about and trying multiple things, but I'm going wrong somewhere. I tried to make my first attempt using AutoMapper as simple as possible. I'm trying to create a new Brand and save ...
0
votes
2answers
308 views
Automapper with NHibernate - How to persist mapped objects?
I have an ASP.NET MVC application that uses Fluent NHibernate and AutoMapper.
I am primarily using AutoMapper to map my Models to ViewModels and vice versa.
When doing the latter, mapping from my ...
0
votes
1answer
544 views
c# Fluent NHibernate one-to-many relationship object returning null
Really trying to get my head around this but cannot see the light through the trees. Probably missed something obvious!
Within the database when I create the object it works within any issues but ...
0
votes
1answer
286 views
Fluent Nhibernate HasMany to One Table from Several Tables
I have an entity/class/table which is referenced from several other entities, and I use Fluent NHibernate to handle the ORM for me. In a few instances, it's a simple reference where I can store the ...
0
votes
0answers
238 views
Can nHibernate Update Children in a one-to-many based off of ID instead of tracked state?
I'm using nHibernate 3 and Sharp Architecture 2.
I'd like nHibernate to key off of the Entity Id instead of state to determine if a child entity is new or not.
Currently, this works in the following ...
0
votes
2answers
493 views
Lazy loading with nHibernate Fluent, web services and automapper
I seperate my domain logic from my web service logic
This is from my domain and actually gets the data from nHibernate
public static IList<Location> LoadReturnLocationsFromDatabase(DateTime ...
0
votes
1answer
112 views
Error in nhibernate automapping as object refrence not set to an instance
i am pretty new to automapping through have used nhibernate mapping earlier .... this is my session factory
return Fluently.Configure()
.Database(
...
1
vote
2answers
169 views
How should AutoMapper access my DAL?
I have an InvoiceInputModel with a ProjectId property which is a reference to a Project entity. Ideally, I want AutoMapper to be able to map an entire Invoice entity from an InvoiceInputModel, which ...
0
votes
0answers
185 views
Nhibernate persisting tree object after automapper mapping
I have written an hierarchical tree structure, with child nodes using cascade all orphan and inverse.
I have a client DTO tree object, when I send the object to the service, it maps it in the server ...
4
votes
2answers
779 views
NHibernate and AutoMapper not playing nice: “a different object with the same identifier value was already”
Receiving this error:
a different object with the same identifier value was already associated with the session: 27, of entity: xxx.Core.Event
Basically, I have view models that are being mapped from ...
1
vote
1answer
300 views
Mapping Vertical Legacy Table with Fluent NHibernate
I am trying to map the following table setup, of which I have no control over (sorry for the text tables, I can't post images yet):
**METADATA**
METADATA_ID NUMBER(10,0)
METADATA_DICT_ID ...
6
votes
4answers
1k views
How do you ignore/persist values in MVC when your view-model doesn't have as many fields as your domain model?
I have a site where I'm using fluentNhibernate and Asp.net MVC. I have an Edit view that allows user to edit 8 of the 10 properties for that record (object). When you submit the form and the Model ...