Namespaces

Types in FluentNHibernate

Type Reveal

Namespace FluentNHibernate

Methods

Public static methods

Expression<Func<TEntity, object>> Member<TEntity>(string name)

Reveals a hidden property or field for use instead of expressions.
Parameters
string name

Name of property or field

Return
Expression<Func<TEntity, object>>

Expression for the hidden property or field

Expression<Func<TEntity, TReturn>> Member<TEntity, TReturn>(string name)

Reveals a hidden property or field with a specific return type for use instead of expressions.
Parameters
string name

Name of property or field

Return
Expression<Func<TEntity, TReturn>>

Expression for the hidden property or field

Expression<Func<TEntity, object>> Property<TEntity>(string propertyName)

Expression<Func<TEntity, TReturn>> Property<TEntity, TReturn>(string propertyName)