Esempio n. 1
0
 public static bool IsView <TProjectSettings>(this ProjectFeature <TProjectSettings> projectFeature, IDbObject dbObject) where TProjectSettings : class, IProjectSettings, new()
 => projectFeature.Project.Database.FindView(dbObject.FullName) == null ? false : true;
Esempio n. 2
0
        public virtual void AddFeature(ProjectFeature <TProjectSettings> projectFeature)
        {
            projectFeature.Project = this;

            Features.Add(projectFeature);
        }