1-how to use the view (max for exemple) give me an exemple the code please?
(i don't understand the document)
Do you mean you want to get the MAX value of a column?
If so please consult the LLBLGen Pro manual, "Using the generated code -> Field expressions and aggregates"
2-how to use MoveLast in C#
The questionis not clear enough, I'll try to answer it in the context of my understanding.
In .NET there is nothing like the old recordset, you can use a dataReader, but this is forward only and doesn't have the MoveLast, MoveFirst..etc implemented.
So if you want to go to the last record of some resultSet, you may use a BindingSource which has MoveLast implemented.