mirror of https://github.com/abpframework/abp.git
10 changed files with 28 additions and 34 deletions
@ -1,9 +0,0 @@ |
|||
namespace MyCompanyName.MyProjectName |
|||
{ |
|||
public static class MyProjectNameConsts |
|||
{ |
|||
public const string DefaultDbTablePrefix = "MyProjectName"; |
|||
|
|||
public const string DefaultDbSchema = null; |
|||
} |
|||
} |
|||
@ -0,0 +1,11 @@ |
|||
namespace MyCompanyName.MyProjectName |
|||
{ |
|||
public static class MyProjectNameDbProperties |
|||
{ |
|||
public static string DbTablePrefix { get; } = "MyProjectName"; |
|||
|
|||
public static string DbSchema { get; } = null; |
|||
|
|||
public const string ConnectionStringName = "MyProjectName"; |
|||
} |
|||
} |
|||
Loading…
Reference in new issue