Hi guys,
I have the following situation
<code>
[ActiveRecord("pr_product", Lazy = true)]
public class Product : ActiveRecordValidationBase<Product>{
// Stock code
[Property()]
public virtual string stockCode { get; set; }
// Supplier
[BelongsTo("supplierId")]
public virtual Supplier user { get; set; }
}
[ActiveRecord("usr_supplier", Lazy = true)]
public class Supplier : BaseUser<Supplier> {
// PRODUCTS
[HasMany(typeof(Product),
Lazy = true,
Fetch = FetchEnum.Select,
Inverse = false, RelationType =
RelationType.Bag, Cascade = ManyRelationCascadeEnum.All)]
public virtual IList<Product> products { get; set; }
}
</code>
What i would like to do, is to create a composite key between STOCK
CODE and the SUPPLIER in the PRODUCT entity. This is required in order
to allow the same stock code to exist in more than one SUPPLIER but
unique in the same SUPPLIER.
Any help would be greatly appreciated,
thanks guys
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Castle Project Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/castle-project-users?hl=en
-~----------~----~----~----~------~----~------~--~---