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

Categories

0 votes
955 views
in Technique[技术] by (71.8m points)

multiple language get data entity asp.net

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...