fd0356bae4
- aggiunta migrazione x rimuovere tab DbSetCount creata x errore - fix dim nvarchar(255) vari
24 lines
561 B
C#
24 lines
561 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GWMS.Data.DatabaseModels
|
|
{
|
|
/// <summary>
|
|
/// Classe fake x il conteggio tabelle e check preliminari
|
|
/// </summary>
|
|
[NotMapped]
|
|
public class TableCount
|
|
{
|
|
#region Public Properties
|
|
|
|
public int Count { get; set; }
|
|
public string TableName { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |