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//-----------------------------------------------------------------------
8using System;
9
11{
13 public class InheritedLoadPropertySet : AbstractGetSet<InheritedLoadPropertySet>
14 {
15#pragma warning disable CS0414
16 private static int _forceLoad;
17#pragma warning restore CS0414
18
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}
override void OnDeserialized(System.Runtime.Serialization.StreamingContext context)
@ Serializable
Prevents updating or inserting until the transaction is complete.