Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor data table InfoService to reflect previously retired fields #94

Merged
merged 3 commits into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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