PBLs contain DataWindows with the same name

It is not a recommended practice for multiple PBLs in the same application containing DataWindows with the same name. When converting to the C# models, only the first DataWindow will be converted (the other duplicates will be ignored), because all converted C# models are placed in the same ASP.NET Core project, and a single ASP.NET Core project cannot have two models with the same name (this is normal behavior of ASP.NET Core projects, and there is no way for an ASP.NET Core project to have models/classes with the same name).

Please avoid having DataWindows with the same name in the application.