Frans,
I'm not sure why this doesn't work... I'm trying to create interfaces which can be used to handle mutliple entities generated from the same table.
I have put the following code into the Generated project:
namespace Sds.ModernArk.Services.Ark.Data.DatabaseGeneric.EntityClasses
{
public interface IAccountSummary
{
int AccountID { get; set; }
}
public partial class AccountEntity : IAccountSummary
{ }
public partial class AccountSummaryEntity : IAccountSummary
{ }
}
But it wont compile...
I says AccountEntity and AccountSummaryEntity does not implement IAccountSummary.AccountID
When it clearly does...
Any ideas?
PS... Its friday so maybe Im doing somethign STUPID wrong.
Marcus