Ich habe eine OnPost-Methode, die spezifisch für die Aktualisierung eines bestimmten Objekts mit dem Namen Status ist:
public async Task OnPostStatus()
{
Status ExistingRecord = await _context.Status.FirstOrDefaultAsync(m => m.Id == Status.Id);
if (ExistingRecord == null)
{
_context.Status.Add(Status);
} else
{
ExistingRecord.Description = Status.Description;
ExistingRecord.Hint = Status.Hint;
_context.Attach(ExistingRecord).State = EntityState.Modified;
}
await _context.SaveChangesAsync();
StatusMessage = "Saved!";
await OnGetAsync();
}
Aber ich mache genau das gleiche OnPost mit 4 anderen Objekten, die genau die gleichen Eigenschaften haben. Daher möchte ich es dynamischer gestalten, indem ich den Objekttyp wie folgt an OnPost übergebe:
public async Task OnPost(string objectName)
{
var objectName ExistingRecord = await _context.(objectName).FirstOrDefaultAsync(m => m.Id == (objectName).Id);
if (ExistingRecord == null)
{
_context.(objectName).Add((objectName));
} else
{
ExistingRecord.Description = (objectName).Description;
ExistingRecord.Hint = (objectName).Hint;
_context.Attach(ExistingRecord).State = EntityState.Modified;
}
await _context.SaveChangesAsync();
StatusMessage = "Saved!";
await OnGetAsync();
}
Ich kenne die spezifische Syntax nicht!
Da diese Klassen genau dieselben Felder haben, können Sie a common class
als Basisklasse zum Speichern der Felder erstellen.
In meinem Beispiel gibt es drei Tabellen (tb1, tb2, tb3) und eine Basisklasse ( tbBase
). Die Basisklasse bezieht sich nicht auf die Datenbank:
public class tbBase
{
public int Id { get; set; }
public string Description { get; set; }
public string Hint { get; set; }
}
public class tb1: tbBase
{
}
public class tb2 : tbBase
{
}
public class tb3 : tbBase
{
}
Nehmen tbBase class as the parameter
dann in der Ansicht die tbBase class as the parameter
und übergeben Sie sie an die post-Methode sowie an a specific table type parameter
, der geändert werden muss.
<form method="post">
Id:<input id="Id" type="text" name="Id" /><br/>
Description: <input id="Description" type="text" name="Description" /><br/>
Hint: <input id="Hint" type="text" name="Hint" /><br/>
table type:<input id="Text1" type="text" name="type" />
<input id="Button1" type="submit" value="button" />
</form>
Speichern Sie in PageModel die Schlüssel-Wert-Paare aus Parametertabellentyp und spezifischem Typ über Dictionary
:
public async Task OnPost(tbBase table, string type)
{
Dictionary<string, Type> TableTypeDictionary = new Dictionary<string, Type>()
{
{ "tb1", typeof(tb1) },
{ "tb2", typeof(tb2) },
{ "tb3", typeof(tb3) }
};
dynamic obj = Activator.CreateInstance(TableTypeDictionary[type]);
for (int i = 0; i < obj.GetType().GetProperties().Length; i++)
{
obj.GetType().GetProperties()[i].SetValue(obj, table.GetType().GetProperty(obj.GetType().GetProperties()[i].Name).GetValue(table, null), null);
}
var ExistingRecord = _context.Find(TableTypeDictionary[type], obj.Id);
if (ExistingRecord == null)
{
obj.Id = 0;//ID is self growing, no need to customize settings
_context.Add(obj);
}
else
{
ExistingRecord.Description = table.Description;
ExistingRecord.Hint = table.Hint;
_context.Attach(ExistingRecord).State = EntityState.Modified;
}
await _context.SaveChangesAsync();
StatusMessage = "Saved!";
await OnGetAsync();
}