tags:

views:

22

answers:

2

I have a entity mapped to a table and an extra column which is not mapped.

Is it possible to make a select using criteria and filter on that extra column?

+1  A: 

You could use Expression.Sql to create an arbitrary filter that can include unmapped columns. Lots of examples around.

Mauricio Scheffer
this was the one I was looking for. thanks
florin