相对来说,我是C#编程的新手,正在尝试找出以下内容。
我有一个名为BrandModel的类对象,其中包含2个属性:
BrandModel
public string BrandName { get; set; }
public string BrandImageUrl { get; set; }
我还有一个名为CreatedBrandSetModel的类对象,其中包含2个属性:
CreatedBrandSetModel
public string BrandSetName { get; set; }
public List<BrandModel> brands { get; set; }
我的目标是将CreatedBrandSetModel系统地存储到SQL数据库中,在该数据库中CreatedBrandSetModel与创建它的用户相关联。
我该怎么做?