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

Related Questions

Hopefully there's a solution/patch to SubSonic SimpleRepository where I can specify a column/property with
I have a non-nullable database column which has a default value set. When inserting
I have a table of 3 columns: AuthorID (id can be repeated) JournalName (name
How can I print the columns specified in fields_i_want instead of hardcoding the column
How can I create equal height columns in CSS? All I have found searching
I have a document generator which contains queries for about 200 items at the
For example, I have a table which contains the columns: english_description french_description italian_description When
I bound a ListView to a List(Of List(Of Integer)). I can specify the columns
In CSS, you can specify the spacing between table cells using the border-spacing property
I have a data table 44 columns wide that I need to write to

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.