在 C++/ CLI 中流畅的 nhibernate
我们可以在 C++/CLI 中使用流畅的 nhibernate 吗?
如果是这样,有人知道如何在 C++ 中进行映射吗?
在 C# 中:
public class Employee
{
public virtual int Id { get; private set; }
public virtual string FirstName { get; set; }
public virtual string LastName { get; set; }
public virtual Store Store { get; set; }
}
和映射
public class EmployeeMap : ClassMap<Employee>
{
public EmployeeMap()
{
Id(x => x.Id);
Map(x => x.FirstName);
Map(x => x.LastName);
References(x => x.Store);
}
}
但是如何在 C++/CLI 中使用 Map ?(C++/CLI 不支持 => lambda 表达式) 我如何在 C++/CLI 中编写此代码?
Can we use fluent nhibernate with C++/ CLI?
If so any body knows how to make mappings in C++?
In C# :
public class Employee
{
public virtual int Id { get; private set; }
public virtual string FirstName { get; set; }
public virtual string LastName { get; set; }
public virtual Store Store { get; set; }
}
and mapping
public class EmployeeMap : ClassMap<Employee>
{
public EmployeeMap()
{
Id(x => x.Id);
Map(x => x.FirstName);
Map(x => x.LastName);
References(x => x.Store);
}
}
BUT How to use Map in C++/CLI ?(C++/CLI does not support => lambda expressions)
How can i write this in C++/ CLI?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 C++/CLI 不支持 lambda 表达式,那么您就不能使用 Fluent NHibernate; lambda 是 Fluent NHibernate 的一个非常基本的部分。您唯一的选择是专门创建一个用于映射的 C# 项目,并从 CLI 项目中引用该项目。
If C++/CLI doesn't support lambda expressions, then you can't use Fluent NHibernate with it; lambdas are a pretty fundamental part of Fluent NHibernate. Your only option is to create a C# project specifically for mappings, and reference that from your CLI project.