Click here to Skip to main content
15,912,400 members

Comments by ponnapureddy (Top 6 by date)

ponnapureddy 11-Jun-14 8:48am View    
Could you please share some example regarding this.
ponnapureddy 11-Jun-14 8:39am View    
Thank you Peter. Is there any other way to share the information between domains other than query string can you please give me the solution.
ponnapureddy 11-Jun-14 7:26am View    
Hi Rohan,
My requirement like this. My application want to use language from other application. Based on the language my pages needs to be rendered. Which is the better way to do this can you please give me solution.
ponnapureddy 25-Mar-14 7:58am View    
It is not working. Please suggest me.
ponnapureddy 27-Jan-14 8:04am View    
Deleted
Please find the code below.

public partial class Person
{
#region Primitive Properties

public virtual long PersonId
{
get;
set;
}

public virtual string PersonSourceIdentifier
{
get;
set;
}

public virtual Nullable<long> MPID
{
get;
set;
}

public virtual Nullable<bool> IsLoginRequired
{
get;
set;
}

public virtual Nullable<bool> Publish
{
get;
set;
}

public virtual Nullable<bool> AllowOnline
{
get;
set;
}

public virtual Nullable<bool> AllowPrint
{
get;
set;
}

public virtual string Notes
{
get;
set;
}

public virtual byte StatusId
{
get;
set;
}

public virtual string CreatedBy
{
get;
set;
}

public virtual System.DateTime CreatedDate
{
get;
set;
}

public virtual string ModifiedBy
{
get;
set;
}

public virtual Nullable<system.datetime> ModifiedDate
{
get;
set;
}

public virtual string CustomFieldsData
{
get;
set;
}

public virtual string UserImage
{
get;
set;
}

public virtual Nullable<int> LandingPageID
{
get { return _landingPageID; }
set
{
try
{
_settingFK = true;
if (_landingPageID != value)
{
if (Application != null && Application.ApplicationId != value)
{
Application = null;
}
_landingPageID = value;
}
}
finally
{
_settingFK = false;
}
}
}
private Nullable<int> _landingPageID;

#endregion
#region Navigation Properties

public virtual Application Application
{
get { return _application; }
set
{
if (!ReferenceEquals(_application, value))
{
var previousValue = _application;
_application = value;
FixupApplication(previousValue);
}
}
}
private Application _application;

public virtual ICollection<applicationrolerequest> ApplicationRoleRequests
{
get
{
if (_applicationRoleRequests == null)
{
var newCollection = new FixupCollection<applicationrolerequest>();
newCollection.CollectionChanged += FixupApplicationRoleRequests;
_applicationRoleRequests = newCollection;
}
return _applicationRoleRequests;
}
set
{
if (!ReferenceEquals(_applicationRoleRequests, value))
{
var previousValue = _applicationRoleRequests as FixupCollection<applicationrolerequest>;
if (previousValue != null)
{
previousValue.CollectionChanged -= FixupApplicationRoleRequests;
}
_applicationRoleRequests = value;
var newValue = value as FixupCollection<applicationrolerequest>;
if (newValue