Browse by Tags
All Tags »
O/R Mapping (
RSS)
Don't know if you can still see this post via your RSS reader. just started from yesterday Feedburner had my old feed http://feeds.feedburner.com/rextangtw changed to a RSS redirect tag like this. <? xml version="1.0" ?> < redirect > <...
Just for your reference here if you didn't see the main page , this "Past" blog is the archive of my previous blog hosted at http://blog.rex.la . All the links at http://blog.rex.la will correctly links to posts here (through URL rewriting), so that all...
My situation as follows: I am developing my project with my team using SQL Server as testing database, the production environment will use Oracle to host the data. We used NHibernate 1.0.0 as the O/R Mapper to deal with database transparency and focus...
Took me some time to find out the problem. I was saving my serialized objects xml string to my database. SQL server nvarchar had a max length of 4000 chars, it's better to use a ntext to storing those xml string. later found that the data saved to database...
It's not news anymore, NHibernate finally got its 1.0 release , not a beta or RC anymore. Saw this announcement stated at 10/17 couple days ago that NHibernate joins Hibernate at JBoss Inc. , which stated: NHibernate is a port of Hibernate 2.1 to the...
ok. it's been a while not getting into some serious development projects, as I was busy preparing my Japanese Proficiency Test coming at December. now my new project is getting into building fundamental application blocks and I decided to improve my O...
just saw from TheServerSide.Net , NHibernate 0.9 is released , Release Note here . the changes as follows (from Release Note ): Build 0.9.0.0 ======================== - Added ISession.Clear(). - Added configurable command timeout property (hibernate.command_timeout...
I think it should be the BASIC for advanced developers as well as solution architects to be able to 1. Read a pattern 2. Understand a pattern 3. Implement a pattern 4. Merge a pattern into solutions Martin Fowler is a noted software engineer expert. His...
When one made the system run as what stated in specification document, next one will be challenged with performance. seems it's normal in performing software development projects. The key things about using NHibernate are: Correct O/R Mapping files (...
Been busy days for months, my project is going to online soon. it's sort of a data retrieving project and I used NHibernate as the O/R Mapper for data. one thing found soon is that it's easily changing data store between different database systems. my...
if you read the whole Hibernate in Action book, you'll find that in Java world, people use "set" collection often. most of the NHibernate articles and examples followed Hibernate 's Java trend, using <set> to map one-to-many and many-to-many relationships...
I've been busying mapping my business tier objects to data-tier using NHibernate , an excellent port from Hibernate in Java world. 2 things to say. first, the xml schema for the mapping file is sort of clear and excellent, but you should take some time...
I found something while doing my project using NHibernate as the O/R Mapper. I got a table that stores multiple category-item data inside it. used a column 'type' to distinguish groups of values. thus it's obvious to use SubClass tag with discriminator...
ok... this is what I've learned from today's workshop of my project... from my previous post , I've selected LLBLGen Pro and NHibernate to start on ORM tools. LLBLGen Pro just updated to v1.0.2004.2 at 10-may-2005, while NHibernate just released v0.8...
Tired of writing those Object to/from Database codes? I am very tired of it! everytime started a new project, mostly first to define the architechture, then define the object classes, and then database schema, when those overall structures are defined...