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
ReadOnlyListTestsLocalAndRemote.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="ReadOnlyListTestsLocalAndRemote.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 Csla;
10using System;
11using UnitDriven;
13using System.Threading.Tasks;
14
15#if NUNIT
16using NUnit.Framework;
17using TestClass = NUnit.Framework.TestFixtureAttribute;
18using TestInitialize = NUnit.Framework.SetUpAttribute;
19using TestCleanup = NUnit.Framework.TearDownAttribute;
20using TestMethod = NUnit.Framework.TestAttribute;
21using TestSetup = NUnit.Framework.SetUpAttribute;
22#elif MSTEST
23using Microsoft.VisualStudio.TestTools.UnitTesting;
24#endif
25
27{
28 [TestClass]
30 {
31 [TestMethod]
32 public async Task ReadOnlyListFetchLocal()
33 {
34 var result = await Csla.DataPortal.FetchAsync<ReadOnlyPersonList>();
35 Assert.AreEqual("John Doe", result[0].Name);
36 Assert.AreEqual(new DateTime(1982, 1, 1), result[1].Birthdate);
37 Assert.AreEqual(2, result.Count);
38 }
39
40 [TestMethod]
41 public async Task ReadOnlyListFetchRemote()
42 {
43 var result = await Csla.DataPortal.FetchAsync<ReadOnlyPersonList>();
44 Assert.AreEqual("John Doe", result[0].Name);
45 Assert.AreEqual(new DateTime(1982, 1, 1), result[1].Birthdate);
46 Assert.AreEqual(2, result.Count);
47 }
48 }
49}
Client side data portal used for making asynchronous data portal calls in .NET.
Definition: DataPortalT.cs:24
async Task< T > FetchAsync(params object[] criteria)
Called by a factory method in a business class or by the UI to Fetch a new object,...
Definition: DataPortalT.cs:279