- Details
- Written by: Stanko Milosev
- Category: ASP.NET
- Hits: 2293
- Details
- Written by: Stanko Milosev
- Category: ASP.NET
- Hits: 5267
In this article I have a bug :) Because I had a model like:
public String ReportSuccessToAddress { get; set; }
then in controller I had:
xmlReportSuccessCcAddress.Descendants("Value").Single().Value = startReportModel[i].ReportSuccessCcAddress;
In case that ReportSuccessCcAddress is null this line will fail. To automatically change null to empty string, in your model add annotation like:
[DisplayFormat(ConvertEmptyStringToNull = false)]
public String ReportSuccessToAddress { get; set; }
- Details
- Written by: Stanko Milosev
- Category: ASP.NET
- Hits: 6009
In your model, if you want to have e - mail validation, if user entered valid e - mail, you can use following regular expression:
[RegularExpression("^(([a-zA-Z0-9_\\-\\.]+)@([a-zA-Z0-9_\\-\\.]+)\\.([a-zA-Z]{2,5}){1,25})+([;.](([a-zA-Z0-9_\\-\\.]+)@([a-zA-Z0-9_\\-\\.]+)\\.([a-zA-Z]{2,5}){1,25})+)*$", ErrorMessage = "You must enter a valid email address for send Error Mail address. Multiple mail addresses must be separated with semicolons (no spaces)!")]
One example of the model is:
public class DistributionListsEditModel { [DataType(DataType.Text)] public String Name { get; set; } [DataType(DataType.EmailAddress)] [RegularExpression("^(([a-zA-Z0-9_\\-\\.]+)@([a-zA-Z0-9_\\-\\.]+)\\.([a-zA-Z]{2,5}){1,25})+([;|.](([a-zA-Z0-9_\\-\\.]+)@([a-zA-Z0-9_\\-\\.]+)\\.([a-zA-Z]{2,5}){1,25})+)*$", ErrorMessage = "You must enter a valid email address for send Success Mail address. Multiple mail addresses must be separated with semicolons (no spaces)!")] public String ReportSuccessToAddress { get; set; } [DataType(DataType.EmailAddress)] [RegularExpression("^(([a-zA-Z0-9_\\-\\.]+)@([a-zA-Z0-9_\\-\\.]+)\\.([a-zA-Z]{2,5}){1,25})+([;.](([a-zA-Z0-9_\\-\\.]+)@([a-zA-Z0-9_\\-\\.]+)\\.([a-zA-Z]{2,5}){1,25})+)*$", ErrorMessage = "You must enter a valid email address for send Error Mail address. Multiple mail addresses must be separated with semicolons (no spaces)!")] public String ReportErrorToAddress { get; set; } [DataType(DataType.EmailAddress)] [RegularExpression("^(([a-zA-Z0-9_\\-\\.]+)@([a-zA-Z0-9_\\-\\.]+)\\.([a-zA-Z]{2,5}){1,25})+([;.](([a-zA-Z0-9_\\-\\.]+)@([a-zA-Z0-9_\\-\\.]+)\\.([a-zA-Z]{2,5}){1,25})+)*$", ErrorMessage = "You must enter a valid email address for send Success CC Mail address. Multiple mail addresses must be separated with semicolons (no spaces)!")] public String ReportSuccessCcAddress { get; set; } [DataType(DataType.EmailAddress)] [RegularExpression("^(([a-zA-Z0-9_\\-\\.]+)@([a-zA-Z0-9_\\-\\.]+)\\.([a-zA-Z]{2,5}){1,25})+([;.](([a-zA-Z0-9_\\-\\.]+)@([a-zA-Z0-9_\\-\\.]+)\\.([a-zA-Z]{2,5}){1,25})+)*$", ErrorMessage = "You must enter a valid email address for send Error CC Mail address. Multiple mail addresses must be separated with semicolons (no spaces)!")] public String ReportErrorCcAddress { get; set; } }
- Details
- Written by: Stanko Milosev
- Category: ASP.NET
- Hits: 11605
Definition:
Primary key is such an attribute which uniquely identify the record. Some times we needs more then one keys to find the specific record such scenario in which more than one keys are used to find the specific data is called the composite primary key.
From here.
Error:
Unable to determine composite primary key ordering for type 'MvcApplication7.Models.MyMaster'. Use the ColumnAttribute or the HasKey method to specify an order for composite primary keys.
Solution:
public class MyMaster { [Key] [Column(Order = 0)] public int myField1 { get; set; } [Key] [Column(Order = 1)] public int myField2 { get; set; } public string Username { get; set; } }