I think the analyzer should ignore the calculated property in DTO. For Example: ``` cs public class View { public string Name { get; set; } public string Format => Path.GetExtension(Name); } ```