entity 오류로인해 제거해야해서 . 제거전 백업
This commit is contained in:
13
DBMigration/Models/DatabaseObject.cs
Normal file
13
DBMigration/Models/DatabaseObject.cs
Normal 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}]";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user