CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
RootWithValidation.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="RootWithValidation.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>no summary</summary>
7//-----------------------------------------------------------------------
8using System;
9using System.Collections.Generic;
10using System.Linq;
11using System.Text;
12using System.ComponentModel.DataAnnotations;
13using Csla.Rules;
14
16{
17 [Serializable()]
18 public class RootWithValidation : Csla.BusinessBase<RootWithValidation>
19 {
20 public static readonly PropertyInfo<string> Max5CharsProperty = RegisterProperty<string>(p => p.Max5Chars);
21 public string Max5Chars
22 {
23 get { return GetProperty<string>(Max5CharsProperty); }
24 set { SetProperty<string>(Max5CharsProperty, value); }
25 }
26
27 public static readonly PropertyInfo<int> Between2And10Property = RegisterProperty<int>(p => p.Between2And10);
28 [Range(2, 10)]
29 public int Between2And10
30 {
31 get { return GetProperty<int>(Between2And10Property); }
32 set { SetProperty<int>(Between2And10Property, value); }
33 }
34
35 public static readonly PropertyInfo<string> AlwaysInvalidProperty = RegisterProperty<string>(p => p.AlwaysInvalid);
36 [ImAlwaysInvalid("Don't try or invalid!")]
37 public string AlwaysInvalid
38 {
39 get { return GetProperty<string>(AlwaysInvalidProperty); }
40 set { SetProperty<string>(AlwaysInvalidProperty, value); }
41 }
42
43 protected override void AddBusinessRules()
44 {
46
47 base.AddBusinessRules();
48 }
49
51 {
53 }
54 protected override void DataPortal_Create()
55 {
56
57 }
58 }
59
60 public class ImAlwaysInvalidAttribute : ValidationAttribute
61 {
62 public ImAlwaysInvalidAttribute(string errorMessage)
63 : base(errorMessage)
64 { }
65
66 public override bool IsValid(object value)
67 {
68 return false;
69 }
70 }
71}
This is the base class from which most business objects will be derived.
Definition: BusinessBase.cs:38
Client side data portal used for making asynchronous data portal calls in .NET.
Definition: DataPortalT.cs:24
T Create(params object[] criteria)
Called by a factory method in a business class to create a new object, which is loaded with default v...
Definition: DataPortalT.cs:151
Maintains metadata about a property.
Tracks the business rules for a business object.
void AddRule(IBusinessRuleBase rule)
Associates a business rule with the business object.
Business rule for a maximum length string.
Definition: CommonRules.cs:168
static readonly PropertyInfo< int > Between2And10Property
static readonly PropertyInfo< string > Max5CharsProperty
static readonly PropertyInfo< string > AlwaysInvalidProperty
@ Serializable
Prevents updating or inserting until the transaction is complete.