Posts

Showing posts from December 5, 2018

EF Core - Creating two navigation properties mapped to a single inverse property

Image
up vote 0 down vote favorite I have the following entities set up. public class Car { public int Id { get; protected set; } public HashSet<Wheel> FrontWheels { get; set; }; public HashSet<Wheel> RearWheels { get; set; }; } public class Wheel { public int Id { get; protected set; } //public Car Car { get; set; } public double Diameter { get; set; } public double Width { get; set; } } A Car has Wheels. It interacts with the fronts and rears very differently and therefore they are held in different collections. A wheel by itself is neither a front or a rear (it could be either), it is only through its association with the car that it is given a position on the car. I can set this up in EF Core 2.1 using the following config: modelBuilder.Entity<Car>().HasMany(car

Weihbischof

Image
Weihbischof Reinhard Hauke (Erfurt) in Chorkleidung Weihbischof Hans-Georg Koitz (Hildesheim) in Pontifikalien Weihbischof Thomas Löhr (Limburg) Weihbischof ist die im deutschen Sprachraum übliche Bezeichnung für das in vielen katholischen Diözesen vorhandene Amt des Auxiliarbischofs (von lateinisch episcopus auxiliaris ‚Hilfsbischof‘). Inhaltsverzeichnis 1 Geschichte 2 Sakramentaler Status 3 Dienst 4 Insignien 5 Titulatur 6 Literatur 7 Weblinks 8 Einzelnachweise Geschichte | Die ersten Weihbischöfe waren Bischöfe, deren Diözesangebiet von nichtchristlichen Herrschern erobert worden war und die ihren Bischofssitz verlassen mussten. Kirchenrechtlich behielten sie ihren Titel bei. Diese Bischöfe suchten Zuflucht bei einem Bischof in einem katholischen Gebiet, der sie dann häufig als Stellvertreter einsetzte. Im Verlauf des Mittelalters institutionalisierte sich dieses Amt, so dass man begann, Bischöfe von vornherein auf Di