You should implement a common base class that has these properties, and derive your POCO classes from that base class.
You can automatically handle setting things like the Create/ModifiedDate and User by overriding SaveChanges() in your context class. That frees the object consumers from the need to set those properties everywhere the classes are consumed.
Here's an example of that sort of code from one of my projects (in my case, objects that have a LastModified property implement an interface IHasLastModified):
public override int SaveChanges()
{
DateTime now = DateTime.UtcNow;
foreach (ObjectStateEntry entry in (this as IObjectContextAdapter).ObjectContext.ObjectStateManager.GetObjectStateEntries(EntityState.Added | EntityState.Modified))
{
if (!entry.IsRelationship)
{
IHasLastModified lastModified = entry.Entity as IHasLastModified;
if (lastModified != null)
lastModified.LastModified = now;
}
}
int changes = base.SaveChanges();
return changes;
}