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

  • SEARCH
  • Home
  • 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 6001255
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T00:48:32+00:00 2026-05-23T00:48:32+00:00

I have this code to delete contact from my database and I have got

  • 0

I have this code to delete contact from my database and I have got this error:No persister for: System.Int32

protected void Button1_Click(object sender, EventArgs e)
{

  NHibernate.Cfg.Configuration config = new NHibernate.Cfg.Configuration();

  config.AddAssembly("ContactDomain");

  NHibernate.ISessionFactory factory = config.BuildSessionFactory();
  NHibernate.ISession session = factory.OpenSession();

  NHibernate.ITransaction transaction = session.BeginTransaction();

  Contact contact = new Contact();
  int contactid = 1;

  session.Delete(contactid);

  transaction.Commit();
  session.Close();
}

I have this code for creating new contact and it’s working:

protected void btnSaveContact_Click(object sender, EventArgs e)  
{
   NHibernate.Cfg.Configuration config = new NHibernate.Cfg.Configuration();

   config.AddAssembly("ContactDomain");

   NHibernate.ISessionFactory factory = config.BuildSessionFactory();
   NHibernate.ISession session = factory.OpenSession();

   NHibernate.ITransaction transaction = session.BeginTransaction();

   Contact contact = new Contact();

   contact.FirstName = txtFirstName.Text;
   contact.LastName = txtLastName.Text;
   contact.Email = txtEmail.Text;
   contact.Telephone = txtTelephone.Text;

   session.Save(contact);
   transaction.Commit();
   session.Close();
}
  • 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. Editorial Team
    Editorial Team
    2026-05-23T00:48:33+00:00Added an answer on May 23, 2026 at 12:48 am

    You cannot delete an entity that is not saved! try:

    Contact contact = new Contact();
    int contactid = 1; //are you managing manually entity id?
    
    
    session.SaveOrUpdate(contact);
    
    session.Delete(contact);
    

    update

    Contact contact=session.Get<Contact>(1);
    
    session.Delete(contact);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this code: array = ['notice', 'warning', 'error'] array.delete('notice') if flash[:notice] array.delete('warning') if
I have written this code which accesses the Delete method on Web Service x,
I have this line of code: delete_btn = uicontrol(rr_ops, 'Style', 'pushbutton', 'String', 'Delete Graphic',
i have this code for my webdb, i try to delete an item and
I have this code that won't delete all of my cookies, any idea y?
I have this code: $('.b-icon.b-icon_del').click(function(e) { showConfirmDialog('Are you sure you want to delete this
I have this code in my view: columns.Bound(o => o.jobname).Width(100); columns.Bound(o => o.objid) .Format(Ajax.ActionLink(delete,
I have code to delete the contact group with the contact group id like
I have this code $(.delete2).click(function() { $('#load2').fadeIn(); } I have dynamically added item via
I have this code in jQuery, that I want to reimplement with the prototype

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.