- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
鉴于这些类:
using System.Collections.Generic;
namespace FluentMappingsQuestion
{
public class Entity
{
public virtual int Id { get; set; }
public virtual IDictionary<string, Property> Properties { get; set; }
}
public class Property
{
public virtual Entity OwningEntity { get; set; }
public virtual string Name { get; set; }
public virtual int Value { get; set; }
public virtual decimal OtherValue { get; set; }
}
}
[Test]
public void EntityPropertyMappingTest()
{
using (var session = _factory.OpenSession())
{
var entity = new Entity();
// (#1) I would *really* like to use this
entity.Properties["foo"] = new Property { Value = 42, OtherValue = 42.0M };
session.Save(entity);
session.Flush();
// (#2) I would like the entity below to "update itself"
// on .Save or .Flush. I got it to work with .Load()
Assert.AreEqual(42, entity.Properties["foo"].Value);
Assert.AreEqual(42.0M, entity.Properties["foo"].OtherValue);
Assert.AreEqual("foo", entity.Properties["foo"].Name);
Assert.AreEqual(entity, entity.Properties["foo"].Owner);
}
}
// class EntityMap : ClassMap<Entity>
public EntityMap()
{
Id(x => x.Id);
HasMany(x => x.Properties)
.Cascade.AllDeleteOrphan()
.KeyColumn("EntityId")
.AsMap(x => x.Name);
}
// class PropertyMap : ClassMap<Property>
public PropertyMap()
{
Id(x => x.Id);
References(x => x.OwningEntity).Column("EntityId");
Map(x => x.Name).Length(32);
Map(x => x.Value);
{
Entity.Properties
.Inverse()
,它开始崩溃 .Inverse()
然后 NHibernate 执行:INSERT(Entity), INSERT(Property), UPDATE(Property)
而不仅仅是 INSERT(Entity), INSERT(Property)
Property.Name
.Not.Nullable()
,它开始崩溃 .Not.Nullable()
, 我的数据库架构中有一个洞 最佳答案
我通过指定这个映射来解决这个问题:
HasMany<Property>(Reveal.Member<Entity>("InternalProperties"))
.AsMap(p => p.Name)
.Cascade.AllDeleteOrphan()
.Inverse();
IDictionary<string, Property>
类型的属性:
Properties
和
InternalProperties
.第一个是第二个的代理字典,处理设置
OwningEntity
和
Name
Property
的属性条目。
关于nhibernate - Fluent NHibernate 以智能方式映射 IDictionary<string, class>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4564211/
我的 ViewModel 上有一处特性那是类型 IDictionary .我正在查看 ViewModel 上的属性列表并使用反射来确定它是否是字典。 目前我有: if (typeof(IDiction
我有一个 IDictionary 字段,我想通过 IDictionary 类型的属性公开它转换非常困难,因为我不知道我能做什么 .Cast<>() IDictionary to. 最好的我有: IDi
我有一个用作字典的 C# 类,所以我现在正在支持 IDictionary。 除了属性 Keys 和 Values 之外一切都很好: ICollection Keys { get; } ICollect
当一个方法有两个重载时,一个接受 IDictionary 另一个接受 IDictionary ,将 new Dictionary() 传递给它被认为是不明确的。但是,如果将两个重载更改为接受 IEnu
我有一个我不满意的方法,你能告诉我如何做得更好吗? public Foo WithBar(IDictionary parameters) { var strStrDict = new Dict
以下代码自HashSet起有效工具 IEnumerable : IEnumerable edges = new HashSet(); 但是如果我尝试使用与字典中键入的值相同的值,我会得到一个编译错误:
我有一个返回 IDictionary > 的函数. 我有另一个函数需要 IDictionary > . 我需要将第一个函数的返回传递给第二个函数。 编译器不想将第一个隐式转换为第二个。那么如何在 O(
我认为转换 IDictionary> 相当简单反对 IDictionary> , 但是 var val = (IDictionary>)Value; 抛出 System.InvalidCastExce
我正在使用反射和递归进行一些通用对象比较。递归方法在每个步骤中都需要一些类型信息,这些信息由调用者提供。有一次我知道下一个属性是 Dictionary ,我想发送正确的类型。我想到了这个: Type
很多消息来源都在谈论这个问题,但我不太理解这个概念。 IDictionary 是通用的,它的类型安全等。 当我深入研究 EntityFrameworkv5 时,我看到一个属性在 LogEntry 类中
我创建了一个 IDictionary 扩展来将 IDictionary Exception.Data 值写入字符串。 扩展代码: public static class DictionaryExten
我们有一个应用程序在多个 Dictionary 中保存大量对象,其中一些对象在应用程序的生命周期中不断增长(交易应用程序有很多工具和不断增长的订单/交易) . 由于大型对象堆的碎片,我们遇到了 Out
我在外部类中有以下方法 public static void DoStuffWithAnimals(IDictionary animals) 在我的调用代码中,我已经有一个 Dictionary对象,
通过今天的一些随机对象创建,我遇到了一个 Dictionary 的简洁小快捷方式.以下赋值是编译器快捷方式还是 Dictionary 的一个特性? . IDictionary items = { {
我正在测试这样的对象: if (item is IDictionary) 但这并不匹配所有其他类型组合 , 等等…… 我只想知道它是否实现了接口(interface),而不管它使用的是什么泛型。 我找
有谁知道序列化实现 IDictionary 的对象的创造性方法吗? ...没有实现新类(class)? 最佳答案 如果类实现了IDictionary是可序列化的(如 Dictionary )和 K和
我这辈子都弄不明白。假设我有以下两个字典对象: // Assume "query" is a LINQ queryable. Dictionary d1 = query.ToDictionary(k
这个问题在这里已经有了答案: Remove from Dictionary by Key and Retrieve Value (6 个答案) 关闭 2 年前。 我想知道是否可以通过键删除一个 ID
在 TagBuilder 和其他类中,我可以这样写: var tr = new TagBuilder("HeaderStyle"){InnerHtml = html, [IDictionary Att
取下面这段代码 var dictionary = new Dictionary { ["A"] = 1, ["B"] =
我是一名优秀的程序员,十分优秀!