So far, I know that change tracking is integrated with SQL Server 2008, and it's being done automatically. What I don't know is whether I should modify the schema by appending a "_tombstone" myself or it's being done automatically by the server.
Right now when I'm attempting to access the tombstone table from the server. It results in an SqlException
saying that the table could not be found.
How do I access the values of the change tracking values created by SQL Server 2008 from C#?
Cheers