Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I use more than one language on my site. I pull data in languages ??from different rows. For example, I pull the Turkish one from TURKISH_counter_title and the Spanish one from the SPAIN_counter_title row. So I want to extract data from different rows in the same table according to the language. How can I do this parsing?

 [HttpGet]
 public ActionResult Index()
 {
     Home home = new Home();
     var dbCounter = db__.Counter.ToList();

     foreach (var item in dbCounter)
     {
         home.Counter_Datas.Add(new Home.CounterData()
                                    {
                                        id = item.ID,
                                        Counter_Title = item.TURKISH_counter_title,
                                    });
    }
}

enter image description here

question from:https://stackoverflow.com/questions/65642694/multiple-language-get-data-entity-asp-net

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...