nHibernate is an ORM. I don't know you're requirements. nHibernate aould
replace pretty much your whole data acess layer if used. Checkout
hibernate.org.
--
Simon Hart
Visual Developer - Device Application Development MVP
http://www.simonrhart.com
"Dom" wrote:
> On Apr 18, 7:18 am, Simon Hart [MVP] <srhart...@yahoo.com> wrote:
> > You could easily do this using nHibernate too. Implement the IInterceptor
> > interface then you can catch pre-write post write etc operations.
> > --
> > Simon Hart
> > Visual Developer - Device Application Development MVPhttp://www.simonrhart.com
> >
> >
> >
> > "Dom" wrote:
> > > I have a program used by many people. Each person makes changes in a
> > > database. I would like to have all the users see these changes soon
> > > after they are made.
> >
> > > Is there some way to do this in CSharp?
> >
> > > Ideally, I would like something like:
> >
> > > SetWatchPoint (Database, Table, CallbackRoutine)
> >
> > > CallbackRoutine ()
> > > {
> > > [Code to handle the changes]
> > > [For example, add new records to a listbox]
> > > }
> >
> > > Thanks a lot,
> > > Dom- Hide quoted text -
> >
> > - Show quoted text -
>
> Thanks for the tip. I know nothing about Hibernate. Can you point me
> to some classes, or an article? If not, Jowcoll1 had the best
> suggestion.
>
> Dom
>