SqlObjectManagerAppService
This commit is contained in:
parent
1fddab5797
commit
c3ce3583a6
1 changed files with 6 additions and 6 deletions
|
|
@ -174,7 +174,7 @@ public class SqlObjectManagerAppService : ApplicationService, ISqlObjectManagerA
|
||||||
Id = p.Id,
|
Id = p.Id,
|
||||||
ProcedureName = p.ProcedureName,
|
ProcedureName = p.ProcedureName,
|
||||||
SchemaName = p.SchemaName,
|
SchemaName = p.SchemaName,
|
||||||
DisplayName = p.DisplayName,
|
DisplayName = $"{p.SchemaName}.{p.ProcedureName}",
|
||||||
Description = p.Description,
|
Description = p.Description,
|
||||||
ProcedureBody = p.ProcedureBody,
|
ProcedureBody = p.ProcedureBody,
|
||||||
DataSourceCode = p.DataSourceCode,
|
DataSourceCode = p.DataSourceCode,
|
||||||
|
|
@ -224,7 +224,7 @@ public class SqlObjectManagerAppService : ApplicationService, ISqlObjectManagerA
|
||||||
Id = uniqueId,
|
Id = uniqueId,
|
||||||
SchemaName = schemaName,
|
SchemaName = schemaName,
|
||||||
ProcedureName = procName,
|
ProcedureName = procName,
|
||||||
DisplayName = $"[{schemaName}].[{procName}]",
|
DisplayName = $"{schemaName}.{procName}",
|
||||||
DataSourceCode = dataSourceCode,
|
DataSourceCode = dataSourceCode,
|
||||||
IsCustom = false,
|
IsCustom = false,
|
||||||
IsDeployed = true // Native objects are already deployed
|
IsDeployed = true // Native objects are already deployed
|
||||||
|
|
@ -249,7 +249,7 @@ public class SqlObjectManagerAppService : ApplicationService, ISqlObjectManagerA
|
||||||
Id = v.Id,
|
Id = v.Id,
|
||||||
ViewName = v.ViewName,
|
ViewName = v.ViewName,
|
||||||
SchemaName = v.SchemaName,
|
SchemaName = v.SchemaName,
|
||||||
DisplayName = v.DisplayName,
|
DisplayName = $"{v.SchemaName}.{v.ViewName}",
|
||||||
Description = v.Description,
|
Description = v.Description,
|
||||||
ViewDefinition = v.ViewDefinition,
|
ViewDefinition = v.ViewDefinition,
|
||||||
DataSourceCode = v.DataSourceCode,
|
DataSourceCode = v.DataSourceCode,
|
||||||
|
|
@ -299,7 +299,7 @@ public class SqlObjectManagerAppService : ApplicationService, ISqlObjectManagerA
|
||||||
Id = uniqueId,
|
Id = uniqueId,
|
||||||
SchemaName = schemaName,
|
SchemaName = schemaName,
|
||||||
ViewName = viewName,
|
ViewName = viewName,
|
||||||
DisplayName = $"[{schemaName}].[{viewName}]",
|
DisplayName = $"{schemaName}.{viewName}",
|
||||||
DataSourceCode = dataSourceCode,
|
DataSourceCode = dataSourceCode,
|
||||||
IsCustom = false,
|
IsCustom = false,
|
||||||
IsDeployed = true
|
IsDeployed = true
|
||||||
|
|
@ -323,7 +323,7 @@ public class SqlObjectManagerAppService : ApplicationService, ISqlObjectManagerA
|
||||||
Id = f.Id,
|
Id = f.Id,
|
||||||
FunctionName = f.FunctionName,
|
FunctionName = f.FunctionName,
|
||||||
SchemaName = f.SchemaName,
|
SchemaName = f.SchemaName,
|
||||||
DisplayName = f.DisplayName,
|
DisplayName = $"[{f.SchemaName}].[{f.FunctionName}]",
|
||||||
Description = f.Description,
|
Description = f.Description,
|
||||||
FunctionType = f.FunctionType,
|
FunctionType = f.FunctionType,
|
||||||
FunctionBody = f.FunctionBody,
|
FunctionBody = f.FunctionBody,
|
||||||
|
|
@ -387,7 +387,7 @@ public class SqlObjectManagerAppService : ApplicationService, ISqlObjectManagerA
|
||||||
Id = uniqueId,
|
Id = uniqueId,
|
||||||
SchemaName = schemaName,
|
SchemaName = schemaName,
|
||||||
FunctionName = funcName,
|
FunctionName = funcName,
|
||||||
DisplayName = $"[{schemaName}].[{funcName}]",
|
DisplayName = $"{schemaName}.{funcName}",
|
||||||
DataSourceCode = dataSourceCode,
|
DataSourceCode = dataSourceCode,
|
||||||
FunctionType = funcType,
|
FunctionType = funcType,
|
||||||
IsCustom = false,
|
IsCustom = false,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue