Can you test the _time to live_ functionality with the emulator?
⚠Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.
@garfbradaz Thank you for the feedback. We are actively investigating and will get back to you soon.
@garfbradaz There are couple of ways you can test TTL functionality with Emulator:

Post 120 seconds, running query in Data Explorer will not return the document. Refer to below screenshot:

// Create a new container with TTL enabled and a 90 day expiration
await client.GetDatabase("database").CreateContainerAsync(new ContainerProperties
{
Id = "container",
PartitionKeyPath = "/myPartitionKey",
DefaultTimeToLive = 90 * 60 * 60 * 24; // expire all documents after 90 days
});Then create a document using the explorer/code and try fetching the record post 120 seconds. You must not receive documents older than 120 seconds.
This Article provides end to end steps for creation of MVC application using.NET SDK.
If there are further questions regarding this matter, please comment and we will gladly continue the discussion.
Thanks guys, i will take a look today.
@garfbradaz We are proceeding to close this issue.
If there are further questions regarding this matter, please comment and we will gladly continue the discussion.