Browse by Tags

All Tags » Generic (RSS)

Musing About Generic Inheritance (Class Person : EntityBase<Person>).. What?

Was strolling around StackOverflow and came to a question #1118232. Where this guy was asking how come you can create a class inheriting from another generic class like so: class Person : EntityBase<Person> { //Whatever here... } He said it’s like...
Posted by Jimmy Chandra | 1 comment(s)
Filed under: , ,

Operation could destabilize the runtime

I was trying to reproduce Repository pattern that Rob Conery was using in his MVC Store Front project in my own project. Continuing with the interface programming style hype, I decided to make everything implement some sort of an interface. So my domain...