Mini Kabibi Habibi
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Data.Objects;
using System.Data.Objects.DataClasses;
using System.Data.EntityClient;
using System.ComponentModel;
using System.Xml.Serialization;
using System.Runtime.Serialization;
[assembly: EdmSchemaAttribute()]
namespace DevExpress.MailClient.DataService
{
#region Contexts
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public partial class DataEntities : ObjectContext
{
#region Constructors
/// <summary>
/// Initializes a new DataEntities object using the connection string found in the 'DataEntities' section of the application configuration file.
/// </summary>
public DataEntities() : base("name=DataEntities", "DataEntities")
{
this.ContextOptions.LazyLoadingEnabled = true;
OnContextCreated();
}
/// <summary>
/// Initialize a new DataEntities object.
/// </summary>
public DataEntities(string connectionString) : base(connectionString, "DataEntities")
{
this.ContextOptions.LazyLoadingEnabled = true;
OnContextCreated();
}
/// <summary>
/// Initialize a new DataEntities object.
/// </summary>
public DataEntities(EntityConnection connection) : base(connection, "DataEntities")
{
this.ContextOptions.LazyLoadingEnabled = true;
OnContextCreated();
}
#endregion
#region Partial Methods
partial void OnContextCreated();
#endregion
#region ObjectSet Properties
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<Appointments> Appointments
{
get
{
if ((_Appointments == null))
{
_Appointments = base.CreateObjectSet<Appointments>("Appointments");
}
return _Appointments;
}
}
private ObjectSet<Appointments> _Appointments;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<Contacts> Contacts
{
get
{
if ((_Contacts == null))
{
_Contacts = base.CreateObjectSet<Contacts>("Contacts");
}
return _Contacts;
}
}
private ObjectSet<Contacts> _Contacts;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<Messages> Messages
{
get
{
if ((_Messages == null))
{
_Messages = base.CreateObjectSet<Messages>("Messages");
}
return _Messages;
}
}
private ObjectSet<Messages> _Messages;
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectSet<Resources> Resources
{
get
{
if ((_Resources == null))
{
_Resources = base.CreateObjectSet<Resources>("Resources");
}
return _Resources;
}
}
private ObjectSet<Resources> _Resources;
#endregion
#region AddTo Methods
/// <summary>
/// Deprecated Method for adding a new object to the Appointments EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToAppointments(Appointments appointments)
{
base.AddObject("Appointments", appointments);
}
/// <summary>
/// Deprecated Method for adding a new object to the Contacts EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToContacts(Contacts contacts)
{
base.AddObject("Contacts", contacts);
}
/// <summary>
/// Deprecated Method for adding a new object to the Messages EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToMessages(Messages messages)
{
base.AddObject("Messages", messages);
}
/// <summary>
/// Deprecated Method for adding a new object to the Resources EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
/// </summary>
public void AddToResources(Resources resources)
{
base.AddObject("Resources", resources);
}
#endregion
}
#endregion
#region Entities
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmEntityTypeAttribute(NamespaceName="DataModel", Name="Appointments")]
[Serializable()]
[DataContractAttribute(IsReference=true)]
public partial class Appointments : EntityObject
{
#region Factory Method
/// <summary>
/// Create a new Appointments object.
/// </summary>
/// <param name="id">Initial value of the ID property.</param>
public static Appointments CreateAppointments(global::System.Int32 id)
{
Appointments appointments = new Appointments();
appointments.ID = id;
return appointments;
}
#endregion
#region Primitive Properties
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)]
[DataMemberAttribute()]
public global::System.Int32 ID
{
get
{
return _ID;
}
set
{
if (_ID != value)
{
OnIDChanging(value);
ReportPropertyChanging("ID");
_ID = StructuralObject.SetValidValue(value);
ReportPropertyChanged("ID");
OnIDChanged();
}
}
}
private global::System.Int32 _ID;
partial void OnIDChanging(global::System.Int32 value);
partial void OnIDChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)]
[DataMemberAttribute()]
public Nullable<global::System.Int32> EventType
{
get
{
return _EventType;
}
set
{
OnEventTypeChanging(value);
ReportPropertyChanging("EventType");
_EventType = StructuralObject.SetValidValue(value);
ReportPropertyChanged("EventType");
OnEventTypeChanged();
}
}
private Nullable<global::System.Int32> _EventType;
partial void OnEventTypeChanging(Nullable<global::System.Int32> value);
partial void OnEventTypeChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)]
[DataMemberAttribute()]
public Nullable<global::System.DateTime> StartDate
{
get
{
return _StartDate;
}
set
{
OnStartDateChanging(value);
ReportPropertyChanging("StartDate");
_StartDate = StructuralObject.SetValidValue(value);
ReportPropertyChanged("StartDate");
OnStartDateChanged();
}
}
private Nullable<global::System.DateTime> _StartDate;
partial void OnStartDateChanging(Nullable<global::System.DateTime> value);
partial void OnStartDateChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)]
[DataMemberAttribute()]
public Nullable<global::System.DateTime> EndDate
{
get
{
return _EndDate;
}
set
{
OnEndDateChanging(value);
ReportPropertyChanging("EndDate");
_EndDate = StructuralObject.SetValidValue(value);
ReportPropertyChanged("EndDate");
OnEndDateChanged();
}
}
private Nullable<global::System.DateTime> _EndDate;
partial void OnEndDateChanging(Nullable<global::System.DateTime> value);
partial void OnEndDateChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)]
[DataMemberAttribute()]
public Nullable<global::System.Boolean> AllDay
{
get
{
return _AllDay;
}
set
{
OnAllDayChanging(value);
ReportPropertyChanging("AllDay");
_AllDay = StructuralObject.SetValidValue(value);
ReportPropertyChanged("AllDay");
OnAllDayChanged();
}
}
private Nullable<global::System.Boolean> _AllDay;
partial void OnAllDayChanging(Nullable<global::System.Boolean> value);
partial void OnAllDayChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)]
[DataMemberAttribute()]
public global::System.String Subject
{
get
{
return _Subject;
}
set
{
OnSubjectChanging(value);
ReportPropertyChanging("Subject");
_Subject = StructuralObject.SetValidValue(value, true);
ReportPropertyChanged("Subject");
OnSubjectChanged();
}
}
private global::System.String _Subject;
partial void OnSubjectChanging(global::System.String value);
partial void OnSubjectChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)]
[DataMemberAttribute()]
public global::System.String Location
{
get
{
return _Location;
}
set
{
OnLocationChanging(value);
ReportPropertyChanging("Location");
_Location = StructuralObject.SetValidValue(value, true);
ReportPropertyChanged("Location");
OnLocationChanged();
}
}
private global::System.String _Location;
partial void OnLocationChanging(global::System.String value);
partial void OnLocationChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)]
[DataMemberAttribute()]
public global::System.String Description
{
get
{
return _Description;
}
set
{
OnDescriptionChanging(value);
ReportPropertyChanging("Description");
_Description = StructuralObject.SetValidValue(value, true);
ReportPropertyChanged("Description");
OnDescriptionChanged();
}
}
private global::System.String _Description;
partial void OnDescriptionChanging(global::System.String value);
partial void OnDescriptionChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)]
[DataMemberAttribute()]
public Nullable<global::System.Int32> Status
{
get
{
return _Status;
}
set
{
OnStatusChanging(value);
ReportPropertyChanging("Status");
_Status = StructuralObject.SetValidValue(value);
ReportPropertyChanged("Status");
OnStatusChanged();
}
}
private Nullable<global::System.Int32> _Status;
partial void OnStatusChanging(Nullable<global::System.Int32> value);
partial void OnStatusChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)]
[DataMemberAttribute()]
public Nullable<global::System.Int32> Label
{
get
{
return _Label;
}
set
{
OnLabelChanging(value);
ReportPropertyChanging("Label");
_Label = StructuralObject.SetValidValue(value);
ReportPropertyChanged("Label");
OnLabelChanged();
}
}
private Nullable<global::System.Int32> _Label;
partial void OnLabelChanging(Nullable<global::System.Int32> value);
partial void OnLabelChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)]
[DataMemberAttribute()]
public Nullable<global::System.Int32> ResourceID
{
get
{
return _ResourceID;
}
set
{
OnResourceIDChanging(value);
ReportPropertyChanging("ResourceID");
_ResourceID = StructuralObject.SetValidValue(value);
ReportPropertyChanged("ResourceID");
OnResourceIDChanged();
}
}
private Nullable<global::System.Int32> _ResourceID;
partial void OnResourceIDChanging(Nullable<global::System.Int32> value);
partial void OnResourceIDChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)]
[DataMemberAttribute()]
public global::System.String RecurrenceInfo
{
get
{
return _RecurrenceInfo;
}
set
{
OnRecurrenceInfoChanging(value);
ReportPropertyChanging("RecurrenceInfo");
_RecurrenceInfo = StructuralObject.SetValidValue(value, true);
ReportPropertyChanged("RecurrenceInfo");
OnRecurrenceInfoChanged();
}
}
private global::System.String _RecurrenceInfo;
partial void OnRecurrenceInfoChanging(global::System.String value);
partial void OnRecurrenceInfoChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)]
[DataMemberAttribute()]
public global::System.String ReminderInfo
{
get
{
return _ReminderInfo;
}
set
{
OnReminderInfoChanging(value);
ReportPropertyChanging("ReminderInfo");
_ReminderInfo = StructuralObject.SetValidValue(value, true);
ReportPropertyChanged("ReminderInfo");
OnReminderInfoChanged();
}
}
private global::System.String _ReminderInfo;
partial void OnReminderInfoChanging(global::System.String value);
partial void OnReminderInfoChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)]
[DataMemberAttribute()]
public global::System.String ContactInfo
{
get
{
return _ContactInfo;
}
set
{
OnContactInfoChanging(value);
ReportPropertyChanging("ContactInfo");
_ContactInfo = StructuralObject.SetValidValue(value, true);
ReportPropertyChanged("ContactInfo");
OnContactInfoChanged();
}
}
private global::System.String _ContactInfo;
partial void OnContactInfoChanging(global::System.String value);
partial void OnContactInfoChanged();
#endregion
}
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmEntityTypeAttribute(NamespaceName="DataModel", Name="Contacts")]
[Serializable()]
[DataContractAttribute(IsReference=true)]
public partial class Contacts : EntityObject
{
#region Factory Method
/// <summary>
/// Create a new Contacts object.
/// </summary>
/// <param name="id">Initial value of the ID property.</param>
/// <param name="name">Initial value of the Name property.</param>
/// <param name="address">Initial value of the Address property.</param>
/// <param name="phone">Initial value of the Phone property.</param>
/// <param name="country">Initial value of the Country property.</param>
/// <param name="city">Initial value of the City property.</param>
public static Contacts CreateContacts(global::System.Int32 id, global::System.String name, global::System.String address, global::System.String phone, global::System.String country, global::System.String city)
{
Contacts contacts = new Contacts();
contacts.ID = id;
contacts.Name = name;
contacts.Address = address;
contacts.Phone = phone;
contacts.Country = country;
contacts.City = city;
return contacts;
}
#endregion
#region Primitive Properties
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)]
[DataMemberAttribute()]
public global::System.Int32 ID
{
get
{
return _ID;
}
set
{
if (_ID != value)
{
OnIDChanging(value);
ReportPropertyChanging("ID");
_ID = StructuralObject.SetValidValue(value);
ReportPropertyChanged("ID");
OnIDChanged();
}
}
}
private global::System.Int32 _ID;
partial void OnIDChanging(global::System.Int32 value);
partial void OnIDChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)]
[DataMemberAttribute()]
public global::System.String Name
{
get
{
return _Name;
}
set
{
OnNameChanging(value);
ReportPropertyChanging("Name");
_Name = StructuralObject.SetValidValue(value, false);
ReportPropertyChanged("Name");
OnNameChanged();
}
}
private global::System.String _Name;
partial void OnNameChanging(global::System.String value);
partial void OnNameChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)]
[DataMemberAttribute()]
public global::System.String Address
{
get
{
return _Address;
}
set
{
OnAddressChanging(value);
ReportPropertyChanging("Address");
_Address = StructuralObject.SetValidValue(value, false);
ReportPropertyChanged("Address");
OnAddressChanged();
}
}
private global::System.String _Address;
partial void OnAddressChanging(global::System.String value);
partial void OnAddressChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)]
[DataMemberAttribute()]
public global::System.String Phone
{
get
{
return _Phone;
}
set
{
OnPhoneChanging(value);
ReportPropertyChanging("Phone");
_Phone = StructuralObject.SetValidValue(value, false);
ReportPropertyChanged("Phone");
OnPhoneChanged();
}
}
private global::System.String _Phone;
partial void OnPhoneChanging(global::System.String value);
partial void OnPhoneChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)]
[DataMemberAttribute()]
public global::System.String Country
{
get
{
return _Country;
}
set
{
OnCountryChanging(value);
ReportPropertyChanging("Country");
_Country = StructuralObject.SetValidValue(value, false);
ReportPropertyChanged("Country");
OnCountryChanged();
}
}
private global::System.String _Country;
partial void OnCountryChanging(global::System.String value);
partial void OnCountryChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)]
[DataMemberAttribute()]
public global::System.String City
{
get
{
return _City;
}
set
{
OnCityChanging(value);
ReportPropertyChanging("City");
_City = StructuralObject.SetValidValue(value, false);
ReportPropertyChanged("City");
OnCityChanged();
}
}
private global::System.String _City;
partial void OnCityChanging(global::System.String value);
partial void OnCityChanged();
#endregion
}
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmEntityTypeAttribute(NamespaceName="DataModel", Name="Messages")]
[Serializable()]
[DataContractAttribute(IsReference=true)]
public partial class Messages : EntityObject
{
#region Factory Method
/// <summary>
/// Create a new Messages object.
/// </summary>
/// <param name="id">Initial value of the ID property.</param>
/// <param name="date">Initial value of the Date property.</param>
/// <param name="from">Initial value of the From property.</param>
/// <param name="subject">Initial value of the Subject property.</param>
/// <param name="text">Initial value of the Text property.</param>
/// <param name="hasAttachment">Initial value of the HasAttachment property.</param>
/// <param name="isReply">Initial value of the IsReply property.</param>
public static Messages CreateMessages(global::System.Int32 id, global::System.DateTime date, global::System.String from, global::System.String subject, global::System.String text, global::System.Boolean hasAttachment, global::System.Boolean isReply)
{
Messages messages = new Messages();
messages.ID = id;
messages.Date = date;
messages.From = from;
messages.Subject = subject;
messages.Text = text;
messages.HasAttachment = hasAttachment;
messages.IsReply = isReply;
return messages;
}
#endregion
#region Primitive Properties
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)]
[DataMemberAttribute()]
public global::System.Int32 ID
{
get
{
return _ID;
}
set
{
if (_ID != value)
{
OnIDChanging(value);
ReportPropertyChanging("ID");
_ID = StructuralObject.SetValidValue(value);
ReportPropertyChanged("ID");
OnIDChanged();
}
}
}
private global::System.Int32 _ID;
partial void OnIDChanging(global::System.Int32 value);
partial void OnIDChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)]
[DataMemberAttribute()]
public global::System.DateTime Date
{
get
{
return _Date;
}
set
{
OnDateChanging(value);
ReportPropertyChanging("Date");
_Date = StructuralObject.SetValidValue(value);
ReportPropertyChanged("Date");
OnDateChanged();
}
}
private global::System.DateTime _Date;
partial void OnDateChanging(global::System.DateTime value);
partial void OnDateChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)]
[DataMemberAttribute()]
public global::System.String From
{
get
{
return _From;
}
set
{
OnFromChanging(value);
ReportPropertyChanging("From");
_From = StructuralObject.SetValidValue(value, false);
ReportPropertyChanged("From");
OnFromChanged();
}
}
private global::System.String _From;
partial void OnFromChanging(global::System.String value);
partial void OnFromChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)]
[DataMemberAttribute()]
public global::System.String Subject
{
get
{
return _Subject;
}
set
{
OnSubjectChanging(value);
ReportPropertyChanging("Subject");
_Subject = StructuralObject.SetValidValue(value, false);
ReportPropertyChanged("Subject");
OnSubjectChanged();
}
}
private global::System.String _Subject;
partial void OnSubjectChanging(global::System.String value);
partial void OnSubjectChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)]
[DataMemberAttribute()]
public global::System.String Text
{
get
{
return _Text;
}
set
{
OnTextChanging(value);
ReportPropertyChanging("Text");
_Text = StructuralObject.SetValidValue(value, false);
ReportPropertyChanged("Text");
OnTextChanged();
}
}
private global::System.String _Text;
partial void OnTextChanging(global::System.String value);
partial void OnTextChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)]
[DataMemberAttribute()]
public global::System.Boolean HasAttachment
{
get
{
return _HasAttachment;
}
set
{
OnHasAttachmentChanging(value);
ReportPropertyChanging("HasAttachment");
_HasAttachment = StructuralObject.SetValidValue(value);
ReportPropertyChanged("HasAttachment");
OnHasAttachmentChanged();
}
}
private global::System.Boolean _HasAttachment;
partial void OnHasAttachmentChanging(global::System.Boolean value);
partial void OnHasAttachmentChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)]
[DataMemberAttribute()]
public global::System.String Folder
{
get
{
return _Folder;
}
set
{
OnFolderChanging(value);
ReportPropertyChanging("Folder");
_Folder = StructuralObject.SetValidValue(value, true);
ReportPropertyChanged("Folder");
OnFolderChanged();
}
}
private global::System.String _Folder;
partial void OnFolderChanging(global::System.String value);
partial void OnFolderChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)]
[DataMemberAttribute()]
public global::System.Boolean IsReply
{
get
{
return _IsReply;
}
set
{
OnIsReplyChanging(value);
ReportPropertyChanging("IsReply");
_IsReply = StructuralObject.SetValidValue(value);
ReportPropertyChanged("IsReply");
OnIsReplyChanged();
}
}
private global::System.Boolean _IsReply;
partial void OnIsReplyChanging(global::System.Boolean value);
partial void OnIsReplyChanged();
#endregion
}
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmEntityTypeAttribute(NamespaceName="DataModel", Name="Resources")]
[Serializable()]
[DataContractAttribute(IsReference=true)]
public partial class Resources : EntityObject
{
#region Factory Method
/// <summary>
/// Create a new Resources object.
/// </summary>
/// <param name="id">Initial value of the ID property.</param>
public static Resources CreateResources(global::System.Int32 id)
{
Resources resources = new Resources();
resources.ID = id;
return resources;
}
#endregion
#region Primitive Properties
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)]
[DataMemberAttribute()]
public global::System.Int32 ID
{
get
{
return _ID;
}
set
{
if (_ID != value)
{
OnIDChanging(value);
ReportPropertyChanging("ID");
_ID = StructuralObject.SetValidValue(value);
ReportPropertyChanged("ID");
OnIDChanged();
}
}
}
private global::System.Int32 _ID;
partial void OnIDChanging(global::System.Int32 value);
partial void OnIDChanged();
/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)]
[DataMemberAttribute()]
public global::System.String Name
{
get
{
return _Name;
}
set
{
OnNameChanging(value);
ReportPropertyChanging("Name");
_Name = StructuralObject.SetValidValue(value, true);
ReportPropertyChanged("Name");
OnNameChanged();
}
}
private global::System.String _Name;
partial void OnNameChanging(global::System.String value);
partial void OnNameChanged();
#endregion
}
#endregion
}