/// <summary> /// 會把物件 Parameter 的各 Property 帶入 SQL 中. /// </summary> /// <param name="dbct"></param> /// <param name="sql"></param> /// <param name="parameters"></param> /// <returns></returns> public static async Task<int> ExecuteParameterSqlAsync(this DbContext dbct, string sql, object parameters) { return await dbct.Database.ExecuteSqlRawAsync(sql, parameters.ToSqlParamsArray()); }
public async Task<object> EfTest() { var dbct = Ds.NewContext.GvContext; var insertSql = @"Insert into ProfileEvent(JobId,[Name],GvShoplineId,LiShoplineId,Phone,Email,LineId,GaClientId) Values(@JobId, @Name, null , null , null , @Email, @GaClientId , @GaClientId )"; //執行 SQL 的原生寫法 await dbct.Database.ExecuteSqlRawAsync(insertSql, new object[] { new SqlParameter("@JobId", 10), new SqlParameter("@Email", "XX'TT"), new SqlParameter("@Name", "AA'BB"), new SqlParameter("@GaClientId", "GaClientId"), }); //執行 SQL 的擴充寫法 await dbct.ExecuteParameterSqlAsync(insertSql, new { JobId = 10, Email = "XX'TT", Name = "AA'BB", GaClientId = "GaClientId" }); //關於查詢 string name = "%'B%"; //原生寫法 var res1 = await dbct.ProfileEvents.FromSqlRaw("Select top 100 * from ProfileEvent where Name like @name", new object[] { new SqlParameter("@name", "%'B%") }) .ToListAsync(); //擴充, object to SqlParameter array var res2 = await dbct.ProfileEvents.FromSqlRaw("Select top 100 * from ProfileEvent where Name like @name", new { name }.ToSqlParamsArray()) .ToListAsync(); var res3 = await dbct.ProfileEvents.FromSql($"Select top 100 * from ProfileEvent where Name like {name}") .ToListAsync(); var res4 = await dbct.ProfileEvents.FromSqlInterpolated($"Select top 100 * from ProfileEvent where Name like {name}") .ToListAsync(); return new { res1, res2, res3, res4 }; }
app.UseStaticFiles(new StaticFileOptions { OnPrepareResponse = ctx => { const int durationInSeconds = 60 * 60 * 24 * 365; //一年 ctx.Context.Response.Headers[HeaderNames.CacheControl] = "public,max-age=" + durationInSeconds; } }); app.UseRouting();
<ItemGroup> <PackageReference Include="sqlite-net-pcl" Version="1.8.116" /> <PackageReference Include="SQLiteNetExtensions.Async" Version="2.1.0" /> <PackageReference Include="SQLitePCLRaw.bundle_green" Version="2.1.4" /> <PackageReference Include="SQLitePCLRaw.core" Version="2.1.4" /> <PackageReference Include="SQLitePCLRaw.lib.e_sqlite3" Version="2.1.4" /> <PackageReference Include="SQLitePCLRaw.provider.dynamic_cdecl" Version="2.1.4" /> <PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" /> </ItemGroup>
static List<Brush> CaptchaBrushes = null; public static FileStreamResult CreateCaptcha(string captcha) { if (CaptchaBrushes == null) { CaptchaBrushes = new List<Brush>(); CaptchaBrushes.Add(Brushes.White); CaptchaBrushes.Add(Brushes.Gold); CaptchaBrushes.Add(Brushes.LightSkyBlue); CaptchaBrushes.Add(Brushes.LimeGreen); CaptchaBrushes.Add(Brushes.AliceBlue); CaptchaBrushes.Add(Brushes.AntiqueWhite); CaptchaBrushes.Add(Brushes.BurlyWood); CaptchaBrushes.Add(Brushes.Silver); } int width = 90; int height = 45; //https://stackoverflow.com/questions/61365732/cannot-access-a-closed-stream-when-returning-filestreamresult-from-c-sharp-netc //Using statements close and unload the variable from memory set in the using statement which is why you are getting an error trying to access a closed memory stream.You don't need to use a using statement if you are just going to return the result at the end. //這個 memory stream 不用關閉或 dispose var ms = new MemoryStream(); // 釋放所有在 GDI+ 所佔用的記憶體空間 ( 非常重要!! ) using (Bitmap _bmp = new Bitmap(width, height)) using (Graphics _graphics = Graphics.FromImage(_bmp)) using (Font _font = new Font("Courier New", 24, FontStyle.Bold)) // _font 設定要出現在圖片上的文字字型、大小與樣式 { // (封裝 GDI+ 繪圖介面) 所有繪圖作業都需透過 Graphics 物件進行操作 _graphics.Clear(Color.Black); // 如果想啟用「反鋸齒」功能,可以將以下這行取消註解 //_graphics.TextRenderingHint = TextRenderingHint.AntiAlias; // 將亂碼字串「繪製」到之前產生的 Graphics 「繪圖板」上 var x = 10; for(var i = 0; i < captcha.Length; i++) { _graphics.DrawString(captcha.Substring(i, 1), _font, CaptchaBrushes[Su.MathUtil.GetRandomInt(CaptchaBrushes.Count)], x, Su.MathUtil.GetRandomInt(15)); x += 10 + Su.MathUtil.GetRandomInt(10); } // 畫線 _graphics.DrawLine(new Pen(CaptchaBrushes[Su.MathUtil.GetRandomInt(CaptchaBrushes.Count)], 1), Su.MathUtil.GetRandomInt(0, Convert.ToInt32((width * 0.9 / 2))), 0, Su.MathUtil.GetRandomInt(Convert.ToInt32(width / 2), Convert.ToInt32(width * 1.9 / 2)), height); _graphics.DrawLine(new Pen(CaptchaBrushes[Su.MathUtil.GetRandomInt(CaptchaBrushes.Count)], 1), Su.MathUtil.GetRandomInt(Convert.ToInt32(width / 2), Convert.ToInt32(width * 1.9 / 2)), 0, Su.MathUtil.GetRandomInt(0, Convert.ToInt32((width * 0.9 / 2))), height); _graphics.DrawLine(new Pen(CaptchaBrushes[Su.MathUtil.GetRandomInt(CaptchaBrushes.Count)], 1), 0, Su.MathUtil.GetRandomInt(height / 2), width, height / 2 + Su.MathUtil.GetRandomInt(height / 2) ); _graphics.DrawLine(new Pen(CaptchaBrushes[Su.MathUtil.GetRandomInt(CaptchaBrushes.Count)], 1), 0, height / 2 + Su.MathUtil.GetRandomInt(height / 2), width, Su.MathUtil.GetRandomInt(height / 2) ); _bmp.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg); } ms.Seek(0, SeekOrigin.Begin); // Controller 的型別為 FileResult return new FileStreamResult(ms, "image/jpeg") { FileDownloadName = $"{DateTime.Now.Ymdhmsf()}.jpg" }; }
namespace Web.Controllers { public class CaptchaController : Controller { [Route("captcha")] public async Task<FileStreamResult> Index() { //產生 Captcha 並存入 Session 之中。目前是四位數字 string captcha = (await Ah.ReGetAsync<object>("api/kol/create-captcha-code")).ToString(); //產生圖檔並回傳 FileStreamResult return Su.Wu.CreateCaptcha(captcha); } } }
var newFilename = filename.Replace("..", "").ValidFilenameCharacters();