Skip to content

Instantly share code, notes, and snippets.

View afruzan's full-sized avatar
😎
I may be slow to respond.

afruzan afruzan

😎
I may be slow to respond.
View GitHub Profile
// ef core 5
// after add/modify/delete some entities at a sync api, i recommend logging changes deeply.
// also it is best practice that returning the `changes` to client throw responce both in seccess and fail situation.
private object logContextChanges()
{
var changes = _context.ChangeTracker.Entries()
.Where(i => i.State != EntityState.Unchanged).Select(t => new
{
state = t.State.ToString(),
type = t.Entity.GetType().FullName,
private void sync<TEntity, TKey>(TEntity[] items, Func<TEntity, TKey> getId, TKey[] currentItemIds, out TKey[] keysToDelete, Action<TEntity> onAdd = null, Action<TEntity> onUpdate = null) where TEntity : class
{
foreach (var item in items)
{
if (currentItemIds.Contains(getId(item)))
{
_context.Entry(item).State = EntityState.Modified;
onUpdate?.Invoke(item);
}
else
@afruzan
afruzan / EFLinqExtensions.cs
Last active January 26, 2021 19:09
Useful EF6/EfCore LINQ Query Extensions
public static class EFLinqExtensions
{
public static IQueryable<TResult> LeftJoin<TOuter, TInner, TKey, TResult>(this IQueryable<TOuter> outer, IQueryable<TInner> inner, Expression<Func<TOuter, TKey>> outerKeySelector, Expression<Func<TInner, TKey>> innerKeySelector, Expression<Func<JoinTuple<TOuter, TInner>, TResult>> resultSelector)
{
return outer.GroupJoin(inner, outerKeySelector, innerKeySelector, (b, @is) => new { b, @is }).SelectMany(i => i.@is.DefaultIfEmpty(), (b, i) => new JoinTuple<TOuter, TInner> { Outer = b.b, Inner = i }).Select(resultSelector);
}
public static IEnumerable<TResult> LeftJoin<TOuter, TInner, TKey, TResult>(this IEnumerable<TOuter> outer, IEnumerable<TInner> inner, Func<TOuter, TKey> outerKeySelector, Func<TInner, TKey> innerKeySelector, Func<JoinTuple<TOuter, TInner>, TResult> resultSelector)
{
@afruzan
afruzan / RequestResponseLoggingMiddleware.cs
Created January 28, 2021 12:42
logging full request and responce (including body) in asp.net core (tested on 5 but should supports 3.1).
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
namespace TVS.Web.DataReceiverService.Middlewares
@afruzan
afruzan / AddFileLoggerSample.sc
Created January 28, 2021 16:28
asp.net core (tested on 5) sample for simple and light and also powerful file logger provider.
public class Program
{
private static DateTime _startupTimestamp;
public static void Main(string[] args)
{
_startupTimestamp = DateTime.Now;
CreateHostBuilder(args).Build().Run();
}
@afruzan
afruzan / IranOfficialDateAndTimeInSQLServer.sql
Last active March 18, 2021 12:24
Iran Official Date And Time (Jalali calendar - Tehran TimeZone) Solution in SQL raw and linq query (ef core 5).
declare @myutcdate as datetime2 = CAST('2021-03-17 22:00' AS datetime2);
select
FORMAT(SWITCHOFFSET(@myutcdate, '+03:30'), 'yyyy-MM-dd', 'fa') as 'get iran date',
FORMAT(SWITCHOFFSET(@myutcdate, '+03:30'), 'yyyy-MM', 'fa') as 'get iran year-month',
CAST(FORMAT(SWITCHOFFSET(@myutcdate, '+03:30'), 'dd', 'fa') as int) as 'get iran day',
CAST(FORMAT(@myutcdate, 'dd', 'fa') as int) as 'invalid time-zone results in invalid date.'
// a query on db without any think on database data structure:
// (NullIfEmpty is my function on T[].)
var shardsBounds = context.Storages
.Select(i => new ShardBounds
{
StorageCode = i.StorageCode,
StartDateTime = i.StartDateTime,
EndDateTime = i.EndDateTime,
PlateReaderIds = i.StoragePlateReaders.Select(i => i.PlateReaderId).ToArray().NullIfEmpty(),
});
@afruzan
afruzan / SignalRHubsAuthExtentions.cs
Last active October 4, 2021 17:03
supporting .net core auth in signalr hubs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Authentication.JwtBearer;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection.Extensions;
using Microsoft.Extensions.Options;
namespace SignalRWebApp
@afruzan
afruzan / JS-LINQ.js
Created February 5, 2022 17:06 — forked from DanDiplo/JS-LINQ.js
JavaScript equivalents of some common C# LINQ methods. To help me remember!
// JS array equivalents to C# LINQ methods - by Dan B.
// Here's a simple array of "person" objects
var people = [
{ name: "John", age: 20 },
{ name: "Mary", age: 35 },
{ name: "Arthur", age: 78 },
{ name: "Mike", age: 27 },
{ name: "Judy", age: 42 },
{ name: "Tim", age: 8 }
@afruzan
afruzan / retry-policy.ts
Last active April 17, 2023 14:21
JavaScript promise retry policy and delay with cancellation token
export class RetryPolicy<T> {
constructor(
private action: () => Promise<T>,
private retryDelays: number[]) {
}
private retryNumber;