automapper-5

    0熱度

    1回答

    我在網上API獲得方法: public async Task<IHttpActionResult> Get() { var categories = await _context.Categories.Include(x => x.SubCategories) .Where(c => c.IsActive) .ToListAsync(

    0熱度

    1回答

    在裝配之前掃描(大約4.x版)Automapper多種來源,我們不喜歡的東西下面提供集中的方法來添加配置文件: /// <summary> /// Class that allows all the AutoMapper profiles to be initiated for all assemblies within the platform. /// </summary> publi

    0熱度

    1回答

    我正在使用實例API的最新版本。 我的源類型: public class Source { public string ValueX { get; set; } public string ValueY { get; set; } public string ValueZ { get; set; } } 我的目標類型: public class Destinat

    1熱度

    2回答

    我們正在設計一個實體定義可以改變的時間系統。我試圖設置Automapper,但無法弄清楚前綴應該如何工作。 舉個例子,我想有以下實體: public class ReferenceDataDefinition { public string Name { get; set; } } public class ReferenceData { public int Id

    3熱度

    1回答

    型號: public class Client{ public int Id {get;set;} public string Name {get;set;} public Address Address {get;set;} public int AddressId {get;set;} } public class Address{

    0熱度

    1回答

    我有一個實體: public abstract class BaseEntity { public Int16 Id { get; set; } public DateTime Timestamp { get; set; } } public class Certificate : BaseEntity { public String Name { get;

    3熱度

    1回答

    我使用Automapper 5.2.0在我的項目。當我使用ProjectTo()在代碼中出現此錯誤: Mapper not initialized. Call Initialize with Appropriate configuration. If you are trying to use mapper instances through a container or otherwise, m

    2熱度

    1回答

    我想從源的子對象映射到目標(作爲父對象)。 源模型: public class SourceBaseResponse<T> where T : new() { public string Type { get; set; } public string Id { get; set; } public T Attributes { get; set; } }

    0熱度

    1回答

    在這種情況下,我無法關注wiki。我想使用Automapper 5.2。我無法找到結束示例的簡單結尾,它顯示了具有上下文的可靠配置。根據上下文,我的意思是你把配置文件放在哪裏以及靜態和實例api之間有什麼區別? 我檢出了DNRTV下載,但它處理1.0版本。 如何設置此包?我有一個名爲Client的模型,如下所示。 public class Client : IEntityBase {

    0熱度

    1回答

    我想在ASP.NET API版本2.0中使用vb.net在Global.asax文件中初始化Automapper。我正在使用Auto Mapper 5.2版。我可以初始化使用C#代碼,但我不太確定VB.Net。谷歌上搜索,我發現一些東西,以後這裏就是我現在想: Module AutoMapperConfiguration Public MapperConfiguration As IMapper