I want to have a column in my tables called ModifiedDate that automatically updates when a row is inserted or updated. Can this be done without writing code in the c# clients that use the db?
Copying a similar column in the AdventureWorks2008R2 sample database, I tried using a datetime2 data type + specifying the column Default Value as "(getdate())" but that doesn't work for me
Is there a way to do this at the database level so I'm not relying on the client app coders to set the field in their c# app ?
Look up the SQL documentation (copy paste is not going to make you smarter) - the keyword you look for is TRIGGER.A trigger can react to inserts / updates / deeltes and update the data inserted / updated.