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
Can you please tell me how to generate additional files for e.g. I want to read the Database, script a POCO user.cs& a DTO userDTO.cs object.
I need help/guidance please to customize some of the output - for e.g. for each POCO class generated from DB, I also want to custom generate additional code/another output class file with the same code for e.g. POCO user.cs so along with user.cs POCO, how can I also get this output to UserDTO.cs
[atValidate(typeof(user))]
public class UsersDto : IChanged
{
public string uName { get; set; }
public string uLast { get; set; }
public string uEmail { get; set; }
}
The text was updated successfully, but these errors were encountered:
Hi, thanks for this tool 👍
Can you please tell me how to generate additional files for e.g. I want to read the Database, script a POCO
user.cs
& a DTOuserDTO.cs
object.I need help/guidance please to customize some of the output - for e.g. for each POCO class generated from DB, I also want to custom generate additional code/another output class file with the same code for e.g. POCO
user.cs
so along withuser.cs
POCO, how can I also get this output toUserDTO.cs
The text was updated successfully, but these errors were encountered: