I\'m now starting out on DDD, I\'ve already found a nice implementation for ValueObject but I cant seem to find any good implementation for Entities, i want a generic base entit
I am not sure if you are after a specific library/sample code or guidelines. A good DDD solution will use factory for instantiation, persistency separated from the domain model (most ORM tends to bundle the two together), clearly define domain boundary, enforcing fields and operations through interface.
I would strongly recommend the book Applying DDD and Patterns book by Jimmy Nilson. It discusses in depth about DDD and best practices. The examples are in C# as well which will suit your project.