• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C# Random.Random类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中Utilities.Random.Random的典型用法代码示例。如果您正苦于以下问题:C# Utilities.Random.Random类的具体用法?C# Utilities.Random.Random怎么用?C# Utilities.Random.Random使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



Utilities.Random.Random类属于命名空间,在下文中一共展示了Utilities.Random.Random类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: RandomTest

        public void RandomTest()
        {
            RingBuffer<int> TestObject = new RingBuffer<int>(10);
            Utilities.Random.Random Rand = new Utilities.Random.Random();
            int Value = 0;
            for (int x = 0; x < 10; ++x)
            {
                Value = Rand.Next();
                TestObject.Add(Value);
                Assert.Equal(1, TestObject.Count);
                Assert.Equal(Value, TestObject.Remove());
            }
            Assert.Equal(0, TestObject.Count);
            System.Collections.Generic.List<int> Values=new System.Collections.Generic.List<int>();
            for (int x = 0; x < 10; ++x)
            {
                Values.Add(Rand.Next());
            }
            TestObject.Add(Values);
            Assert.Equal(Values.ToArray(), TestObject.ToArray());

            for (int x = 0; x < 10; ++x)
            {
                Assert.Throws<InvalidOperationException>(() => TestObject.Add(Rand.Next()));
                Assert.Equal(10, TestObject.Count);
            }
        }
开发者ID:kaytie,项目名称:Craig-s-Utility-Library,代码行数:27,代码来源:RingBuffer.cs


示例2: All

 public void All()
 {
     Utilities.SQL.SQLHelper.Database("Data Source=localhost;Initial Catalog=TestDatabase;Integrated Security=SSPI;Pooling=false");
     Utilities.SQL.SQLHelper.Map<ObjectClass1>("TestTable", "ID_", Database: "Data Source=localhost;Initial Catalog=TestDatabase;Integrated Security=SSPI;Pooling=false")
             .Map(x => x.ID, "ID_")
             .Map(x => x.StringValue, "StringValue_")
             .Map(x => x.FloatValue, "FloatValue_")
             .Map(x => x.BoolValue, "BoolValue_")
             .Map(x => x.LongValue, "LongValue_");
     ObjectClass1 TempObject = null;
     Utilities.Random.Random Rand = new Utilities.Random.Random();
     using (Utilities.SQL.SQLHelper ORM = new Utilities.SQL.SQLHelper("Data Source=localhost;Initial Catalog=TestDatabase;Integrated Security=SSPI;Pooling=false"))
     {
         for (int x = 0; x < 100; ++x)
         {
             TempObject = new ObjectClass1();
             TempObject.StringValue = Rand.Next<string>(new RegexStringGenerator(10));
             TempObject.BoolValue = Rand.Next<bool>();
             TempObject.FloatValue = (float)Rand.NextDouble();
             TempObject.LongValue = Rand.Next();
             ORM.Save<ObjectClass1, int>(TempObject);
         }
         TempObject = null;
         IEnumerable<ObjectClass1> Objects = ORM.All<ObjectClass1>();
         Assert.Equal(100, Objects.Count());
     }
 }
开发者ID:rgshare,项目名称:Craig-s-Utility-Library,代码行数:27,代码来源:MicroORM.cs


示例3: RandomTest

 public void RandomTest()
 {
     PriorityQueue<int> TestObject = new PriorityQueue<int>();
     Utilities.Random.Random Rand = new Utilities.Random.Random();
     int Value=0;
     for (int x = 0; x < 10; ++x)
     {
         Value=Rand.Next();
         TestObject.Add(x, Value);
         Assert.Equal(Value, TestObject.Peek());
     }
     int HighestValue = TestObject.Peek();
     for (int x = 9; x >= 0; --x)
     {
         Value = Rand.Next();
         TestObject.Add(x, Value);
         Assert.Equal(HighestValue, TestObject.Peek());
     }
     int Count=0;
     foreach(int Priority in TestObject.Keys)
     {
         foreach(int Item in TestObject[Priority])
         {
             ++Count;
         }
     }
     Assert.Equal(20, Count);
 }
开发者ID:kaytie,项目名称:Craig-s-Utility-Library,代码行数:28,代码来源:PriorityQueue.cs


示例4: RandomTest

 public void RandomTest()
 {
     Bag<string> BagObject = new Bag<string>();
     Utilities.Random.Random Rand = new Utilities.Random.Random();
     for (int x = 0; x < 10; ++x)
     {
         string Value = Rand.Next<string>(new RegexStringGenerator(10));
         int Count = Rand.Next(1, 10);
         for(int y=0;y<Count;++y)
             BagObject.Add(Value);
         Assert.Equal(Count, BagObject[Value]);
     }
     Assert.Equal(10, BagObject.Count);
 }
开发者ID:kaytie,项目名称:Craig-s-Utility-Library,代码行数:14,代码来源:Bag.cs


示例5: All

 public void All()
 {
     using (Utilities.SQL.SQLHelper Helper2 = new Utilities.SQL.SQLHelper("", "Data Source=localhost;Initial Catalog=TestDatabase;Integrated Security=SSPI;Pooling=false", CommandType.Text))
     {
         Mapping<ObjectClass1> TestObject = Utilities.SQL.SQLHelper.Map<ObjectClass1>("TestTable", "ID_");
         TestObject.Map(x => x.ID, "ID_")
             .Map(x => x.StringValue, "StringValue_")
             .Map(x => x.FloatValue, "FloatValue_")
             .Map(x => x.BoolValue, "BoolValue_")
             .Map(x => x.LongValue, "LongValue_")
             .Map(x => x.StringMaxValue, "StringMaxValue_");
         Utilities.Random.Random Rand = new Utilities.Random.Random(12345);
         ObjectClass1 TempObject = new ObjectClass1();
         TempObject.StringValue = "Test String";
         TempObject.BoolValue = true;
         TempObject.FloatValue = 1234.5f;
         TempObject.LongValue = 12345;
         TempObject.StringMaxValue = Rand.Next<string>(new RegexStringGenerator(6000));
         Helper2.Save<ObjectClass1, int>(TempObject);
         IEnumerable<ObjectClass1> Objects = Helper2.All<ObjectClass1>();
         Assert.Equal(1, Objects.Count());
         foreach (ObjectClass1 Item in Objects)
         {
             Assert.Equal("Test String", Item.StringValue);
             Assert.Equal(1234.5f, Item.FloatValue);
             Assert.Equal(true, Item.BoolValue);
             Assert.Equal(12345, Item.LongValue);
             Assert.Equal(1, Item.ID);
             Assert.Equal(TempObject.StringMaxValue, Item.StringMaxValue);
         }
         List<ObjectClass1> Objects2 = new List<ObjectClass1>();
         Rand = new Utilities.Random.Random();
         for (int x = 0; x < 10; ++x)
         {
             TempObject = new ObjectClass1();
             TempObject.StringValue = Rand.Next<string>(new RegexStringGenerator(10));
             TempObject.BoolValue = Rand.Next<bool>();
             TempObject.FloatValue = (float)Rand.NextDouble();
             TempObject.LongValue = Rand.Next(0, 100);
             TempObject.StringMaxValue = Rand.Next<string>(new RegexStringGenerator(6000));
             Objects2.Add(TempObject);
         }
         Helper2.Save<ObjectClass1, int>(Objects2);
         Objects = Helper2.All<ObjectClass1>();
         Assert.Equal(11, Objects.Count());
     }
 }
开发者ID:AngelMarquez,项目名称:Craig-s-Utility-Library,代码行数:47,代码来源:Mapping.cs


示例6: All

 public void All()
 {
     using (Mapping<ObjectClass1> TestObject = new Mapping<ObjectClass1>("Data Source=localhost;Initial Catalog=TestDatabase;Integrated Security=SSPI;Pooling=false", "TestTable", "ID_"))
     {
         TestObject.Map(x => x.ID, "ID_")
             .Map(x => x.StringValue, "StringValue_", 100)
             .Map(x => x.FloatValue, "FloatValue_")
             .Map(x => x.BoolValue, "BoolValue_")
             .Map(x => x.LongValue, "LongValue_")
             .Map(x => x.StringMaxValue, "StringMaxValue_", -1);
         Utilities.Random.Random Rand = new Utilities.Random.Random(12345);
         ObjectClass1 TempObject = new ObjectClass1();
         TempObject.StringValue = "Test String";
         TempObject.BoolValue = true;
         TempObject.FloatValue = 1234.5f;
         TempObject.LongValue = 12345;
         TempObject.StringMaxValue = Rand.NextString(6000);
         TestObject.Save<int>(TempObject);
         IEnumerable<ObjectClass1> Objects = TestObject.All();
         Assert.Equal(1, Objects.Count());
         foreach (ObjectClass1 Item in Objects)
         {
             Assert.Equal("Test String", Item.StringValue);
             Assert.Equal(1234.5f, Item.FloatValue);
             Assert.Equal(true, Item.BoolValue);
             Assert.Equal(12345, Item.LongValue);
             Assert.Equal(1, Item.ID);
             Assert.Equal(TempObject.StringMaxValue, Item.StringMaxValue);
         }
         List<ObjectClass1> Objects2 = new List<ObjectClass1>();
         Rand = new Utilities.Random.Random();
         for (int x = 0; x < 10; ++x)
         {
             TempObject = new ObjectClass1();
             TempObject.StringValue = Rand.NextString(10);
             TempObject.BoolValue = Rand.NextBool();
             TempObject.FloatValue = (float)Rand.NextDouble();
             TempObject.LongValue = Rand.Next(0, 100);
             TempObject.StringMaxValue = Rand.NextString(6000);
             Objects2.Add(TempObject);
         }
         TestObject.Save<int>(Objects2);
         Objects = TestObject.All();
         Assert.Equal(11, Objects.Count());
     }
 }
开发者ID:jiguixin,项目名称:Craig-s-Utility-Library,代码行数:46,代码来源:Mapping.cs


示例7: RandomTest

 public void RandomTest()
 {
     ListMapping<string, int> TestObject = new ListMapping<string, int>();
     Utilities.Random.Random Rand = new Utilities.Random.Random();
     for (int x = 0; x < 10; ++x)
     {
         string Name = Rand.Next<string>(new RegexStringGenerator(10));
         for (int y = 0; y < 5; ++y)
         {
             int Value=Rand.Next();
             TestObject.Add(Name, Value);
             Assert.Equal(y + 1, TestObject[Name].Count);
             Assert.Equal(Value, TestObject[Name].ElementAt(y));
         }
     }
     Assert.Equal(10, TestObject.Count);
 }
开发者ID:kaytie,项目名称:Craig-s-Utility-Library,代码行数:17,代码来源:ListMapping.cs


示例8: Directory

 public Directory()
 {
     DirectoryObject = new Utilities.FileFormats.Cisco.Directory();
     Generator = new Utilities.Random.Random(System.Environment.TickCount);
 }
开发者ID:kaytie,项目名称:Craig-s-Utility-Library,代码行数:5,代码来源:Directory.cs


示例9: Delete

 public void Delete()
 {
     Utilities.SQL.MicroORM.MicroORM.Database("Data Source=localhost;Initial Catalog=TestDatabase;Integrated Security=SSPI;Pooling=false");
     Utilities.SQL.MicroORM.MicroORM.Map<ObjectClass1>("TestTable", "ID_")
             .Map(x => x.ID, "ID_")
             .Map(x => x.StringValue, "StringValue_", 100)
             .Map(x => x.FloatValue, "FloatValue_")
             .Map(x => x.BoolValue, "BoolValue_")
             .Map(x => x.LongValue, "LongValue_");
     ObjectClass1 TempObject = null;
     Utilities.Random.Random Rand = new Utilities.Random.Random();
     using (Utilities.SQL.MicroORM.MicroORM ORM = new Utilities.SQL.MicroORM.MicroORM())
     {
         for (int x = 0; x < 100; ++x)
         {
             TempObject = new ObjectClass1();
             TempObject.StringValue = Rand.NextString(10);
             TempObject.BoolValue = Rand.NextBool();
             TempObject.FloatValue = (float)Rand.NextDouble();
             TempObject.LongValue = Rand.Next();
             ORM.Map<ObjectClass1>().Save<int>(TempObject);
         }
         TempObject = null;
         IEnumerable<ObjectClass1> Objects = ORM.Map<ObjectClass1>().All();
         Assert.Equal(100, Objects.Count());
         foreach (ObjectClass1 Object in Objects)
         {
             ORM.Map<ObjectClass1>().Delete(Object);
         }
         Objects = ORM.Map<ObjectClass1>().All();
         Assert.Equal(0, Objects.Count());
     }
 }
开发者ID:JKLFA,项目名称:Craig-s-Utility-Library,代码行数:33,代码来源:MicroORM.cs


示例10: NextDateTest

 public void NextDateTest()
 {
     Utilities.Random.Random Rand = new Utilities.Random.Random();
     Assert.Between(Rand.NextDate(new DateTime(1999, 1, 1), new DateTime(2000, 1, 1)), new DateTime(1999, 1, 1), new DateTime(2000, 1, 1));
 }
开发者ID:JKLFA,项目名称:Craig-s-Utility-Library,代码行数:5,代码来源:Random.cs


示例11: Update

 public void Update()
 {
     using (Utilities.SQL.SQLHelper Helper2 = new Utilities.SQL.SQLHelper("", "Data Source=localhost;Initial Catalog=TestDatabase;Integrated Security=SSPI;Pooling=false", CommandType.Text))
     {
         Mapping<ObjectClass1> TestObject = Utilities.SQL.SQLHelper.Map<ObjectClass1>("TestTable", "ID_");
         TestObject.Map(x => x.ID, "ID_")
             .Map(x => x.StringValue, "StringValue_")
             .Map(x => x.FloatValue, "FloatValue_")
             .Map(x => x.BoolValue, "BoolValue_")
             .Map(x => x.LongValue, "LongValue_")
             .Map(x => x.StringMaxValue, "StringMaxValue_");
         Utilities.Random.Random Rand = new Utilities.Random.Random(12346);
         ObjectClass1 TempObject = new ObjectClass1();
         TempObject.StringValue = "Test";
         TempObject.BoolValue = false;
         TempObject.FloatValue = 1.5f;
         TempObject.LongValue = 12;
         TempObject.StringMaxValue = Rand.Next<string>(new RegexStringGenerator(6000));
         TempObject.ID = Helper2.Insert<ObjectClass1, int>(TempObject);
         Rand = new Utilities.Random.Random(12345);
         TempObject.StringValue = "Test String";
         TempObject.BoolValue = true;
         TempObject.FloatValue = 1234.5f;
         TempObject.LongValue = 12345;
         TempObject.StringMaxValue = Rand.Next<string>(new RegexStringGenerator(6000));
         Helper2.Update(TempObject);
         using (Utilities.SQL.SQLHelper Helper = new Utilities.SQL.SQLHelper("SELECT * FROM TestTable", "Data Source=localhost;Initial Catalog=TestDatabase;Integrated Security=SSPI;Pooling=false", CommandType.Text))
         {
             Helper.ExecuteReader();
             if (Helper.Read())
             {
                 Assert.Equal("Test String", Helper.GetParameter<string>("StringValue_", ""));
                 Assert.Equal(1234.5f, Helper.GetParameter<float>("FloatValue_", 0));
                 Assert.Equal(true, Helper.GetParameter<bool>("BoolValue_", false));
                 Assert.Equal(12345, Helper.GetParameter<long>("LongValue_", 0));
                 Assert.Equal(TempObject.ID, Helper.GetParameter<int>("ID_", 0));
                 Assert.Equal(TempObject.StringMaxValue, Helper.GetParameter<string>("StringMaxValue_", ""));
             }
             else
             {
                 Assert.False(true,"Nothing was inserted");
             }
         }
     }
 }
开发者ID:AngelMarquez,项目名称:Craig-s-Utility-Library,代码行数:45,代码来源:Mapping.cs


示例12: Paged2

        public void Paged2()
        {
            using (Utilities.SQL.SQLHelper Helper2 = new Utilities.SQL.SQLHelper("", "Data Source=localhost;Initial Catalog=TestDatabase;Integrated Security=SSPI;Pooling=false", CommandType.Text))
            {
                Mapping<ObjectClass1> TestObject = Utilities.SQL.SQLHelper.Map<ObjectClass1>("TestTable", "ID_");
                TestObject.Map(x => x.ID, "ID_")
                    .Map(x => x.StringValue, "StringValue_")
                    .Map(x => x.FloatValue, "FloatValue_")
                    .Map(x => x.BoolValue, "BoolValue_")
                    .Map(x => x.LongValue, "LongValue_")
                    .Map(x => x.StringMaxValue, "StringMaxValue_");
                List<ObjectClass1> Objects2 = new List<ObjectClass1>();
                Utilities.Random.Random Rand = new Utilities.Random.Random();
                for (int x = 0; x < 115; ++x)
                {
                    ObjectClass1 TempObject = new ObjectClass1();
                    TempObject.StringValue = Rand.Next<string>(new RegexStringGenerator(10));
                    TempObject.BoolValue = Rand.Next<bool>();
                    TempObject.FloatValue = (float)Rand.NextDouble();
                    TempObject.LongValue = Rand.Next(0, 100);
                    TempObject.StringMaxValue = Rand.Next<string>(new RegexStringGenerator(6000));
                    Objects2.Add(TempObject);
                }
                Helper2.Save<ObjectClass1, int>(Objects2);
                IEnumerable<ObjectClass1> Objects = Helper2.PagedCommand<ObjectClass1>("SELECT * FROM TestTable");
                Assert.Equal(25, Objects.Count());
                Objects = Helper2.PagedCommand<ObjectClass1>("SELECT * FROM TestTable", CurrentPage: 1);
                Assert.Equal(25, Objects.Count());
                Objects = Helper2.PagedCommand<ObjectClass1>("SELECT * FROM TestTable", CurrentPage: 2);
                Assert.Equal(25, Objects.Count());
                Objects = Helper2.PagedCommand<ObjectClass1>("SELECT * FROM TestTable", CurrentPage: 3);
                Assert.Equal(25, Objects.Count());
                Objects = Helper2.PagedCommand<ObjectClass1>("SELECT * FROM TestTable", CurrentPage: 4);
                Assert.Equal(15, Objects.Count());
                Assert.Equal(5, Helper2.PageCount<ObjectClass1>("SELECT * FROM TestTable"));

                Objects = Helper2.PagedCommand<ObjectClass1>("SELECT * FROM TestTable WHERE ID_>@ID", "", 25, 0, null, null, false, new EqualParameter<int>(50, "ID"));
                Assert.Equal(25, Objects.Count());
                Objects = Helper2.PagedCommand<ObjectClass1>("SELECT * FROM TestTable WHERE ID_>@ID", "", 25, 1, null, null, false, new EqualParameter<int>(50, "ID"));
                Assert.Equal(25, Objects.Count());
                Objects = Helper2.PagedCommand<ObjectClass1>("SELECT * FROM TestTable WHERE ID_>@ID", "", 25, 2, null, null, false, new EqualParameter<int>(50, "ID"));
                Assert.Equal(15, Objects.Count());
                Assert.Equal(3, Helper2.PageCount<ObjectClass1>("SELECT * FROM TestTable WHERE ID_>@ID", 25, false, new EqualParameter<int>(50, "ID")));
            }
        }
开发者ID:AngelMarquez,项目名称:Craig-s-Utility-Library,代码行数:45,代码来源:Mapping.cs


示例13: Any

 public void Any()
 {
     using (Utilities.SQL.SQLHelper Helper2 = new Utilities.SQL.SQLHelper("", "Data Source=localhost;Initial Catalog=TestDatabase;Integrated Security=SSPI;Pooling=false", CommandType.Text))
     {
         Mapping<ObjectClass1> TestObject = Utilities.SQL.SQLHelper.Map<ObjectClass1>("TestTable", "ID_");
         TestObject.Map(x => x.ID, "ID_")
             .Map(x => x.StringValue, "StringValue_")
             .Map(x => x.FloatValue, "FloatValue_")
             .Map(x => x.BoolValue, "BoolValue_")
             .Map(x => x.LongValue, "LongValue_")
             .Map(x => x.StringMaxValue, "StringMaxValue_");
         Utilities.Random.Random Rand = new Utilities.Random.Random(12345);
         ObjectClass1 TempObject = new ObjectClass1();
         TempObject.StringValue = "Test String";
         TempObject.BoolValue = true;
         TempObject.FloatValue = 1234.5f;
         TempObject.LongValue = 12345;
         TempObject.StringMaxValue = Rand.Next<string>(new RegexStringGenerator(6000));
         string StringMaxValue = TempObject.StringMaxValue;
         Helper2.Save<ObjectClass1, int>(TempObject);
         TempObject = Helper2.Any<ObjectClass1>();
         Assert.Equal("Test String", TempObject.StringValue);
         Assert.Equal(1234.5f, TempObject.FloatValue);
         Assert.Equal(true, TempObject.BoolValue);
         Assert.Equal(12345, TempObject.LongValue);
         Assert.Equal(1, TempObject.ID);
         Assert.Equal(StringMaxValue, TempObject.StringMaxValue);
     }
 }
开发者ID:AngelMarquez,项目名称:Craig-s-Utility-Library,代码行数:29,代码来源:Mapping.cs


示例14: NextLoremIpsumTest

 public void NextLoremIpsumTest()
 {
     Utilities.Random.Random Rand = new Utilities.Random.Random();
     Assert.NotNull(Rand.Next<string>(new LoremIpsumGenerator(1, 4)));
 }
开发者ID:jpsullivan,项目名称:Craig-s-Utility-Library,代码行数:5,代码来源:RandomExtensions.cs


示例15: Execute

 public Execute()
 {
     Entry = new Utilities.Cisco.Execute();
     Random = new Utilities.Random.Random();
 }
开发者ID:JKLFA,项目名称:Craig-s-Utility-Library,代码行数:5,代码来源:Execute.cs


示例16: NextTimeSpanTest

 public void NextTimeSpanTest()
 {
     Utilities.Random.Random Rand = new Utilities.Random.Random();
     Assert.Between(Rand.NextTimeSpan(new TimeSpan(1, 0, 0), new TimeSpan(2, 0, 0)), new TimeSpan(1, 0, 0), new TimeSpan(2, 0, 0));
 }
开发者ID:JKLFA,项目名称:Craig-s-Utility-Library,代码行数:5,代码来源:Random.cs


示例17: NextStringTest

 public void NextStringTest()
 {
     Utilities.Random.Random Rand = new Utilities.Random.Random();
     Assert.Equal(10, Rand.NextString(10).Length);
 }
开发者ID:JKLFA,项目名称:Craig-s-Utility-Library,代码行数:5,代码来源:Random.cs


示例18: NextLoremIpsumTest

 public void NextLoremIpsumTest()
 {
     Utilities.Random.Random Rand = new Utilities.Random.Random();
     Assert.NotNull(Rand.NextLoremIpsum(1, 4));
 }
开发者ID:JKLFA,项目名称:Craig-s-Utility-Library,代码行数:5,代码来源:Random.cs


示例19: NextEnumTest

 public void NextEnumTest()
 {
     Utilities.Random.Random Rand = new Utilities.Random.Random();
     Assert.DoesNotThrow<Exception>(() => Rand.NextEnum<TestEnum>());
 }
开发者ID:JKLFA,项目名称:Craig-s-Utility-Library,代码行数:5,代码来源:Random.cs


示例20: Paged

 public void Paged()
 {
     Utilities.SQL.MicroORM.MicroORM.Database("Data Source=localhost;Initial Catalog=TestDatabase;Integrated Security=SSPI;Pooling=false");
     Utilities.SQL.MicroORM.MicroORM.Map<ObjectClass1>("TestTable", "ID_")
             .Map(x => x.ID, "ID_")
             .Map(x => x.StringValue, "StringValue_", 100)
             .Map(x => x.FloatValue, "FloatValue_")
             .Map(x => x.BoolValue, "BoolValue_")
             .Map(x => x.LongValue, "LongValue_");
     ObjectClass1 TempObject = null;
     Utilities.Random.Random Rand = new Utilities.Random.Random();
     using (Utilities.SQL.MicroORM.MicroORM ORM = new Utilities.SQL.MicroORM.MicroORM())
     {
         for (int x = 0; x < 115; ++x)
         {
             TempObject = new ObjectClass1();
             TempObject.StringValue = Rand.Next<string>(new RegexStringGenerator(10));
             TempObject.BoolValue = Rand.Next<bool>();
             TempObject.FloatValue = (float)Rand.NextDouble();
             TempObject.LongValue = Rand.Next();
             ORM.Map<ObjectClass1>().Save<int>(TempObject);
         }
         TempObject = null;
         IEnumerable<ObjectClass1> Objects = ORM.Map<ObjectClass1>().Paged();
         Assert.Equal(25, Objects.Count());
         Objects = ORM.Map<ObjectClass1>().Paged(CurrentPage: 1);
         Assert.Equal(25, Objects.Count());
         Objects = ORM.Map<ObjectClass1>().Paged(CurrentPage: 2);
         Assert.Equal(25, Objects.Count());
         Objects = ORM.Map<ObjectClass1>().Paged(CurrentPage: 3);
         Assert.Equal(25, Objects.Count());
         Objects = ORM.Map<ObjectClass1>().Paged(CurrentPage: 4);
         Assert.Equal(15, Objects.Count());
         Assert.Equal(5, ORM.Map<ObjectClass1>().PageCount());
     }
 }
开发者ID:girish66,项目名称:Craig-s-Utility-Library,代码行数:36,代码来源:MicroORM.cs



注:本文中的Utilities.Random.Random类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# Emit.Assembly类代码示例发布时间:2022-05-24
下一篇:
C# Utilities类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap