CSS-файл не находит изображение для фона

Я просто столкнулся с той же проблемой.

Я нашел очень легкое решение.

var a = att as Attachment;

Func<Culture, AttachmentCulture> make = 
    c => new AttachmentCulture { Culture = c };

var culs = from c in dc.Cultures
           let ac = c.AttachmentCultures.SingleOrDefault( 
                                           x => x.Attachment == a)
           select ac == null ? make(c) : ac;

return culs;
0
задан jmd_10 30 March 2019 в 23:22
поделиться