这只是为了满足我的好奇心。做其中一个与另一个相比有什么区别或优势吗
public static void Save(Guid id, int a, string b)
{
//Save a and b to the database using PK id
}
超过:
Guid ID {get; set;}
int A {get; set;}
string B {get ;set;}
public void Save()
{
//Save A and B to the database using PK ID
}
编辑:好的一些上下文:所以 Web UI 将 JSON 传递给静态页面方法。页面方法解析 JSON 并将新变量传递给其他 DLL 中的静态类。然后使用实体框架来更新数据库。这个可以吗?