This question is locked. New answers and comments are not allowed.
Hello,
Is it possible to fix this code, as explained in stylecop rule 1116:
Bad Code:
Should be:
Thank you
Laurent
Is it possible to fix this code, as explained in stylecop rule 1116:
Bad Code:
this.Property(x => x.IsDeleted, map => { map.Column("IsDeleted"); map.Index("i_index_deleted"); map.Index("i_index_description"); map.Index("i_index_index_type"); });Should be:
this.Property( x => x.IsDeleted, map => { map.Column("IsDeleted"); map.Index("i_index_deleted"); map.Index("i_index_description"); map.Index("i_index_index_type"); });Thank you
Laurent