I'm using Entity Framework 4, C# and MSSQL Server 2008 R2. I know about the optimistic concurrency with rowversion, But I want to include two fields in concurrency. One is updated_date (datetime) and another is updated_by (string). For now I only can do it with updated_date concurrency mode fixed. What should I do to include updated_by also?
Thanks in advance!