Greetings, it has been a while...
Client wants to basically have a dervied model per microservice. I have a set of base classes that I have for my derived models and now I need those spread across multiple direvied models.
Seems like when I add the additional project ref it sticks after the project generation, but the using statement will get dropped. Is there a way to preserve this using statement to prevent it from getting removed?
After Project Generation
using System;
using System.ComponentModel;
using System.Runtime.Serialization;
using System.Collections.Generic;
namespace ChannelSoft.DTO.PermissionX.DtoClasses
{
/// <summary> DTO class which is derived from the entity 'Permission.Usergroup'.</summary>
[Serializable]
[DataContract]
public partial class UsergroupModel: BaseModel
Before project Generation
using System;
using System.ComponentModel;
using System.Runtime.Serialization;
using System.Collections.Generic;
using ChannelSoft.DTO.Common
namespace ChannelSoft.DTO.PermissionX.DtoClasses
{
/// <summary> DTO class which is derived from the entity 'Permission.Usergroup'.</summary>
[Serializable]
[DataContract]
public partial class UsergroupModel: BaseModel //BaseModel from DTO.Common Project