We are using Solr by SolrNet package with default attributes-based mapping.
public class MyType
{
[SolrUniqueKey("id")]
public int Id { get; set; }
[SolrField("name")]
public string Name { get; set; }
//[SolrField("new_field")]
//public string NewField { get; set; }
}
Which of those changes will be breaking for the application that use it?
None of those are breaking.