codeguru

Stories submitted by codeguru

The Liskov Substitution Principle (LSP ) « Maximum C#(maximumcs.wordpress.com)

submitted by codegurucodeguru(80) 2 years, 7 months ago

FUNCTIONS THAT USE POINTERS OR REFERENCES TO BASE CLASSES MUST BE ABLE TO USE OBJECTS OF DERIVED CLASSES WITHOUT KNOWING IT. read more...

add a comment |category: |Views: 102

tags: another

pleased precariously » minvoke - the p/invoke tool for linux(squeedlyspooch.com)

submitted by codegurucodeguru(80) 2 years, 10 months ago

this tool helps .net windows developers to map their native p/invoke calls to windows DLLs into linux ones. read more...

add a comment |category: |Views: 26

tags: another

Entity Framework 4 – Where Entity.Id in Array(rogeralsing.com)

submitted by codegurucodeguru(80) 2 years, 11 months ago

Force Entity Framework to issue an In (n,n,n,n) SQL statement with this trick read more...

add a comment |category: |Views: 38

tags: another

Rapid Entity Framework - Choose simplicity over complexity(maximumcs.wordpress.com)

submitted by codegurucodeguru(80) 2 years, 11 months ago

The Object Oriented Paradigm is shifting massively because coupling relational semantics into our fine grained object oriented programming designs is becoming unpopular in today's enterprise needs and domain engineering. Because of this reasons and many more, object oriented platforms is already taking a big quantum leap since the impedance mismatches between OOP and Relational has made programming against relational database an Herculean task for most development efforts. read more...

add a comment |category: |Views: 21

tags: another

Model-View-ViewModel Pattern(maximumcs.wordpress.com)

submitted by codegurucodeguru(80) 2 years, 11 months ago

Separating user interface code from everything else is a key principle in well-engineered software read more...

add a comment |category: |Views: 94

tags: another

CodeRun - Online Development Platform(maximumcs.wordpress.com)

submitted by codegurucodeguru(80) 2 years, 11 months ago

CodeRun is a browser-based Integrated Development Environment (IDE), built on top of the Amazon Elastic Compute Cloud (EC2). It allows programmers to easily develop, test, deploy and publish code online, without requiring powerful hardware or complex software. read more...

add a comment |category: |Views: 7

tags: another

Implementing Business Logic with Entity Framework(maximumcs.wordpress.com)

submitted by codegurucodeguru(80) 2 years, 11 months ago

How you can use Entity framework to do some basic logic when a change happens in related entities or “Associations” as it is called. And Example on how to update of an Order’s Total Amount when its Order Details get changed, Added or deleted using Entity Framework. read more...

1 comment |category: |Views: 332

tags: another

AJAX: Making LoginControl work in UpdatePanel(bishoyghaly.blogspot.com)

submitted by codegurucodeguru(80) 3 years, 7 months ago

So all of us likes the ease of using LoginControl in ASP.net because it saves time and is trusted to work correctly, right ? but guess what: it wont work with AJAX right away because its a composite user control (it does not the submit button to its parent UpdatePanel and also it uses Java Script validators that override UpdatePanel's postback) so we have to do some tweaks to make it work. read more...

add a comment |category: |Views: 30

tags: another