Viewing 11 posts - 1 through 11 (of 11 total)
March 19, 2018 at 12:23 pm
I have some good news for you. The US Department of Homeland Security offers free IT (and other) security services to entities in the USA that fall under critical infrastructure....
March 18, 2018 at 10:15 pm
I wrote a related post about this years ago. It all still holds true IMHO: How to Fail at ORM
TLDR: I've seen the good and bad with...
September 29, 2017 at 7:53 am
There is plenty of proof in the wild that ORMs can scale. Take stackoverflow.com for example. They handle over 1 million requests a day and they use Linq2Sql. ORM is...
November 13, 2009 at 10:54 am
Between the "aggressive GET" mentality of some developers and the single query methods of those two products, I've spent a good amount of time cleaning up huge performance problems generated...
November 12, 2009 at 1:30 pm
katesl (10/29/2009)
Model the business relationships using entity-relation diagramming and get right to SQL programming written with understanding of the business relationships and understanding of the database engine.
There is an architectural...
October 29, 2009 at 12:47 pm
No offense taken. This is a fun topic to discuss.
What I'd love to see is being able to define relationships between object collections on the ORM, in an equivalent way...
October 29, 2009 at 12:20 pm
A set of objects (corresponding to a database table) is generally loaded with a single SELECT statement, but if related objects are wanted, child objects are generally loaded with one...
October 29, 2009 at 10:14 am
Here is a good description of N + 1:
http://nhprof.com/Learn/Alert?name=SelectNPlusOne
EDIT: I will add that Select N + 1 is not a problem that directly stems from using an ORM framework. It...
September 4, 2009 at 10:05 am
I can see the argument against table level access whether the danger is real or perceived (I think it varies from shop-to-shop). That being the case, it may be helpful...
September 4, 2009 at 9:29 am
Thanks for the reply. I did set the report execution to never timeout as opposed to the default 1800. I did this both on the global server setting and on...
March 17, 2008 at 3:31 pm
Viewing 11 posts - 1 through 11 (of 11 total)