vote up 0 vote down star

What is the best way to generate a unique number for a business key?

In the example below, our customer wants a number (OrderNumber) they can use to refer to an Order.

<class name="Order">
  <id name="Id" ... />

  <property name="OrderNumber" column="order_number" />

</class>
flag
What's your Id generator? Why don't you use that as Id? Are there any requirements on the OrderNumber (like sequential etc.?) – Rashack May 15 at 18:51
Whats your requirement on OrderNumber, Can it be any number or string and number or etc? – Sathish Naga May 15 at 19:44
OrderNumber must be a sequential number. Holes are ok. The Id is a Guid assigned by the application. We don't want to use a business identifier (OrderNumber) as a primary key. Is is possible to use a nHibernate generator on a regular property? – Brian May 15 at 20:16

1 Answer

vote up 3 vote down check

I've found that the best way to perform these tasks is to write them in code and not leak them into the data layer. I don't let NHibernate calculate it. I treat this concept as a fully fledged feature of the application. This is nice because I can write tests for it and have flexibility. Sometimes there are other factors involved in calculating the next sequence number, like a relationship to another entity. Maybe you want sequential order numbers within the realm of a client: 02-001, 02-002 for client 02 and 01-001, 01-002 for client 01.

So I promote the concept of a SequneceNumber to a domain model object, map it with NHibernate and do the logic on my side. Whenever I need a new one, I use an interface that looks something like

public interface ISequenceRepository
{
    string GetNextSequenceNumber(Customer customer);
}

And it manages the current sequence number in one record (per Customer) in a database table. Whenever I call this function it increments the place-keeper in the database and returns the value.

A factory depends on this interface and uses it to build up the objects that need a sequence number.

link|flag
Great points Matt. Thank you. – Brian May 17 at 17:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.