-
-
Notifications
You must be signed in to change notification settings - Fork 0
Home
kccarter76 edited this page Jun 27, 2020
·
3 revisions
- minimize the references to 3rd party projects which use namespaces that can come into conflict with the .net core library.
- that being said extensions are easy to override, just remember to forward the call if it does not apply.
- expand understanding of the expression tree implemenation, expressions really are a rosetta stone for developers.
- keep the SQL statements generated by the DAL as simple as possible.
- utilize MARS statements when eagerloading data for an object graph.
- implement asynchonous operations at some point.
- support SQL Server, Oracle, MySql, etc. Database engines.
- apply TDD, DRY, YAGNI, and KISS principles where applicable.