This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
Hi, I am using lightspeed (v. 5.0.2302.0) with sql server. In my DB, I have a user table with varchar primary key called loginId. And another table called userinfo with varchar column loginId. There are no foreign key relationship. Using C#, I am eager-loading UserInfo collection from User class[EagerLoad(AggregateName = "UserInfos")]
[ReverseAssociation("UserInfo")]
private readonly EntityCollection public EntityCollection
|
|
|
Does your database collation support case sensitive comparison? LightSpeed will see these as two seperate identity values but it will also rely on your database comparisons being case sensitive for fetching related entities based on the identity value.
|
|