Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 169425
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T12:37:42+00:00 2026-05-11T12:37:42+00:00

Id columns can specify a generator. Perfect. However, I have a situation in which

  • 0

Id columns can specify a generator. Perfect.

However, I have a situation in which I need to assign a generated value to a property column if it is null. Think something along the lines of an invoice table where there’s a surrogate primary key column and an Invoice Number column.

CREATE TABLE dbo.Invoice (InvoiceId INT NOT NULL PRIMARY KEY IDENTITY(1,1), InvoiceNumber INT NOT NULL, InvoiceDate DATETIME NOT NULL, remaining columns...)

This isn’t a default value. The Invoice Number might have certain rules around it’s generation. I have a C# class that handles the actual generation, I just need to find a way to populate the value of the property on the Invoice class.

Ideally I’d be able to specify a generator for a property like I do for an Id in the mapping. Unfortunately, that doesn’t seem possible from what I can determine. I’m hoping I’m wrong.

I have other, non-nHibernate options I could employ like using a trigger, inserting the generation into the provider. However, I’d like to keep it a configuration option rather than a coding option.

Does anyone know if a such an ability exists?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T12:37:43+00:00Added an answer on May 11, 2026 at 12:37 pm

    Sorry for the late answer, but I recently ran into the same problem as you. I backtraced a bit in the NHibernate source and seems like I found a solution.

    You can use the NHibernate.Id namespace for Guid generation. There’s 2 viable options – letting your client generate the Guid or letting the native DB do it.

    These are the classes you need:

    • NHibernate.Id.NativeGuidGenerator //DB generation
    • NHibernate.Id.GuidGenerator //Client generation

    Using the NHibernate.Id.NativeGuidGenerator-class can be accomplished by something like this:

    public Guid GetNewSessionId() {     NHibernate.Id.NativeGuidGenerator guidGen = new NHibernate.Id.NativeGuidGenerator();     return (Guid)(guidGen.Generate((NHibernate.Engine.ISessionImplementor)anOpenSession, null)); } 

    Good luck with it 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 93k
  • Answers 93k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer PowerShell has what's called a PSObject that is a wrapper… May 11, 2026 at 6:34 pm
  • Editorial Team
    Editorial Team added an answer At the moment, Foreign keys and lookup tables in Entity… May 11, 2026 at 6:34 pm
  • Editorial Team
    Editorial Team added an answer I agree with Dan Herbert. Put the path in web.config… May 11, 2026 at 6:34 pm

Related Questions

I'm considering using Annotations to define my Hibernate mappings but have run into a
Here's an excerpt of my current database (changed the table-names for an easier understanding):
I would like to provide a WHERE condition on an inner query by specifying
I've been trying to design a database schema for a side project but I

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.