Click here to Skip to main content
15,881,852 members
Articles / Programming Languages / C#

Using NHibernate in COM+ (.NET Enterprise Services) Distributed Transactions

Rate me:
Please Sign up or sign in to vote.
4.20/5 (7 votes)
2 Feb 20065 min read 47.8K   534   29  
Shows how to use NHibernate in a COM+ distributed transaction.
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Table1]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[Table1]
GO

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Table2]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[Table2]
GO

CREATE TABLE [dbo].[Table1] (
	[Table1Id] [int] IDENTITY (1, 1) NOT NULL ,
	[Table1Num] [int] NOT NULL 
) ON [PRIMARY]
GO

CREATE TABLE [dbo].[Table2] (
	[Table2Id] [int] IDENTITY (1, 1) NOT NULL ,
	[Table2Num] [int] NOT NULL 
) ON [PRIMARY]
GO

ALTER TABLE [dbo].[Table1] WITH NOCHECK ADD 
	CONSTRAINT [PK_Table1] PRIMARY KEY  CLUSTERED 
	(
		[Table1Id]
	)  ON [PRIMARY] 
GO

ALTER TABLE [dbo].[Table2] WITH NOCHECK ADD 
	CONSTRAINT [PK_Table2] PRIMARY KEY  CLUSTERED 
	(
		[Table2Id]
	)  ON [PRIMARY] 
GO

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer Microsoft
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions