Showing related tags and posts accross the entire site.
-
Hi all ! First, thanks for this wonderful that is .NetTiers ! It saved my days of work ! I have a question about the generated select methods and their use in strongly type datasources. I understood that Find is more secure than GetPaged (or is it GetAll) because it uses prepared statements and thus...
-
A feature I've seen in a lot of DALs and have used in the past is the ability to pass an entity instance to a search method (e.g., Find(), GetPaged()) in order to pass search parameters. I find this approach particularly elegant, personally, and was surprised not to find it in .netTiers. I would see...
-
Call me a purist, but Dynamic SQL gives me the shivers. There are clearly cases where it's unavoidable, of course, and thus the use of it in _GetPaged. I'm wondering, however, if it wouldn't be possible to limit these situations by boosting the interface for the _Find stored procedure. One approach I...