Locode Table Groupings

I’m using the default locode environment. I set a tag on my model to group tables together and it does not have any effect. What am I doing wrong?

[Tag("Rate Information")] 
[Schema("TheSchema")]
public class rate_history
    {
        [PrimaryKey]
        public int id { get; set; }...

Hi @linaar , the [Tag] attribute is applied to your Request DTOs not your database model types. So for example you will need to apply them to your:

[Tag("Rate Information")] 
public class QueryRates : QueryDb<rate_history>
{

}