Is it just me or does the CSLA.net 2.x not support passing a criteria through the Dataportal_Create?
Jon
Don't specify the function as an override... it works.
Good luck!
protected void DataPortal_Create(Criteria criteria)
{
if (criteria == null)
{
throw new ArgumentNullException("criteria");
}
_address = criteria.Address;
ValidationRules.CheckRules();
}
Copyright (c) Marimer LLC