├── .DS_Store ├── .gitignore ├── LICENSE ├── MyStaging.sln ├── README.md ├── doc ├── README.md └── mystaging.sql ├── examples ├── .DS_Store ├── IdentityHost │ ├── .DS_Store │ ├── APIResult.cs │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── BaseController.cs │ │ ├── PasswordController.cs │ │ ├── R2RController.cs │ │ ├── R2UController.cs │ │ ├── ResourceController.cs │ │ ├── RoleController.cs │ │ └── UserController.cs │ ├── Converters │ │ ├── JsonBooleanConverter.cs │ │ ├── JsonLowerCaseNamingPolicy.cs │ │ └── JsonUnixTimeConverter.cs │ ├── Extensions │ │ ├── CustomerAuthorizeFilter.cs │ │ ├── CustomerExceptionFilter.cs │ │ ├── JsonSerializerExtension.cs │ │ ├── RequestMiddleware.cs │ │ ├── StartupExtensions.cs │ │ └── SwaggerExtensions.cs │ ├── Helper │ │ ├── AesFactory.cs │ │ ├── HttpHelper.cs │ │ └── SecurityHelper.cs │ ├── IdentityHost.csproj │ ├── IdentityHost.csproj.user │ ├── IdentityHost.xml │ ├── Model │ │ ├── Article.cs │ │ ├── Customer.cs │ │ ├── IdentityHostDbContext.cs │ │ ├── M_Accesslog.cs │ │ ├── M_Mapping.cs │ │ ├── M_Resource.cs │ │ ├── M_Role.cs │ │ ├── M_Roleresource.cs │ │ └── M_User.cs │ ├── Program.cs │ ├── Properties │ │ ├── Resource.Designer.cs │ │ ├── Resource.resx │ │ └── launchSettings.json │ ├── Services │ │ ├── AccessLogService.cs │ │ ├── IManagerService.cs │ │ ├── ResourceService.cs │ │ ├── RoleService.cs │ │ └── UserService.cs │ ├── Startup.cs │ ├── ViewModel │ │ ├── IdViewModel.cs │ │ ├── LoginViewModel.cs │ │ ├── M_Resource.cs │ │ ├── PageViewModel.cs │ │ ├── PasswordViewModel.cs │ │ ├── R2EViewModel.cs │ │ ├── R2RViewModel.cs │ │ ├── ResourceViewModel.cs │ │ ├── RoleViewModel.cs │ │ └── UserViewModel.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── Mysql │ ├── Model │ │ ├── Article.cs │ │ ├── Customer.cs │ │ ├── M_Accesslog.cs │ │ ├── M_Mapping.cs │ │ ├── M_Resource.cs │ │ ├── M_Role.cs │ │ ├── M_Roleresource.cs │ │ ├── M_User.cs │ │ └── MysqlDbContext.cs │ ├── ModelExt │ │ └── M_Resource.cs │ ├── Models.cs │ ├── Mysql.csproj │ ├── Mysql.csproj.user │ ├── Program.cs │ └── Services │ │ ├── ArticleService.cs │ │ └── ResourceService.cs └── Pgsql │ ├── ContextTest.cs │ ├── Model │ ├── Article.cs │ ├── PgsqlDbContext.cs │ ├── Post.cs │ ├── Topic.cs │ ├── Udt3.cs │ ├── User.cs │ └── _Enums.cs │ ├── Pgsql.csproj │ ├── Pgsql.csproj.user │ └── Program.cs ├── src ├── MyStaging.Gen │ ├── MyStaging.Gen.csproj │ ├── MyStaging.Gen.csproj.user │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── build.bat ├── MyStaging.MySql │ ├── Core │ │ ├── DeleteBuilder`.cs │ │ ├── InsertBuilder`.cs │ │ ├── SelectBuilder`.cs │ │ └── UpdateBuilder`.cs │ ├── Generals │ │ ├── EntityGeneral.cs │ │ └── GeneralFactory.cs │ ├── MySqlStagingConnection.cs │ ├── MyStaging.MySql.csproj │ ├── MyStaging.MySql.csproj.user │ └── MysqlType.cs ├── MyStaging.PostgreSQL │ ├── Core │ │ ├── DeleteBuilder`.cs │ │ ├── InsertBuilder`.cs │ │ ├── SelectBuilder`.cs │ │ └── UpdateBuilder`.cs │ ├── Generals │ │ ├── EntityGeneral.cs │ │ └── GeneralFactory.cs │ ├── MyStaging.PostgreSQL.csproj │ ├── PgStagingConnection.cs │ └── PgsqlType.cs └── MyStaging │ ├── Common │ ├── CheckNotNull.cs │ ├── MyStagingUtils.cs │ ├── ObjectId.cs │ └── ObjectIdFactory.cs │ ├── Core │ ├── ConnectionManager.cs │ ├── DbContext.cs │ ├── DbExpressionVisitor.cs │ ├── DbRecord.cs │ ├── DbSet`.cs │ ├── ExpressionCondition`.cs │ └── SQLExecute.cs │ ├── DataAnnotations │ └── PrimaryKeyAttribute.cs │ ├── Function │ └── SqlFunction.cs │ ├── Interface │ ├── Core │ │ ├── IDeleteBuilder`.cs │ │ ├── IInsertBuilder`.cs │ │ ├── ISelectBuilder`.cs │ │ └── IUpdateBuilder`.cs │ ├── IGeneralFactory.cs │ ├── IQueryPipeLine.cs │ ├── ISaveChanged.cs │ └── IStagingConnection.cs │ ├── Metadata │ ├── ConnectionModel.cs │ ├── ConstraintInfo.cs │ ├── ConstraintType.cs │ ├── DbFieldInfo.cs │ ├── EnumTypeInfo.cs │ ├── ExpressionInfo.cs │ ├── ExpressionUnionInfo.cs │ ├── GeneralConfig.cs │ ├── GeneralInfo.cs │ ├── ProjectConfig.cs │ ├── ProviderType.cs │ ├── StagingOptions.cs │ ├── TableInfo.cs │ ├── TableType.cs │ └── UnionType.cs │ ├── MyStaging.csproj │ └── MyStaging.csproj.user └── test ├── MyStaging.xUnitTest.db ├── DAL │ └── Build │ │ ├── Article.cs │ │ ├── Post.cs │ │ ├── Topic.cs │ │ └── User.cs ├── Model │ └── Build │ │ ├── ArticleModel.cs │ │ ├── PostModel.cs │ │ ├── TopicModel.cs │ │ ├── UserModel.cs │ │ └── _Enums.cs ├── MyStaging.xUnitTest.db.csproj └── _startup.cs └── MyStaging.xUnitTest ├── Common ├── CheckNotNullTest.cs └── MyStagingUtilsTest.cs ├── ConstantUtil.cs ├── Core ├── ConnectionManagerTest.cs ├── DbContextTest.cs ├── DbExpressionVisitorTest.cs └── SQLExecuteTest.cs ├── Models └── UserModel.cs ├── MyStaging.xUnitTest.csproj └── MyStaging.xUnitTest.sln /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/LICENSE -------------------------------------------------------------------------------- /MyStaging.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/MyStaging.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/README.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/mystaging.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/doc/mystaging.sql -------------------------------------------------------------------------------- /examples/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/.DS_Store -------------------------------------------------------------------------------- /examples/IdentityHost/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/.DS_Store -------------------------------------------------------------------------------- /examples/IdentityHost/APIResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/APIResult.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Controllers/AccountController.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Controllers/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Controllers/BaseController.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Controllers/PasswordController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Controllers/PasswordController.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Controllers/R2RController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Controllers/R2RController.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Controllers/R2UController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Controllers/R2UController.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Controllers/ResourceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Controllers/ResourceController.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Controllers/RoleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Controllers/RoleController.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Controllers/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Controllers/UserController.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Converters/JsonBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Converters/JsonBooleanConverter.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Converters/JsonLowerCaseNamingPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Converters/JsonLowerCaseNamingPolicy.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Converters/JsonUnixTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Converters/JsonUnixTimeConverter.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Extensions/CustomerAuthorizeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Extensions/CustomerAuthorizeFilter.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Extensions/CustomerExceptionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Extensions/CustomerExceptionFilter.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Extensions/JsonSerializerExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Extensions/JsonSerializerExtension.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Extensions/RequestMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Extensions/RequestMiddleware.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Extensions/StartupExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Extensions/StartupExtensions.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Extensions/SwaggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Extensions/SwaggerExtensions.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Helper/AesFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Helper/AesFactory.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Helper/HttpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Helper/HttpHelper.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Helper/SecurityHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Helper/SecurityHelper.cs -------------------------------------------------------------------------------- /examples/IdentityHost/IdentityHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/IdentityHost.csproj -------------------------------------------------------------------------------- /examples/IdentityHost/IdentityHost.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/IdentityHost.csproj.user -------------------------------------------------------------------------------- /examples/IdentityHost/IdentityHost.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/IdentityHost.xml -------------------------------------------------------------------------------- /examples/IdentityHost/Model/Article.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Model/Article.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Model/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Model/Customer.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Model/IdentityHostDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Model/IdentityHostDbContext.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Model/M_Accesslog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Model/M_Accesslog.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Model/M_Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Model/M_Mapping.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Model/M_Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Model/M_Resource.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Model/M_Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Model/M_Role.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Model/M_Roleresource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Model/M_Roleresource.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Model/M_User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Model/M_User.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Program.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Properties/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Properties/Resource.Designer.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Properties/Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Properties/Resource.resx -------------------------------------------------------------------------------- /examples/IdentityHost/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Properties/launchSettings.json -------------------------------------------------------------------------------- /examples/IdentityHost/Services/AccessLogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Services/AccessLogService.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Services/IManagerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Services/IManagerService.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Services/ResourceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Services/ResourceService.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Services/RoleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Services/RoleService.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Services/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Services/UserService.cs -------------------------------------------------------------------------------- /examples/IdentityHost/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/Startup.cs -------------------------------------------------------------------------------- /examples/IdentityHost/ViewModel/IdViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/ViewModel/IdViewModel.cs -------------------------------------------------------------------------------- /examples/IdentityHost/ViewModel/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/ViewModel/LoginViewModel.cs -------------------------------------------------------------------------------- /examples/IdentityHost/ViewModel/M_Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/ViewModel/M_Resource.cs -------------------------------------------------------------------------------- /examples/IdentityHost/ViewModel/PageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/ViewModel/PageViewModel.cs -------------------------------------------------------------------------------- /examples/IdentityHost/ViewModel/PasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/ViewModel/PasswordViewModel.cs -------------------------------------------------------------------------------- /examples/IdentityHost/ViewModel/R2EViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/ViewModel/R2EViewModel.cs -------------------------------------------------------------------------------- /examples/IdentityHost/ViewModel/R2RViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/ViewModel/R2RViewModel.cs -------------------------------------------------------------------------------- /examples/IdentityHost/ViewModel/ResourceViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/ViewModel/ResourceViewModel.cs -------------------------------------------------------------------------------- /examples/IdentityHost/ViewModel/RoleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/ViewModel/RoleViewModel.cs -------------------------------------------------------------------------------- /examples/IdentityHost/ViewModel/UserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/ViewModel/UserViewModel.cs -------------------------------------------------------------------------------- /examples/IdentityHost/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/appsettings.Development.json -------------------------------------------------------------------------------- /examples/IdentityHost/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/IdentityHost/appsettings.json -------------------------------------------------------------------------------- /examples/Mysql/Model/Article.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Mysql/Model/Article.cs -------------------------------------------------------------------------------- /examples/Mysql/Model/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Mysql/Model/Customer.cs -------------------------------------------------------------------------------- /examples/Mysql/Model/M_Accesslog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Mysql/Model/M_Accesslog.cs -------------------------------------------------------------------------------- /examples/Mysql/Model/M_Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Mysql/Model/M_Mapping.cs -------------------------------------------------------------------------------- /examples/Mysql/Model/M_Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Mysql/Model/M_Resource.cs -------------------------------------------------------------------------------- /examples/Mysql/Model/M_Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Mysql/Model/M_Role.cs -------------------------------------------------------------------------------- /examples/Mysql/Model/M_Roleresource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Mysql/Model/M_Roleresource.cs -------------------------------------------------------------------------------- /examples/Mysql/Model/M_User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Mysql/Model/M_User.cs -------------------------------------------------------------------------------- /examples/Mysql/Model/MysqlDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Mysql/Model/MysqlDbContext.cs -------------------------------------------------------------------------------- /examples/Mysql/ModelExt/M_Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Mysql/ModelExt/M_Resource.cs -------------------------------------------------------------------------------- /examples/Mysql/Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Mysql/Models.cs -------------------------------------------------------------------------------- /examples/Mysql/Mysql.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Mysql/Mysql.csproj -------------------------------------------------------------------------------- /examples/Mysql/Mysql.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Mysql/Mysql.csproj.user -------------------------------------------------------------------------------- /examples/Mysql/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Mysql/Program.cs -------------------------------------------------------------------------------- /examples/Mysql/Services/ArticleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Mysql/Services/ArticleService.cs -------------------------------------------------------------------------------- /examples/Mysql/Services/ResourceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Mysql/Services/ResourceService.cs -------------------------------------------------------------------------------- /examples/Pgsql/ContextTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Pgsql/ContextTest.cs -------------------------------------------------------------------------------- /examples/Pgsql/Model/Article.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Pgsql/Model/Article.cs -------------------------------------------------------------------------------- /examples/Pgsql/Model/PgsqlDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Pgsql/Model/PgsqlDbContext.cs -------------------------------------------------------------------------------- /examples/Pgsql/Model/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Pgsql/Model/Post.cs -------------------------------------------------------------------------------- /examples/Pgsql/Model/Topic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Pgsql/Model/Topic.cs -------------------------------------------------------------------------------- /examples/Pgsql/Model/Udt3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Pgsql/Model/Udt3.cs -------------------------------------------------------------------------------- /examples/Pgsql/Model/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Pgsql/Model/User.cs -------------------------------------------------------------------------------- /examples/Pgsql/Model/_Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Pgsql/Model/_Enums.cs -------------------------------------------------------------------------------- /examples/Pgsql/Pgsql.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Pgsql/Pgsql.csproj -------------------------------------------------------------------------------- /examples/Pgsql/Pgsql.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Pgsql/Pgsql.csproj.user -------------------------------------------------------------------------------- /examples/Pgsql/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/examples/Pgsql/Program.cs -------------------------------------------------------------------------------- /src/MyStaging.Gen/MyStaging.Gen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.Gen/MyStaging.Gen.csproj -------------------------------------------------------------------------------- /src/MyStaging.Gen/MyStaging.Gen.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.Gen/MyStaging.Gen.csproj.user -------------------------------------------------------------------------------- /src/MyStaging.Gen/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.Gen/Program.cs -------------------------------------------------------------------------------- /src/MyStaging.Gen/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.Gen/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/MyStaging.Gen/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.Gen/build.bat -------------------------------------------------------------------------------- /src/MyStaging.MySql/Core/DeleteBuilder`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.MySql/Core/DeleteBuilder`.cs -------------------------------------------------------------------------------- /src/MyStaging.MySql/Core/InsertBuilder`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.MySql/Core/InsertBuilder`.cs -------------------------------------------------------------------------------- /src/MyStaging.MySql/Core/SelectBuilder`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.MySql/Core/SelectBuilder`.cs -------------------------------------------------------------------------------- /src/MyStaging.MySql/Core/UpdateBuilder`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.MySql/Core/UpdateBuilder`.cs -------------------------------------------------------------------------------- /src/MyStaging.MySql/Generals/EntityGeneral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.MySql/Generals/EntityGeneral.cs -------------------------------------------------------------------------------- /src/MyStaging.MySql/Generals/GeneralFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.MySql/Generals/GeneralFactory.cs -------------------------------------------------------------------------------- /src/MyStaging.MySql/MySqlStagingConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.MySql/MySqlStagingConnection.cs -------------------------------------------------------------------------------- /src/MyStaging.MySql/MyStaging.MySql.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.MySql/MyStaging.MySql.csproj -------------------------------------------------------------------------------- /src/MyStaging.MySql/MyStaging.MySql.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.MySql/MyStaging.MySql.csproj.user -------------------------------------------------------------------------------- /src/MyStaging.MySql/MysqlType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.MySql/MysqlType.cs -------------------------------------------------------------------------------- /src/MyStaging.PostgreSQL/Core/DeleteBuilder`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.PostgreSQL/Core/DeleteBuilder`.cs -------------------------------------------------------------------------------- /src/MyStaging.PostgreSQL/Core/InsertBuilder`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.PostgreSQL/Core/InsertBuilder`.cs -------------------------------------------------------------------------------- /src/MyStaging.PostgreSQL/Core/SelectBuilder`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.PostgreSQL/Core/SelectBuilder`.cs -------------------------------------------------------------------------------- /src/MyStaging.PostgreSQL/Core/UpdateBuilder`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.PostgreSQL/Core/UpdateBuilder`.cs -------------------------------------------------------------------------------- /src/MyStaging.PostgreSQL/Generals/EntityGeneral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.PostgreSQL/Generals/EntityGeneral.cs -------------------------------------------------------------------------------- /src/MyStaging.PostgreSQL/Generals/GeneralFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.PostgreSQL/Generals/GeneralFactory.cs -------------------------------------------------------------------------------- /src/MyStaging.PostgreSQL/MyStaging.PostgreSQL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.PostgreSQL/MyStaging.PostgreSQL.csproj -------------------------------------------------------------------------------- /src/MyStaging.PostgreSQL/PgStagingConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.PostgreSQL/PgStagingConnection.cs -------------------------------------------------------------------------------- /src/MyStaging.PostgreSQL/PgsqlType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging.PostgreSQL/PgsqlType.cs -------------------------------------------------------------------------------- /src/MyStaging/Common/CheckNotNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Common/CheckNotNull.cs -------------------------------------------------------------------------------- /src/MyStaging/Common/MyStagingUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Common/MyStagingUtils.cs -------------------------------------------------------------------------------- /src/MyStaging/Common/ObjectId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Common/ObjectId.cs -------------------------------------------------------------------------------- /src/MyStaging/Common/ObjectIdFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Common/ObjectIdFactory.cs -------------------------------------------------------------------------------- /src/MyStaging/Core/ConnectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Core/ConnectionManager.cs -------------------------------------------------------------------------------- /src/MyStaging/Core/DbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Core/DbContext.cs -------------------------------------------------------------------------------- /src/MyStaging/Core/DbExpressionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Core/DbExpressionVisitor.cs -------------------------------------------------------------------------------- /src/MyStaging/Core/DbRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Core/DbRecord.cs -------------------------------------------------------------------------------- /src/MyStaging/Core/DbSet`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Core/DbSet`.cs -------------------------------------------------------------------------------- /src/MyStaging/Core/ExpressionCondition`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Core/ExpressionCondition`.cs -------------------------------------------------------------------------------- /src/MyStaging/Core/SQLExecute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Core/SQLExecute.cs -------------------------------------------------------------------------------- /src/MyStaging/DataAnnotations/PrimaryKeyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/DataAnnotations/PrimaryKeyAttribute.cs -------------------------------------------------------------------------------- /src/MyStaging/Function/SqlFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Function/SqlFunction.cs -------------------------------------------------------------------------------- /src/MyStaging/Interface/Core/IDeleteBuilder`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Interface/Core/IDeleteBuilder`.cs -------------------------------------------------------------------------------- /src/MyStaging/Interface/Core/IInsertBuilder`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Interface/Core/IInsertBuilder`.cs -------------------------------------------------------------------------------- /src/MyStaging/Interface/Core/ISelectBuilder`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Interface/Core/ISelectBuilder`.cs -------------------------------------------------------------------------------- /src/MyStaging/Interface/Core/IUpdateBuilder`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Interface/Core/IUpdateBuilder`.cs -------------------------------------------------------------------------------- /src/MyStaging/Interface/IGeneralFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Interface/IGeneralFactory.cs -------------------------------------------------------------------------------- /src/MyStaging/Interface/IQueryPipeLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Interface/IQueryPipeLine.cs -------------------------------------------------------------------------------- /src/MyStaging/Interface/ISaveChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Interface/ISaveChanged.cs -------------------------------------------------------------------------------- /src/MyStaging/Interface/IStagingConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Interface/IStagingConnection.cs -------------------------------------------------------------------------------- /src/MyStaging/Metadata/ConnectionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Metadata/ConnectionModel.cs -------------------------------------------------------------------------------- /src/MyStaging/Metadata/ConstraintInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Metadata/ConstraintInfo.cs -------------------------------------------------------------------------------- /src/MyStaging/Metadata/ConstraintType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Metadata/ConstraintType.cs -------------------------------------------------------------------------------- /src/MyStaging/Metadata/DbFieldInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Metadata/DbFieldInfo.cs -------------------------------------------------------------------------------- /src/MyStaging/Metadata/EnumTypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Metadata/EnumTypeInfo.cs -------------------------------------------------------------------------------- /src/MyStaging/Metadata/ExpressionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Metadata/ExpressionInfo.cs -------------------------------------------------------------------------------- /src/MyStaging/Metadata/ExpressionUnionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Metadata/ExpressionUnionInfo.cs -------------------------------------------------------------------------------- /src/MyStaging/Metadata/GeneralConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Metadata/GeneralConfig.cs -------------------------------------------------------------------------------- /src/MyStaging/Metadata/GeneralInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Metadata/GeneralInfo.cs -------------------------------------------------------------------------------- /src/MyStaging/Metadata/ProjectConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Metadata/ProjectConfig.cs -------------------------------------------------------------------------------- /src/MyStaging/Metadata/ProviderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Metadata/ProviderType.cs -------------------------------------------------------------------------------- /src/MyStaging/Metadata/StagingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Metadata/StagingOptions.cs -------------------------------------------------------------------------------- /src/MyStaging/Metadata/TableInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Metadata/TableInfo.cs -------------------------------------------------------------------------------- /src/MyStaging/Metadata/TableType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Metadata/TableType.cs -------------------------------------------------------------------------------- /src/MyStaging/Metadata/UnionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/Metadata/UnionType.cs -------------------------------------------------------------------------------- /src/MyStaging/MyStaging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/MyStaging.csproj -------------------------------------------------------------------------------- /src/MyStaging/MyStaging.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/src/MyStaging/MyStaging.csproj.user -------------------------------------------------------------------------------- /test/MyStaging.xUnitTest.db/DAL/Build/Article.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/test/MyStaging.xUnitTest.db/DAL/Build/Article.cs -------------------------------------------------------------------------------- /test/MyStaging.xUnitTest.db/DAL/Build/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/test/MyStaging.xUnitTest.db/DAL/Build/Post.cs -------------------------------------------------------------------------------- /test/MyStaging.xUnitTest.db/DAL/Build/Topic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/test/MyStaging.xUnitTest.db/DAL/Build/Topic.cs -------------------------------------------------------------------------------- /test/MyStaging.xUnitTest.db/DAL/Build/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/test/MyStaging.xUnitTest.db/DAL/Build/User.cs -------------------------------------------------------------------------------- /test/MyStaging.xUnitTest.db/Model/Build/ArticleModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/test/MyStaging.xUnitTest.db/Model/Build/ArticleModel.cs -------------------------------------------------------------------------------- /test/MyStaging.xUnitTest.db/Model/Build/PostModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/test/MyStaging.xUnitTest.db/Model/Build/PostModel.cs -------------------------------------------------------------------------------- /test/MyStaging.xUnitTest.db/Model/Build/TopicModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/test/MyStaging.xUnitTest.db/Model/Build/TopicModel.cs -------------------------------------------------------------------------------- /test/MyStaging.xUnitTest.db/Model/Build/UserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/test/MyStaging.xUnitTest.db/Model/Build/UserModel.cs -------------------------------------------------------------------------------- /test/MyStaging.xUnitTest.db/Model/Build/_Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/test/MyStaging.xUnitTest.db/Model/Build/_Enums.cs -------------------------------------------------------------------------------- /test/MyStaging.xUnitTest.db/MyStaging.xUnitTest.db.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/test/MyStaging.xUnitTest.db/MyStaging.xUnitTest.db.csproj -------------------------------------------------------------------------------- /test/MyStaging.xUnitTest.db/_startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/test/MyStaging.xUnitTest.db/_startup.cs -------------------------------------------------------------------------------- /test/MyStaging.xUnitTest/Common/CheckNotNullTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/test/MyStaging.xUnitTest/Common/CheckNotNullTest.cs -------------------------------------------------------------------------------- /test/MyStaging.xUnitTest/Common/MyStagingUtilsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/test/MyStaging.xUnitTest/Common/MyStagingUtilsTest.cs -------------------------------------------------------------------------------- /test/MyStaging.xUnitTest/ConstantUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/test/MyStaging.xUnitTest/ConstantUtil.cs -------------------------------------------------------------------------------- /test/MyStaging.xUnitTest/Core/ConnectionManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/test/MyStaging.xUnitTest/Core/ConnectionManagerTest.cs -------------------------------------------------------------------------------- /test/MyStaging.xUnitTest/Core/DbContextTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/test/MyStaging.xUnitTest/Core/DbContextTest.cs -------------------------------------------------------------------------------- /test/MyStaging.xUnitTest/Core/DbExpressionVisitorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/test/MyStaging.xUnitTest/Core/DbExpressionVisitorTest.cs -------------------------------------------------------------------------------- /test/MyStaging.xUnitTest/Core/SQLExecuteTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/test/MyStaging.xUnitTest/Core/SQLExecuteTest.cs -------------------------------------------------------------------------------- /test/MyStaging.xUnitTest/Models/UserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/test/MyStaging.xUnitTest/Models/UserModel.cs -------------------------------------------------------------------------------- /test/MyStaging.xUnitTest/MyStaging.xUnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/test/MyStaging.xUnitTest/MyStaging.xUnitTest.csproj -------------------------------------------------------------------------------- /test/MyStaging.xUnitTest/MyStaging.xUnitTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianggx/mystaging/HEAD/test/MyStaging.xUnitTest/MyStaging.xUnitTest.sln --------------------------------------------------------------------------------