Posts

Showing posts from January 17, 2019

Ciénega de Flores

Image
Ciénega de Flores From Wikipedia, the free encyclopedia Jump to navigation Jump to search This article needs additional citations for verification . Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed. ( September 2014 ) (Learn how and when to remove this template message) Municipality Ciénega de Flores Municipality Settled 1675 Government  • Presidente Municipal Pedro Alonso Casas Quiñones Area  • Total 156.20 km 2 (60.31 sq mi) Population (2005 INEGI Census)  • Total 14,268 Time zone UTC-6 (CST)  • Summer (DST) UTC-5 (CDT) Codigo Postal 65550 Area code(s) +52-825 Website Municipio de Ciénega de Flores Ciénega de Flores is a city and surrounding municipality located in Nuevo Leon, Mexico near Monterrey. It has a large Bridgestone tire factory opened in 2007. Tradition [ edit ] Ciénega d

El Carmen, Nuevo León

Image
El Carmen, Nuevo León From Wikipedia, the free encyclopedia Jump to navigation Jump to search Municipality El Carmen, Nuevo León Municipality Nickname(s):  Carmen Coordinates: 25°55′58″N 100°21′51″W  /  25.93278°N 100.36417°W  / 25.93278; -100.36417 Founded 1614 Government  • Type Municipality  • Mayor Lic Rolando Hugo Garcia Rodriguez Area  • Total 131 km 2 (51 sq mi) Population (2005)  • Total 6,996 Time zone UTC-6 (CST)  • Summer (DST) UTC-5 (CDT) Website El Carmen El Carmen , often known as "Carmen", is a town and municipality of the northeastern Mexican state of Nuevo León. The population was 6,996 at the 2005 census. Located in the Salinas Valley region, it is one of the smallest municipalities of the state of Nuevo León, is bordered by the municipalities of Salinas Victoria at North and East, General Escobedo at South, Abasolo and Hidalgo at West. As

one to one multiple foreign key from same table EF Core

Image
0 Stuck on write code for table relation below : public class PersonModel { public int ID { get; set; } public string Name{ get; set; } public string Address{ get; set; } public DateTime? DateofBirth{ get; set; } public GenderEnum Gender{ get; set; } public PersonDetailModel PersonDetail { get; set; } public PersonDetailModel PersonDetailforMate { get; set; } } public class PersonDetailModel { public int ID { get; set; } public int PersonID { get; set; } public int? MateID { get; set; } public string PhoneNumber{ get; set; } public string OfficeAddress{ get; set; } public MarriageStatusEnum MarriageStatus{ get; set; } public PersonModel Person { get; set; } public PersonModel PersonforMate { get; set; } } I use Fluent API :