Singular not working
Posted: Thu 09 Jan 2020 18:36
I am generating for EF Core. If I go into the Model Settings ==> Synchronization ==> Class Properties Names ==> Pluralization = Singularize, the generated code still contains plural property names:
Example:
public virtual int StoreIDs{get;set;}
public virtual int StoreNumbers{get;set;}
public virtual string Names{get;set;}
Example:
public virtual int StoreIDs{get;set;}
public virtual int StoreNumbers{get;set;}
public virtual string Names{get;set;}