J'ai une méthode OnPost spécifique à la mise à jour d'un objet particulier par le nom de Status:
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();
}
Mais je fais exactement ce même OnPost avec 4 autres objets qui ont exactement les mêmes propriétés. Donc, je veux le rendre plus dynamique en passant le type d'objet dans l'OnPost, comme ceci:
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();
}
Je ne connais pas la syntaxe spécifique!
Étant donné que ces classes ont exactement les mêmes champs, vous pouvez créer a common class
comme a common class
de base pour stocker les champs.
Dans mon exemple, il y a trois tables (tb1, tb2, tb3) et une classe de base ( tbBase
), la classe de base n'est pas liée à la base de données:
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
{
}
Ensuite, dans la vue, prenez la tbBase class as the parameter
et passez-la à la méthode post, ainsi qu'un a specific table type parameter
qui doit être modifié.
<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>
Dans PageModel, stockez les paires clé-valeur de type de table de paramètres et de type spécifique via 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();
}