本文整理汇总了C#中NHibernate.Cfg.Configuration.AddNamedQuery方法的典型用法代码示例。如果您正苦于以下问题:C# Configuration.AddNamedQuery方法的具体用法?C# Configuration.AddNamedQuery怎么用?C# Configuration.AddNamedQuery使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类NHibernate.Cfg.Configuration
的用法示例。
在下文中一共展示了Configuration.AddNamedQuery方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: WhenSetInvalidTimeoutThenLeaveDefault
public void WhenSetInvalidTimeoutThenLeaveDefault()
{
var configure = new Configuration();
configure.AddNamedQuery("aQuery", b =>
{
b.Query = "from System.Object o";
b.Timeout = 0;
});
configure.NamedQueries.Values.Single().Timeout.Should().Be(-1);
}
示例2: WhenSetValidTimeoutThenSetValue
public void WhenSetValidTimeoutThenSetValue()
{
var configure = new Configuration();
configure.AddNamedQuery("aQuery", b =>
{
b.Query = "from System.Object o";
b.Timeout = 123;
});
configure.NamedQueries.Values.Single().Timeout.Should().Be(123);
}
示例3: WhenSetValidFetchSizeThenSetValue
public void WhenSetValidFetchSizeThenSetValue()
{
var configure = new Configuration();
configure.AddNamedQuery("aQuery", b =>
{
b.Query = "from System.Object o";
b.FetchSize = 15;
});
configure.NamedQueries.Values.Single().FetchSize.Should().Be(15);
}
示例4: WhenSetValidTimeoutThenSetValue
public void WhenSetValidTimeoutThenSetValue()
{
var configure = new Configuration();
configure.AddNamedQuery("aQuery", b =>
{
b.Query = "from System.Object o";
b.Timeout = 123;
});
Assert.That(configure.NamedQueries.Values.Single().Timeout, Is.EqualTo(123));
}
示例5: WhenSetValidFetchSizeThenSetValue
public void WhenSetValidFetchSizeThenSetValue()
{
var configure = new Configuration();
configure.AddNamedQuery("aQuery", b =>
{
b.Query = "from System.Object o";
b.FetchSize = 15;
});
Assert.That(configure.NamedQueries.Values.Single().FetchSize, Is.EqualTo(15));
}
示例6: AddSimpleNamedQuery
public void AddSimpleNamedQuery()
{
var configure = new Configuration();
configure.AddNamedQuery("aQuery", b =>
{
b.Query = "from System.Object o";
});
configure.NamedQueries.Should().Have.Count.EqualTo(1);
configure.NamedQueries.Keys.Single().Should().Be("aQuery");
configure.NamedQueries.Values.Single().Query.Should().Be("from System.Object o");
}
示例7: AddSimpleNamedQuery
public void AddSimpleNamedQuery()
{
var configure = new Configuration();
configure.AddNamedQuery("aQuery", b =>
{
b.Query = "from System.Object o";
});
Assert.That(configure.NamedQueries, Has.Count.EqualTo(1));
Assert.That(configure.NamedQueries.Keys.Single(), Is.EqualTo("aQuery"));
Assert.That(configure.NamedQueries.Values.Single().Query, Is.EqualTo("from System.Object o"));
}