find /dir1/ -type f \( -name '*.txt' -o -name '*.jpg' \) -exec cp {} /dir2/ \;
如何使用Fluent NHibernate将上述映射更改为自动映射?
我正在为实体使用三个独立的项目;结构如下。
项目1 - >班级private ISessionFactory CreateFluentNHibernateSessionFactory()
{
try
{
return Fluently.Configure()
.Database(MsSqlConfiguration.MsSql2008.ConnectionString(x => x.FromConnectionStringWithKey("SolverERP")))
.Mappings(x => x.FluentMappings.AddFromAssembly(Assembly.GetExecutingAssembly()))
.ExposeConfiguration(config => new SchemaUpdate(config).Execute(false, true))
.BuildSessionFactory();
}
catch (Exception ex)
{
throw;
}
}
项目2 - >课程BaseEntity
,课程Product
项目3 - >班级ProductDetail
是否可以在没有类映射的情况下自动映射?我需要添加这么多实体类;如何在没有类映射的情况下处理这个问题?