nhibernate-core icon indicating copy to clipboard operation
nhibernate-core copied to clipboard

Obsolete `IProxyFactoryFactory.IsProxy` and `NHibernateProxyHelper.IsProxy` methods and replace their usages

Open hazzik opened this issue 6 years ago • 1 comments

hazzik avatar Apr 10 '19 09:04 hazzik

Would be possible to add custom interface markers from the domain to the proxy? I think this would be nice to hide the NH from the domain layer.

interface ILazy { }

// then when using that somewhere
if (root.Property is ILazy) {
  // do something
}

danfma avatar Jun 25 '22 13:06 danfma