01 2025 档案
摘要:导出文件exphrc:\hr.dmp删除用户/新建用户sqlplus / as sysdbadrop user hr cascade; create user hr identified by hr ; grant create session,create table, create view,C
阅读全文
摘要:using (DevExpress.Utils.WaitDialogForm dlg = new DevExpress.Utils.WaitDialogForm("请稍等", "查询中......", new System.Drawing.Size(100, 50))) { string sqlSt
阅读全文
摘要:log4net.config<log4net> <appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender"> <!--定义文件存放位置--> <file value="log/" /> <ap
阅读全文
摘要:namespace jxc.Api; public class ApiResult { ///<summary> ///是否正常返回 ///</summary> public bool Success { get; set; } ///<summary> ///处理消息 ///</summary>
阅读全文
摘要:技术栈 .net8 web api AutoMapper WebApplicationBuilder builder = WebApplication.CreateBuilder(args); builder.Services.AddAutoMapper(typeof(AutoMapConfig))
阅读全文
摘要:using EasyCaching.SQLite; using jxc.Repository; using jxc.Service; namespace jxc.Api; public class Program { public static void Main(string[] args) {
阅读全文
摘要://nuget引入: //log4net //Microsoft.Extensions.Logging.Log4Net.AspNetCore builder.Logging.AddLog4Net("log4net.Config"); builder.Services.AddControllers()
阅读全文
摘要:<Project Sdk="Microsoft.NET.Sdk.Web"> <PropertyGroup> <TargetFramework>net8.0</TargetFramework> <Nullable>disable</Nullable> <ImplicitUsings>enable</I
阅读全文