實體: public class Entity
{
public int Id { get; set; }
}
public class User : Entity
{
public string Name { get; set; }
public Company Company { get; set; }
}
public class Compan
我很努力地映射2個對象。基本上有產品,這是我的EF模型,我將它映射到具有FileDto的ProductDto。 我想將Product.FileName映射到ProductDto.File.Internal名稱,如何做到這一點? 下面的類。 public class Product : BaseEntity<long>
{
[MaxLength(100)]
public
我使用AutoMapper將ViewModel映射到模型。但是,如果相應的源屬性爲null,我希望屬性不會映射。 我的源類如下: public class Source
{
//Other fields...
public string Id { get; set; } //This should not be mapped if null
}
和目的地類是: publ