Chen Kinnrot
Chen Kinnrot

Reputation: 21015

Nhibernate and db notifications

is there any notification support that nhibernate has in its framework that cna be used to register db changes?

Upvotes: 0

Views: 542

Answers (2)

John Rayner
John Rayner

Reputation: 3535

If you mean something like the SqlDependancy and SqlNotification objects, then no it doesn't. These are driven by SQL Notification Services in MSSQL 2005 / 2008, whereas NHib works with a number of databases.

Cheers, John

Upvotes: 0

Sly
Sly

Reputation: 15247

You can configure log4net to log all queries into the file. How to do it you can find here Or if you need to perform some custom action before query you can use listeners

Upvotes: 1

Related Questions