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
InheritedLoadPropertySet.cs
Go to the documentation of this file.
1
//-----------------------------------------------------------------------
2
// <copyright file="InheritedLoadPropertySet.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
//-----------------------------------------------------------------------
8
using
System;
9
10
namespace
Csla.Test.Silverlight.PropertyGetSet
11
{
12
[
Serializable
]
13
public
class
InheritedLoadPropertySet
:
AbstractGetSet
<InheritedLoadPropertySet>
14
{
15
#pragma warning disable CS0414
16
private
static
int
_forceLoad;
17
#pragma warning restore CS0414
18
19
public
InheritedLoadPropertySet
()
20
{
21
_forceLoad = 0;
22
//Always call DataPortal_Insert on save
23
MarkNew();
24
}
25
//public void LoadIdProperty(int newIdValue)
26
//{
27
// LoadProperty(IdProperty, newIdValue);
28
//}
29
30
protected
override
void
OnDeserialized
(System.Runtime.Serialization.StreamingContext context)
31
{
32
_forceLoad = 0;
33
base.OnDeserialized(context);
34
}
35
36
[Insert]
37
protected
void
DataPortal_Insert
()
38
{
39
LoadProperty(
IdProperty
, 1);
40
}
41
}
42
}
Csla.Test.Silverlight.PropertyGetSet.AbstractGetSet
Definition:
AbstractGetSet.cs:17
Csla.Test.Silverlight.PropertyGetSet.AbstractGetSet< InheritedLoadPropertySet >::IdProperty
static PropertyInfo< int > IdProperty
Definition:
AbstractGetSet.cs:18
Csla.Test.Silverlight.PropertyGetSet.InheritedLoadPropertySet
Definition:
InheritedLoadPropertySet.cs:14
Csla.Test.Silverlight.PropertyGetSet.InheritedLoadPropertySet.DataPortal_Insert
void DataPortal_Insert()
Definition:
InheritedLoadPropertySet.cs:37
Csla.Test.Silverlight.PropertyGetSet.InheritedLoadPropertySet.InheritedLoadPropertySet
InheritedLoadPropertySet()
Definition:
InheritedLoadPropertySet.cs:19
Csla.Test.Silverlight.PropertyGetSet.InheritedLoadPropertySet.OnDeserialized
override void OnDeserialized(System.Runtime.Serialization.StreamingContext context)
Definition:
InheritedLoadPropertySet.cs:30
Csla.Test.Silverlight.PropertyGetSet
Definition:
AbstractGetSet.cs:14
Csla.TransactionIsolationLevel.Serializable
@ Serializable
Prevents updating or inserting until the transaction is complete.
Generated by
1.9.2