To anyone who can help.
I have been messing around with cleaning up the Framework to get it to where I copy the files to a IIS share and can begin coding.
I followed the steps above trying to get a simple framwork modification test going. On compile I got an error:
Code:
V2.PaidTimeOffDAL.AETransfers' does not implement interface member 'V2.PaidTimeOffDAL.Framework.IENTBaseEntity.InsertDate
Actually I got an error for all of interface objects that reside inside of IENTBaseEntity
Code:
namespace V2.PaidTimeOffDAL.Framework
{
public interface IENTBaseEntity
{
DateTime InsertDate { get; set; }
int InsertENTUserAccountId { get; set; }
DateTime UpdateDate { get; set; }
int UpdateENTUserAccountId { get; set; }
Binary Version { get; set; }
}
I take it that, it expects these fields to be present in the table, which they are, however I am lost on how to resolve it. I went back to Chpt 2 but do not see anything that relates to these errors. If you need more infomration please let me know.