entity 오류로인해 제거해야해서 . 제거전 백업

This commit is contained in:
chi
2025-04-06 01:54:17 +09:00
parent a82471915e
commit 2b22ca9c51
65 changed files with 8031 additions and 1945 deletions

View File

@@ -0,0 +1,13 @@
namespace DBMigration.Models
{
public class DatabaseObject
{
public string Name { get; set; } = string.Empty;
public string Schema { get; set; } = string.Empty;
public string Type { get; set; } = string.Empty;
public bool IsSelected { get; set; }
public string Definition { get; set; } = string.Empty;
public string FullName => $"[{Schema}].[{Name}]";
}
}