Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 MVC3 的一个视图中使用两个不同的 ado.net 实体?
您可以创建一个封装这两个实体的模型。
public class MyViewModel { public AdoEntityA { get; set; } public AdoEntityB { get; set; } }
或者,您可以创建一个仅包含两个实体所需的特定字段的视图模型。
Automapper 是域实体和视图模型之间非常有用的映射。