Skip to content

Instantly share code, notes, and snippets.

@ankitvijay
Last active July 17, 2021 22:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ankitvijay/9f0ca084a22b58e6c2b4514b71e180c8 to your computer and use it in GitHub Desktop.
Save ankitvijay/9f0ca084a22b58e6c2b4514b71e180c8 to your computer and use it in GitHub Desktop.
Cosmos DB Schema Migration - Obsolete property
public class Order
{
[JsonProperty("id")]
public string Id { get; set; }
[Obsolete("Order name is obsolete, use Name instead")]
public string OrderName { get; set; }
[Obsolete("HasShipped is obsolete, set OrderStatus as Shipped Instead")]
public bool HasShipped { get; set; }
public string Name { get; set; }
public OrderStatus Status { get; set; }
}
public enum OrderStatus
{
Started,
Processed,
Shipped,
Completed
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment