You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use a code generator to generate classes to represent my sql schema.
The generator generates code like this:
namespace dbo // schema name
{
partial class Customers // table name
{
partial class RowData
{
// property for each column
}
}
partial class Orders// table name
{
partial class RowData
{
// property for each column
}
}
}
In another file I put your attribute on my RowData types:
[GenerateDataReaderMapper]
public partial class RowData;
But since I have multiple types with the same name, your generator fails to do anything.
The text was updated successfully, but these errors were encountered:
I use a code generator to generate classes to represent my sql schema.
The generator generates code like this:
In another file I put your attribute on my RowData types:
But since I have multiple types with the same name, your generator fails to do anything.
The text was updated successfully, but these errors were encountered: