I have the following tables: Country, Language and Country2Language
Country2Language is the linking table that creates the M:M relationship which is defined using Fluent Mapping:
mb.Entity<Country>()
.HasMany(e => e.Languages)
.WithMany(set => set.Countries)
.Map(mc =>
{
mc.ToTable("Country2Language");
mc.MapLeftKey("CountryShortName");
mc.MapRightKey("LanguagesID");
}
);
My question: How can I add an additional DateTime "DateCreated" property?