I have a class with collection of enums: Class1.cs public enum Language { Serbian = 1, Croatian, Ukrainian,
I have a problem with mapping in nhibernate. I am using nhibernate 2.2 version. Seems like the problem is in mapping but I am not sure this is the cause. Anyway, I have two tables which I would like
I would like to \"extend\" my domain classes without having to add data to the domain classes themselves. Consider I have the following class:
Earlier I asked this question: Loop in MySql, or alternative? I got a great answer and it does work. Now in my application I am using NHibernate(in C# .NET 3.5) as the DAL. I dont really know how to d
First, I\'ve tried to ask the similar question yesterday (NHibernate many-to-many relationship question: can select, can't update), but after a debugging night hopefully I can rephrase a question
I have a data access class with an Enum called Salutation: public enum Salutation { Unknown = 0, Dame = 1,
I have Product and Category tables in database. One product can have many categories. One category c开发者_运维知识库an have many products.
I have a hierarchical structure like this: class Node { Node Parent; string Name; string Code; } and I need to reflect in nhibernate mapping files that the combinations (Parent, Name) 开发者_StackO
I\'d like to know, How Could I map (with fluent nhibernate) this model: public class Category { private IList<Product> _products;
Is this possible without mapping the join table to a domain entity? For example if I have the following three tables, account and note are joined by the table account_note.开发者_开发问答Can i map a