Re: [fluent-nhib] eager loading

2012-10-30 Thread Joe Brockhaus
I suspect you need a .Distinct() -- Joe Brockhaus joe.brockh...@gmail.com On Tue, Oct 30, 2012 at 12:13 PM, rema wrote: > That worked. Thanks. > > However, as my next requirement the class definition has changed to: > > public class Customer > { > public

[fluent-nhib] Re: [nhusers] nHibernate Session.Close does not close Oracle sessions

2012-09-28 Thread Joe Brockhaus
ous purist rant reminiscent of MS trolling, especially since you weren't helpful.. Personally, I think we're past that age of the internet. -- Joe Brockhaus joe.brockh...@gmail.com On Fri, Sep 28, 2012 at 3:40 AM, Ramon Smits wrote: > >> >> Please

Re: [fluent-nhib] Re: Subclassmap + Inverse

2012-07-13 Thread Joe Brockhaus
sounds like a good idea. fyi, that column is considered a discriminator column, for when you want to look into how to make nhibernate hydrate the correct type of entity based on the row type. -- Joe Brockhaus joe.brockh...@gmail.com On Fri, Jul 13, 2012 at 3:18 PM, Peter

Re: [fluent-nhib] Re: Subclassmap + Inverse

2012-07-11 Thread Joe Brockhaus
rs on your References mapping in the BaseAddressMap. -- Joe Brockhaus joe.brockh...@gmail.com On Wed, Jul 11, 2012 at 2:58 PM, Carl Bussema wrote: > Are there any real differences between the different types of Address? > > Could you just use > &g

Re: [fluent-nhib] Re: Subclassmap + Inverse

2012-07-11 Thread Joe Brockhaus
s(x => x.AddressTypeOne) .Column("AddressTypeOneID"); // the column in ParentTable that points to the address base.References(x => x.AddressTypeTwo) .Column("AddressTypeTwoID"); AddressMap base.Id(x => x.ID); // ... -- Joe B

Re: [fluent-nhib] Re: Subclassmap + Inverse

2012-07-11 Thread Joe Brockhaus
e-use) ParentEntityTable - ID - ... AddressTable - ID - ... ParentAddress - ParentID - AddressID OR (no address re-use) (parent table same) AddressTable - ID - ParentID - ParentIDType (if parents are stored in various tables with overlapping ids) -- Joe Brockhaus joe.brockh...@gmail.com

Re: [fluent-nhib] Explicit value for identity column error on insert with nHibernate relationship

2012-03-28 Thread Joe Brockhaus
g location newBLocation.Booking = newBooking; // set booking instance on booking location newBooking.BookingLocations.Add(newBLocation); // add new booking location to booking -- Joe Brockhaus joe.brockh...@gmail.com On Wed, Mar 28, 2012 at 1:38 PM, Joe Brockhaus wrote: > It d

Re: [fluent-nhib] Explicit value for identity column error on insert with nHibernate relationship

2012-03-28 Thread Joe Brockhaus
tory. This must not have been happening before. Did you change anything else other than your mappings? -- Joe Brockhaus joe.brockh...@gmail.com On Wed, Mar 28, 2012 at 1:29 PM, James Farrell wrote: > Hey Joe, > > I got this working eventually, but instead of passing

Re: [fluent-nhib] Explicit value for identity column error on insert with nHibernate relationship

2012-03-28 Thread Joe Brockhaus
I've replied to your S/O question ------ Joe Brockhaus joe.brockh...@gmail.com On Wed, Mar 28, 2012 at 7:30 AM, James Farrell wrote: > Hi Everyone, > > I'm completely stuck on this problem: > > > http://stackoverflow.com/questions/9904507/explicit-val

Re: [fluent-nhib] Re: Meta-NHibernate?!

2012-02-08 Thread Joe Brockhaus
nsider. I'm not even sure if in NHproper you have to do this, but I'm thinking it's the case. -- Joe Brockhaus joe.brockh...@gmail.com On Wed, Feb 8, 2012 at 9:02 AM, Tim Scott wrote: > Castle ActiveRecord also has mapping via attributes. A little simpl

Re: [fluent-nhib] Re: Any better ideas?

2012-02-06 Thread Joe Brockhaus
-- Employee {ID = 1 } - this is want you want -- Customer { ID = 1 } -- Project { ID = 2 } -- Employee {ID = 3 } So, as long as you are using Guids for IDs in all your entities that have many addresses, you should be ok. -- Joe Brockhaus joe.brockh...@gmail.com On Mo

RE: [fluent-nhib] Re: Any better ideas?

2012-02-04 Thread Joe Brockhaus
BaseAddress is the Many side and has no Reference back to Customer(and others). So i appreciate any suggestions Thanks Peter On 3 Feb., 15:49, Joe Brockhaus wrote: > *  does *it* (BaseAddressMap) have a References > -- > Joe Brockhaus > joe.brockh...@gmail.com >

Re: [fluent-nhib] Any better ideas?

2012-02-03 Thread Joe Brockhaus
* does *it* (BaseAddressMap) have a References wrote: > does it have a References -- You received this message because you are subscribed to the Google Groups "Fluent NHibernate" group. To post to this group, send email to fluent-nhibernate@googlegroups.com. To unsubscribe from this group, sen

Re: [fluent-nhib] Any better ideas?

2012-02-03 Thread Joe Brockhaus
perhaps it would be good to know what's wrong? does the BaseAddress table have a column of name "Foreignkey" ? does it have a References(x=>x.Customer).Column("Foreignkey") do you have other entities that derive from Customer? -- Joe Brockhaus joe.brockh...@gma

Re: [fluent-nhib] Re: Category/Subcategories doubt

2012-01-27 Thread Joe Brockhaus
you might want to try the DistinctRootEntityResultTransformer I use the Criteria API - not sure how you would do it with the Linq provider var crit = session.CreateCriteria() .Add(...) .SetResultTransformer(new DistinctRootEntityResultTransformer()); -- Joe Brockhaus joe.brockh

Re: [fluent-nhib] Re: Any idea when new version (> 1.3.0.717) of NuGet package for FNH will be released

2012-01-27 Thread Joe Brockhaus
I, for one, am a bit jealous of the move to Australia. You and your summers in my winters! ;-) the absence is understandable -- Joe Brockhaus joe.brockh...@gmail.com On Fri, Jan 27, 2012 at 5:20 AM, James Gregory wrote: > Sorry everyone for my absence. I've been

Re: [fluent-nhib] Re: Any idea when new version (> 1.3.0.717) of NuGet package for FNH will be released

2012-01-26 Thread Joe Brockhaus
osed return. it seems post approval was removed .. perhaps that's an indication of something? -- Joe Brockhaus joe.brockh...@gmail.com On Thu, Jan 26, 2012 at 3:37 PM, tbushell wrote: > > > I personally do not like the NH fluent mappings at all, and would rather >

Re: [fluent-nhib] Re: Any idea when new version (> 1.3.0.717) of NuGet package for FNH will be released

2012-01-25 Thread Joe Brockhaus
r. now that NH itself has code-first/fluent configuration ability .. are there really features & functionality FNH offers that the NH core doesn't? -- Joe Brockhaus joe.brockh...@gmail.com -- On Wed, Jan 25, 2012 at 1:09 PM, tbushell wrote: > I'd like to know that too,

Re: [fluent-nhib] FluentNHibernate + Spec#

2011-12-19 Thread Joe Brockhaus
ah hah! well that's odd. is spec# dead, then? ------ Joe Brockhaus joe.brockh...@gmail.com On Mon, Dec 19, 2011 at 4:29 PM, Miguel Alves wrote: > > The problem is that Spec# works with .Net v2 and the lambda expressions > are from the version 3 so it's not pos

RE: [fluent-nhib] FluentNHibernate + Spec#

2011-12-18 Thread Joe Brockhaus
: 12/18/2011 10:48 AM To: Joe Brockhaus Subject: Re: [fluent-nhib] FluentNHibernate + Spec# The error is at Id(*x=>x.Id*) and *m*.FluentMappings.AddFromAssemblyOf().ExportTo(@"C:\Users\Administrator\Documents\Visual Studio 2010\Projects\DevelopmentManagerNotVerified\DevelopmentManagerNot

RE: [fluent-nhib] FluentNHibernate + Spec#

2011-12-18 Thread Joe Brockhaus
Phone -- From: Joe Brockhaus Sent: 12/18/2011 10:36 AM To: Miguel Alves; Fluent NHibernate Subject: RE: [fluent-nhib] FluentNHibernate + Spec# I've never used spec# but it doesnt seem lile your problem is that. It seems like your project isn't targeting the rig

RE: [fluent-nhib] FluentNHibernate + Spec#

2011-12-18 Thread Joe Brockhaus
d make sure the compilation target version is not .net 2.0 What version of visual studio are you using? Sent from my Windows Phone -- From: Miguel Alves Sent: 12/18/2011 1:50 AM To: Joe Brockhaus Subject: Re: [fluent-nhib] FluentNHibernate + Spec# For example if I ha

RE: [fluent-nhib] FluentNHibernate + Spec#

2011-12-17 Thread Joe Brockhaus
Does everything compile if you omit Id(x=>x.Id);? Sent from my Windows Phone From: Miguel Alves Sent: 12/18/2011 1:02 AM To: Fluent NHibernate Subject: [fluent-nhib] FluentNHibernate + Spec# Hello, I am developing a project using Spec#. I was wondering if Spec# and FluentNHibernate are compatibl

Re: [fluent-nhib] Re: criteria.List problems

2011-11-10 Thread Joe Brockhaus
you'll have to add a reference to HibernatingRhinos.Profiler.Appender.v4.0 then in your app when it starts up.. NHibernateProfiler.Initialize(); ------ Joe Brockhaus joe.brockh...@gmail.com On Thu, Nov 10, 2011 at 2:45 PM, kimbered wrote: > Hi! > > Thank

Re: [fluent-nhib] Re: criteria.List problems

2011-11-10 Thread Joe Brockhaus
also, can you post your mappings? -- Joe Brockhaus joe.brockh...@gmail.com On Thu, Nov 10, 2011 at 10:43 AM, Oskar Berggren wrote: > Joins can also be given in the mappings. Use nhprof or regular logging > to a text file to get the exact SQL executed. > > /Oskar &

Re: [fluent-nhib] criteria.List problems

2011-11-10 Thread Joe Brockhaus
, would be a big help. Also, I'd fire up NHProf to see what is being executed, so you can execute the same query in your external DB tool .. as the results might give you some insight. ------ Joe Brockhaus joe.brockh...@gmail.com On Wed, Nov 9, 2011 at 4:28 PM, Oskar Berggren

Re: [fluent-nhib] Transaction unit-of-work not working

2011-11-10 Thread Joe Brockhaus
also, you will probably get better help in the nhusers group, as this is primarily the fluent-specific group -- Joe Brockhaus joe.brockh...@gmail.com On Thu, Nov 10, 2011 at 9:42 AM, Joe Brockhaus wrote: > I think you're right in thinking that your code shoul

Re: [fluent-nhib] Transaction unit-of-work not working

2011-11-10 Thread Joe Brockhaus
o you have NHProfiler running? If not, I would suggest using it to hopefully get a better understanding of what's going on. -- Joe Brockhaus joe.brockh...@gmail.com On Wed, Nov 9, 2011 at 7:22 PM, The Last Ottoman wrote: > Hi all, > > I used unit-of-work pattern all

Re: [fluent-nhib] How do you do joins using ORM like FluentNHibernate?

2011-10-08 Thread Joe Brockhaus
does using Linq like that, with a select, equate to projections with criteria? (aka, would it ignore fetching an association that is not included in the select, that might be mapped with a join? it's just much more legible than criteria :D) ------ Joe Brockhaus joe.brockh...@gmai

Re: [fluent-nhib] One to many - Posts and Tags (noob!)

2011-09-29 Thread Joe Brockhaus
> I'm sorry if this is an EXTREMELY noobish question! >> > >> > -- >> > You received this message because you are subscribed to the Google >> > Groups "Fluent NHibernate" group. >> > To post to this group, send email to fluent-nhibernate

Re: [fluent-nhib] How do you do joins using ORM like FluentNHibernate?

2011-09-29 Thread Joe Brockhaus
> fluent-nhibernate+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/fluent-nhibernate?hl=en. > > -- Sent from my mobile device -- Joe Brockhaus joe.brockh...@gmail.com -- You received this message because you are

Re: [fluent-nhib] Re: Newby question about mapping

2011-09-19 Thread Joe Brockhaus
sorry. premature send. public class MyMap: Classmap { public const string TABLE = "MY_TABLE"; public static class Fields { public const string MY_ID = "MY_ID"; public const string FIELD_1 = "FIELD_1"; } public MyMap() { base.Table(MyMap.TABLE); base.

Re: [fluent-nhib] Re: Newby question about mapping

2011-09-19 Thread Joe Brockhaus
the Map, Table, Id methods all have an overload that takes a string for the DB column name. ie: public class MyMap: Classmap { public static class Fields public MyMap() { base.Id(x=>x.Id, } } -- Joe Brockhaus joe.brockh...@gmail.com On Sat, Sep 17, 2011

Re: [fluent-nhib] Password Confirmation Fields with Fluent NHibernate

2011-08-08 Thread Joe Brockhaus
not that you might not get the answer here .. just that it's more active I think than this, and it seems like an NH question, rather than an FNH one. (I've had trouble ascertaining the ability to map things one way for one action and then another way for another action. ) -- You received this mes

Re: [fluent-nhib] Password Confirmation Fields with Fluent NHibernate

2011-08-08 Thread Joe Brockhaus
you might be better off seeing if this is possible by asking in the nhusers group first -- Joe Brockhaus joe.brockh...@gmail.com On Mon, Aug 8, 2011 at 11:45 AM, Steve wrote: > Hi there, > > I'm new to NHibernate and am trying to build my first simple website. &

Re: [fluent-nhib] FYI: NHibernate 3.2.0GA released!

2011-07-30 Thread Joe Brockhaus
sorry for not being more familiar with this process, but what should I do to update my project with the latest NH without breaking FNH or other items like iesi/castle/cache providers? (understand those last 3 aren't really this list's responsibility..) -- Joe Brockhaus joe.brockh...

Re: [fluent-nhib] Select N+1 for child entities

2011-06-23 Thread Joe Brockhaus
ite cache from the parent, and the child mapping also has read-write & not lazy set. Will upping batch-size improve performance for me? -- Joe Brockhaus joe.brockh...@gmail.com -- On Thu, Jun 23, 2011 at 11:32 AM, Oskar Berggren wrote: > batch-size in your mappings. > > /Oskar

Re: [fluent-nhib] Re: Polymorph column map.

2011-04-27 Thread Joe Brockhaus
ooh, gotcha. thanks -- You received this message because you are subscribed to the Google Groups "Fluent NHibernate" group. To post to this group, send email to fluent-nhibernate@googlegroups.com. To unsubscribe from this group, send email to fluent-nhibernate+unsubscr...@googlegroups.com. For

Re: [fluent-nhib] Re: Polymorph column map.

2011-04-26 Thread Joe Brockhaus
Rasmoo, when you say FK's .. do you mean FK id properties (using Map()), or FK objects which reference FK columns (through the object mapping) in the DB (that are otherwise *not* mapped via fluent via a Map()) ------ Joe Brockhaus joe.brockh...@gmail.com On Mon, Apr 25, 2011

Re: [fluent-nhib] Formula is cached? How to avoid that?

2011-03-21 Thread Joe Brockhaus
no clue if this will work, but did you try .Generate.Always() ? -- You received this message because you are subscribed to the Google Groups "Fluent NHibernate" group. To post to this group, send email to fluent-nhibernate@googlegroups.com. To unsubscribe from this group, send email to fluent-n

Re: [fluent-nhib] Re: Where's the wiki documentation for HasMany collection mapping?

2011-02-07 Thread Joe Brockhaus
well, so far this discussion has been about the community's (or at least a loud subset) disagreement with Microsoft's take on the matter. I'm not trying nor wanting to get into the middle of that. People are starting an argument with me about my domain. A domain which doesn't prevent me from accom

Re: [fluent-nhib] Re: Where's the wiki documentation for HasMany collection mapping?

2011-02-07 Thread Joe Brockhaus
lol. i'd donate to the cause but i dont think it would make you think any deeper than where you stopped, which was "boo your entity has a FK in it, and even tho it shouldnt matter (and even tho NHib should be able to work around it), i'm going to stop helping you because i dont like how you're doin

Re: [fluent-nhib] Re: Where's the wiki documentation for HasMany collection mapping?

2011-02-07 Thread Joe Brockhaus
i'm sorry, you got the attitude first. non-answers, personal-opinion-first responses ... i didn't come here asking to get into a jousting match about your preference, did i? I asked how i would do something, given the expertise of the community. -- You received this message because you are subsc

Re: [fluent-nhib] Re: Where's the wiki documentation for HasMany collection mapping?

2011-02-07 Thread Joe Brockhaus
or, if what i'm trying to do won't work because NHib is getting confused about a TicketID property on my domain with the same name as the TicketID column in the database, you could suggest that I put another column on my table that is GarbageColumnToEaseJamesMind and a property in my domain to matc

Re: [fluent-nhib] Re: Where's the wiki documentation for HasMany collection mapping?

2011-02-07 Thread Joe Brockhaus
or you could answer all of my questions by prefacing your response with "If you take the TicketID property out of your domain ... " -- You received this message because you are subscribed to the Google Groups "Fluent NHibernate" group. To post to this group, send email to fluent-nhibernate@googl

Re: [fluent-nhib] Re: Where's the wiki documentation for HasMany collection mapping?

2011-02-07 Thread Joe Brockhaus
OK fine. forget my entity doesn't have another property which just happens to be a FK. wow magic! look it's gone! you don't have to be confused anymore. Now ... how about answering all of the questions which don't have anything to do with that? Or if you need something easier, help me translate

Re: [fluent-nhib] Re: Where's the wiki documentation for HasMany collection mapping?

2011-02-07 Thread Joe Brockhaus
ecause YOU or I know that TicketID is a FK, doesn't mean NHib does, right -- It should just be another field. A field that is read from the database AFTER the row is inserted or updated? -- Joe Brockhaus joe.brockh...@gmail.com On Sat, Feb 5, 2011 at 7:27 PM, Joe Br

Re: [fluent-nhib] Re: Where's the wiki documentation for HasMany collection mapping?

2011-02-05 Thread Joe Brockhaus
James, what are your thoughts on this? http://www.codeproject.com/KB/silverlight/Ria_and_Nhibernate.aspx?msg=3759599#xx3759599xx Seems to be a working example. Furthermore, if NHib doesn't need my FK in the entity, then so be it. How can i keep FNH from caring that my entity has the property? If I

Re: [fluent-nhib] Re: Where's the wiki documentation for HasMany collection mapping?

2011-02-05 Thread Joe Brockhaus
google has done that to me enough that i never reply on the site. As for everything else -- I'll have to think about the situation a little more. I'm still going to make it work -- just not sure how, atm. Then the official answer won't be, "sorry, that kind of complicated isn't supported" ;-) --

Re: [fluent-nhib] Re: Where's the wiki documentation for HasMany collection mapping?

2011-02-04 Thread Joe Brockhaus
If i add: Cascade.SaveUpdate() to the HasMany() in TicketMap && Not.Insert() on the NoteMap References() .. save scenario no longer works: error is that the FK doesn't exist. -- unlike before, the Note Insert is NOT getting the updated TicketID. (though, I don't know if this is because of Not

Re: [fluent-nhib] Re: Where's the wiki documentation for HasMany collection mapping?

2011-02-04 Thread Joe Brockhaus
inserting those 4 items (1 ticket, 3 notes): 1 insert Ticket, 3 Insert Note (with valid FK's, assuming i order it all correctly into the session), and 3 Update Note (updating values which are already valid and inserted). I'm really hoping you can make sense of all that. I made it as cle

Re: [fluent-nhib] Re: Where's the wiki documentation for HasMany collection mapping?

2011-02-04 Thread Joe Brockhaus
s there another, better way to solve this? Just seems counter-intuitive...but I suppose if you were foreign-keying off a column that you weren't mapping, then you wouldn't want to force References() to have an expression to map the field? -- Joe Brockhaus joe.brockh...@gmail.com

Re: [fluent-nhib] Re: Where's the wiki documentation for HasMany collection mapping?

2011-02-03 Thread Joe Brockhaus
nevermind the List question. I don't have indexes stored with the rowdata. -- You received this message because you are subscribed to the Google Groups "Fluent NHibernate" group. To post to this group, send email to fluent-nhibernate@googlegroups.com. To unsubscribe from this group, send email t

Re: [fluent-nhib] Re: Where's the wiki documentation for HasMany collection mapping?

2011-02-03 Thread Joe Brockhaus
for simple collections (non-dictionary): i have my Domain posted here: http://j.mp/eOI3qS 1) What is the difference between AsBag() and AsList(), and how can i use AsList()? Should I? 2) Are the KeyColumn, Column, and ForeignKey all required? What do the various combinations of these methods mean

Re: [fluent-nhib] Re: inheritance mapping

2011-02-03 Thread Joe Brockhaus
NSes?) * ID TYPE * EntityBase ->1 "EntityBase" EntityChildA -> 2 "EntityChildA" EntityChildB -> 3 "EntityChildB" -- Joe Brockhaus joe.brockh...@gmail.com On

Re: [fluent-nhib] Where's the wiki documentation for HasMany collection mapping?

2011-02-02 Thread Joe Brockhaus
were you able to find a solution to your problem? i'm having the same issue. er well, that is the same problem finding how to do it correctly. -- You received this message because you are subscribed to the Google Groups "Fluent NHibernate" group. To post to this group, send email to fluent-nhib

Re: [fluent-nhib] Re: inheritance mapping

2011-01-27 Thread Joe Brockhaus
se I couldn't change the CLR User object to have all virtual properties :-x. I suppose what I did for User I could do for all these other types ... ) -- Joe Brockhaus joe.brockh...@gmail.com -- On Thu, Jan 27, 2011 at 4:37 AM, James Gregory wrote: > You're not doing basic i

[fluent-nhib] Re: inheritance mapping

2011-01-26 Thread Joe Brockhaus
ok, if no one can answer, can someone point me in the direction of the hard-to-find documentation for BASIC inheritance mapping? -- Joe Brockhaus joe.brockh...@gmail.com -- On Mon, Jan 24, 2011 at 7:29 PM, Joe Brockhaus wrote: > I should add this is obviously not how i would like

[fluent-nhib] Re: inheritance mapping

2011-01-24 Thread Joe Brockhaus
I should add this is obviously not how i would like to have architechted the database On 1/24/11, Joe Brockhaus wrote: > for my 'easy' example, it would seem as though table-per-class is what i > need. > > How does one map that, Fluently? Documentation on this is l

Re: [fluent-nhib] Re: inheritance mapping

2011-01-24 Thread Joe Brockhaus
ference/en/html/inheritance.html ) Does anyone know if that Is that ONLY for that metaphor? If not, am I limited to *not *using abstract in TPC? Thanks -- Joe Brockhaus joe.brockh...@gmail.com -- On Mon, Jan 24, 2011 at 1:36 PM, Joe Brockhaus wrote: > OK, then I suppose ignore

Re: [fluent-nhib] Re: inheritance mapping

2011-01-24 Thread Joe Brockhaus
ide string SubTypeType {get {return "A";} } } public class EntityChild3B : EntityBase { public string 3BCustomProperty {get;set;} public override string Type {get {return "3B";} } public override string SubTypeType {get {return "B";} } } Thanks =) -- Joe Broc

Re: [fluent-nhib] Re: Stable Build with NHibernate 3.0

2010-12-10 Thread Joe Brockhaus
i just mean that I have more to do than spend work time doing what i should do in my free time. like i was saying before - we haven't run into an issue (keeping fingers crossed). That's why i wouldn't ask :) -- Joe Brockhaus joe.brockh...@gmail.com -- On Fri, Dec 10,

Re: [fluent-nhib] Re: Stable Build with NHibernate 3.0

2010-12-10 Thread Joe Brockhaus
so it's kinda like a spork? (spoon-fed fork) i'll /fail myself on that one, but i couldn't resist ;p -- Joe Brockhaus joe.brockh...@gmail.com -- On Fri, Dec 10, 2010 at 12:24 PM, James Gregory wrote: > Two days ago :) > > Obviously I forgot

Re: [fluent-nhib] Re: Stable Build with NHibernate 3.0

2010-12-10 Thread Joe Brockhaus
ported FNH? I'd like to be able to take the time to do this, but I can't bill my client for open source work lol -- Joe Brockhaus -- On Fri, Dec 10, 2010 at 12:05 PM, James Gregory wrote: > Prior to NH3 LINQ was a separate assembly. It was actually a contrib > project.

Re: [fluent-nhib] Re: Stable Build with NHibernate 3.0

2010-12-10 Thread Joe Brockhaus
more importantly, you can already use the NH3.0 Linq assembly with 2.x :-0 not sure if that's intentional, but it works, at least in my case (so far!) ------ Joe Brockhaus -- On Fri, Dec 10, 2010 at 11:03 AM, Stacey Thornton < stacey.cielia.l...@gmail.com> wrote: > Quick Q

Re: [fluent-nhib] Re: Split table contents across multiple POCOs

2010-11-19 Thread Joe Brockhaus
I'm not sure how relevant this is to the solution to the sequenced generators (obviously not an Oracle wizard), but I've been told they have sprocs wrapping them so I can get a new ID this way. -- Joe Brockhaus joe.brockh...@gmail.com -- On Fri, Nov 19, 2010 at 11:18 AM, Joe

Re: [fluent-nhib] Re: Split table contents across multiple POCOs

2010-11-19 Thread Joe Brockhaus
y to push those values closer to the actual commit time, I feel that would be best. (Not that we've identified any issue with that, yet, just trying to cover my bases..) Thanks for all your help! ~Joe -- Joe Brockhaus joe.brockh...@gmail.com -- On Fri, Nov 19, 2010 at 9:14 AM,

Re: [fluent-nhib] Re: Split table contents across multiple POCOs

2010-11-15 Thread Joe Brockhaus
.SomeCustomField1) I imagine i would start like so: TicketBaseMap : ClassMap where T : TicketBase ... but from there I'm not sure. Thanks! -- Joe Brockhaus joe.brockh...@gmail.com -- 2010/11/14 Asbjørn Ulsberg > On Wed, 10 Nov 2010 15:17:31 +0100, fel0nious wrote: > &g