Does Castle ActiveRecord supports SQL formula as supported by nHibernate?
E.g. In nHibernate we can do something like this.
<property name="CountOfPosts"
formula="(select count(*) from Posts where Posts.Id = Id)"/>
Is this supported in Castle Active Record?