I try ProjectTracker with SL with CSLA 4.3.14.0
I got this message "DataPortal_Fetch not implemented" on LogIn procedure:
public static void GetPTIdentity(string username, string password, EventHandler<DataPortalResult<PTIdentity>> callback)
{
DataPortal.BeginFetch<PTIdentity>(new UsernameCriteria(username, password), callback);
}
In my App.xaml Start_Up I have
Csla.DataPortal.ProxyTypeName = "Local";
What could be the reason?
Most likely caused by PTIdentity.DataPortal_Fetch not implemented in the SL business assembly.
SL has no direct database access so I assume this sample will not work with "local" DataPortal proxt.
Copyright (c) Marimer LLC