That is correct.
I use VB instead of C#; I tried to use
Dim customerView As New EntityView2(Of CustomerEntity)(customers)
or
Dim customerView As EntityView2 = customers.DefaultView
But failed miserably for some reason. The error being:
Array bounds cannot appear in type specifiers.
and
Too few type arguments to 'SD.LLBLGen.Pro.ORMSupportClasses.EntityView2(Of TEntity)'
respectively!
Then, after reading a few threads on this forum, I tried
Dim customerView As IEntityView2 = customers.DefaultView
And it worked fine.
Something wrong here.
PS: 'customers' above was an EntityCollection.