private string HelpMe([CallerMemberName] string param = "")
{
return param;
}
meine Sys/Db admin & Developper Notitzen - wer Rechtschreibfehler findet darf sie behalten ... my Sys/Db Admin and developper notes - I don't care about typos
Friday, May 18, 2018
c# CallerMemberName attribute gibt namen der aufrufender methode zurück
Wednesday, May 09, 2018
power shell debug verbose
dir variable:*pref*
$DebugPreference = "Continue"
$VerbosePreference = "Continue"
$DebugPreference = "Continue"
$VerbosePreference = "Continue"
Programmpfad herausfinden in shell (where in cmd oder power shell)
linux / unix: which
windows cmd: where.exe
power shell: where.exe
n powershell muß man where.exe schreiben, da where abkürzung für Where-Object ist
windows cmd: where.exe
power shell: where.exe
n powershell muß man where.exe schreiben, da where abkürzung für Where-Object ist
Monday, May 07, 2018
Getting __MigrationHistory Table
HistoryContext hc = new HistoryContext(myContext.Database.Connection,"dbo");
var migrations = hc.History.ToList();
var migrations = hc.History.ToList();
Subscribe to:
Posts (Atom)