vote up 2 vote down star
1

I just got the latest version of Fluent from Google code and it seems some of the mapping has changed since I last used it.

Previously I could Map a relationship using the following when the id I was joining on had a different name in the second table

HasMany(x=> x.Roles).WithTableName("tbl_Roles").WithKeyColumn("RoleId");

How is done in the latest release of Fluent?

Thanks

flag

2 Answers

vote up 4 vote down check
HasMany(x => x.Roles)
  .WithTableName("tbl_Roles")
  .KeyColumns.Add("RoleId");

Multiple column support was added, so the method signature needed to be improved to make it clear what's happening.

link|flag
vote up 4 vote down

For me works:

HasMany(x => x.Roles)
  .WithTableName("tbl_Roles")
  .KeyColumnNames.Add("RoleId");
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.