آماده شدن برای استفاده از NET 9.0.
C# 6 - String Interpolation
var text = string.Format("Format one value: {0}", 42);
private static readonly CompositeFormat StaticField = CompositeFormat.Parse("Format one value: {0}"); var text = string.Format(StaticField, 42);
dotnet_diagnostic.CA1863.severity = error
عادتهای خوب توسعهی نرم افزار
واکشی اولیه در HTML5 Prefetching - HTML5
[ApiController] [AllowAnonymous] [Route(template: "/.well-known")] public class PrefetchProxyController : ControllerBase { [HttpGet(template: "traffic-advice")] [Produces(contentType: "application/trafficadvice+json")] public IActionResult TrafficAdvice() => Ok(new[] { new PrefetchProxyTrafficAdvice() }); } public class PrefetchProxyTrafficAdvice { [JsonPropertyName(name: "user_agent")] public string UserAgent { set; get; } = "prefetch-proxy"; public bool Disallow { set; get; } = true; }
[ {"user_agent": "prefetch-proxy", "disallow": true} ]
سپاس از شما
آموزش Postgres در 7 سطح
Level 0: Sky Zone: CREATE TABLE, JOIN, NULL, ...
Level 1: Surface Zone: ACID, outer joins, normal forms, ...
Level 2: Sunlight Zone: Connection pools, LATERAL Join, Stored Procedures, ...
Level 3: Twilight Zone: Isolation levels, ZigZag Join, Triggers, ...
Level 4: Midnight Zone: Denormalization, SELECT FOR UPDATE, star schemas, ...
Level 5: Abyssal Zone: MATCH PARTIAL foreign keys, 'null'::jsonb IS NULL = false, ...
Level 6: Hadal Zone: volcano model, join ordering is NP Hard, ...
Level 7: Pitch Black Zone: NULL, the halloween problem, fsyncgate, ...
بازنویسی کردن متد
Task<IdentityResult> CreateAsync(User user, string password)
بیمورد بوده؛ چون این متد در پشت صحنه، متد CreateAsync(User user) را فراخوانی میکند.
سلام و احترام
در پروژه DNTIdentity موقع ثبت نام کار، رکورد پسوردهای استفاده شده توسط کاربر در جدول AppUserUsedPasswords، دو بار ثبت می شود (رکورد تکراری)، راه حل این مشکل چیست؟
بانک اطلاعاتی هم 2019 sql server می باشد
سپاس از شما