Hi,
I have a column called DateCreated in a table called Products.SupplierProduct - I don't want this attribute to show up in the POCO.
When I set the column filter to:
ColumnFilterExclude = new Regex("^Products.SupplierProduct.DateCreated$");
It still adds the column. But when I place the schema after the table name, like so:
ColumnFilterExclude = new Regex("^SupplierProduct.Products.DateCreated$");
It works.
Shouldn't it be [schema_name].[table_name].[column_name]?
I have a column called DateCreated in a table called Products.SupplierProduct - I don't want this attribute to show up in the POCO.
When I set the column filter to:
ColumnFilterExclude = new Regex("^Products.SupplierProduct.DateCreated$");
It still adds the column. But when I place the schema after the table name, like so:
ColumnFilterExclude = new Regex("^SupplierProduct.Products.DateCreated$");
It works.
Shouldn't it be [schema_name].[table_name].[column_name]?