Skip to content

Commit

Permalink
Refactor data table InfoService to reflect previously retired fields
Browse files Browse the repository at this point in the history
* Create new DAL targeting NET8.0
* Remove retired fields from data table InfoService
* Remove deleted entity properties from controllers and views
  • Loading branch information
axunonb committed Sep 18, 2024
1 parent 7d45c19 commit c96c24c
Show file tree
Hide file tree
Showing 33 changed files with 179 additions and 264 deletions.
2 changes: 1 addition & 1 deletion Src/DAL/DatabaseGeneric/ConstantsEnums.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//////////////////////////////////////////////////////////////
// <auto-generated>This code was generated by LLBLGen Pro 5.9.</auto-generated>
// <auto-generated>This code was generated by LLBLGen Pro 5.11.</auto-generated>
//////////////////////////////////////////////////////////////
// Code is generated on:
// Code is generated using templates: SD.TemplateBindings.SharedTemplates
Expand Down
79 changes: 40 additions & 39 deletions Src/DAL/DatabaseGeneric/EntityClasses/CalendarEntity.cs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Src/DAL/DatabaseGeneric/EntityClasses/CommonEntityBase.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//////////////////////////////////////////////////////////////
// <auto-generated>This code was generated by LLBLGen Pro 5.9.</auto-generated>
// <auto-generated>This code was generated by LLBLGen Pro 5.11.</auto-generated>
//////////////////////////////////////////////////////////////
// Code is generated on:
// Code is generated using templates: SD.TemplateBindings.SharedTemplates
Expand Down
14 changes: 7 additions & 7 deletions Src/DAL/DatabaseGeneric/EntityClasses/CountryEntity.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//////////////////////////////////////////////////////////////
// <auto-generated>This code was generated by LLBLGen Pro 5.9.</auto-generated>
// <auto-generated>This code was generated by LLBLGen Pro 5.11.</auto-generated>
//////////////////////////////////////////////////////////////
// Code is generated on:
// Code is generated using templates: SD.TemplateBindings.SharedTemplates
Expand Down Expand Up @@ -163,47 +163,47 @@ private void InitClassEmpty(IValidator validator, IEntityFields2 fields)
public virtual System.DateTime CreatedOn
{
get { return (System.DateTime)GetValue((int)CountryFieldIndex.CreatedOn, true); }
set { SetValue((int)CountryFieldIndex.CreatedOn, value); }
set { SetValue((int)CountryFieldIndex.CreatedOn, value); }
}

/// <summary>The Id property of the Entity Country<br/><br/></summary>
/// <remarks>Mapped on table field: "Country"."Id".<br/>Table field type characteristics (type, precision, scale, length): NVarChar, 0, 0, 2.<br/>Table field behavior characteristics (is nullable, is PK, is identity): false, true, false</remarks>
public virtual System.String Id
{
get { return (System.String)GetValue((int)CountryFieldIndex.Id, true); }
set { SetValue((int)CountryFieldIndex.Id, value); }
set { SetValue((int)CountryFieldIndex.Id, value); }
}

/// <summary>The Iso3 property of the Entity Country<br/><br/></summary>
/// <remarks>Mapped on table field: "Country"."Iso3".<br/>Table field type characteristics (type, precision, scale, length): NVarChar, 0, 0, 3.<br/>Table field behavior characteristics (is nullable, is PK, is identity): false, false, false</remarks>
public virtual System.String Iso3
{
get { return (System.String)GetValue((int)CountryFieldIndex.Iso3, true); }
set { SetValue((int)CountryFieldIndex.Iso3, value); }
set { SetValue((int)CountryFieldIndex.Iso3, value); }
}

/// <summary>The ModifiedOn property of the Entity Country<br/><br/></summary>
/// <remarks>Mapped on table field: "Country"."ModifiedOn".<br/>Table field type characteristics (type, precision, scale, length): DateTime, 0, 0, 0.<br/>Table field behavior characteristics (is nullable, is PK, is identity): false, false, false</remarks>
public virtual System.DateTime ModifiedOn
{
get { return (System.DateTime)GetValue((int)CountryFieldIndex.ModifiedOn, true); }
set { SetValue((int)CountryFieldIndex.ModifiedOn, value); }
set { SetValue((int)CountryFieldIndex.ModifiedOn, value); }
}

/// <summary>The Name property of the Entity Country<br/><br/></summary>
/// <remarks>Mapped on table field: "Country"."Name".<br/>Table field type characteristics (type, precision, scale, length): NVarChar, 0, 0, 255.<br/>Table field behavior characteristics (is nullable, is PK, is identity): false, false, false</remarks>
public virtual System.String Name
{
get { return (System.String)GetValue((int)CountryFieldIndex.Name, true); }
set { SetValue((int)CountryFieldIndex.Name, value); }
set { SetValue((int)CountryFieldIndex.Name, value); }
}

/// <summary>The NameEn property of the Entity Country<br/><br/></summary>
/// <remarks>Mapped on table field: "Country"."NameEN".<br/>Table field type characteristics (type, precision, scale, length): NVarChar, 0, 0, 255.<br/>Table field behavior characteristics (is nullable, is PK, is identity): false, false, false</remarks>
public virtual System.String NameEn
{
get { return (System.String)GetValue((int)CountryFieldIndex.NameEn, true); }
set { SetValue((int)CountryFieldIndex.NameEn, value); }
set { SetValue((int)CountryFieldIndex.NameEn, value); }
}

/// <summary>Gets the EntityCollection with the related entities of type 'CalendarEntity' which are related to this entity via a relation of type '1:n'. If the EntityCollection hasn't been fetched yet, the collection returned will be empty.<br/><br/></summary>
Expand Down
Loading

0 comments on commit c96c24c

Please sign in to comment.