Skip to content

Commit 56ba0ac

Browse files
author
Karl Chu
committed
Fixed broken build due to adding of ISession.GetEntityName()
SVN: trunk@3003
1 parent 6d6e4c6 commit 56ba0ac

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/NHibernate.Search/Impl/FullTextSessionImpl.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,11 @@ public T Get<T>(object id, LockMode lockMode)
330330
return session.Get<T>(id, lockMode);
331331
}
332332

333+
public String GetEntityName(object obj)
334+
{
335+
return session.GetEntityName(obj);
336+
}
337+
333338
public IFilter EnableFilter(string filterName)
334339
{
335340
return session.EnableFilter(filterName);

0 commit comments

Comments
 (0)