Tagged Questions
The schemaexport tag has no wiki summary.
6
votes
5answers
1k views
Can NHibernate check if the db schema has been generated?
So, newbie NHibernate user; trying to wrap my brain around it.
I'm contemplating how to handle deployment, and later injection of add-ons to a web app (which may require their own persistence ...
5
votes
3answers
2k views
Fluent NHibernate: setting string to be sql type of “varchar” instead of “nvarchar”
I have the following mapping:
public class LogEntryMap
{
public LogEntryMap()
{
Map.Id(x => x.Id).GeneratedBy.Identity();
Map(x => ...
4
votes
1answer
377 views
NHibernate SchemaExport: How to generate a meaningful unique key name?
When I use SchemaExport with SQL Server 2005, it generate unique key name like: UQ_Employees_03317E3D
Hom can I generate a name like: UQ_Employees_Name?
Even in SQL Server!
4
votes
1answer
475 views
Foreign Keys with SchemaExport in Fluent NHibernate using SQLite
I am attempting to create a simple database application which keeps track of loans of various types of equipment using Fluent NHibernate and SQLite. However, when I try to generate the database ...
4
votes
1answer
227 views
Fluent NHibernate ExportSchema without connection string
I want to generate a database script without having an actual database connection string declared.
To do this for now i use NHibernate ExportSchema bases on a NHibernate configuration generated with ...
3
votes
1answer
444 views
Prevent Nhibernate schemaexport from generating foreign key constraints on has many relationship
I have a mapping like this:
HasMany(x => x.Orders).KeyColumn("CustomerID");
Which is causing a constraint like this to be generated by schemaexport:
alter table [CustomerOrder]
add ...
3
votes
1answer
4k views
NHibernate SchemaExport and Configure() catch-22
I want to use DDD in a new project and model my classes first, then generate the database schema based on the class library. My plan is to do this with the NHibernate hbm2ddl tool SchemaExport.
The ...
2
votes
2answers
394 views
Which Oracle view contains all constraints together?
I'm trying to get CONSTRAINTS from user_objects table like this:
select CASE object_type
WHEN 'DATABASE LINK' then 'dblinks'
WHEN 'FUNCTION' then 'functions'
WHEN 'INDEX' then ...
2
votes
1answer
604 views
SchemaExport, NHibernate and deleting foreign keys
I am building my mapping and then using schema export to update my DB. However, if I delete an association in my mapping, since it's no longer in the mapping, when I run SchemaExport, it will not ...
1
vote
1answer
123 views
NHibernate: Recreate Database with SchemaExport
I have a question about correctly handling a recreation of a database.
In my dev environment I often recreate the database by using
_schemaExport.Drop(true, true);
_schemaExport.Create(createResult, ...
1
vote
1answer
749 views
How to test generate tables with fluent nhibernate (schemaexport)? in asp.net context
well this is my very very first project with fluent hibernate.i've had small experience in hibernate and nhibernate.
This context is completely new to me since this is a web app project.
So i have my ...
1
vote
1answer
274 views
Create nonclustered primary keys using NHibernate and SchemaExport
We're using SchemaExport via ActiveRecord. By default it generates a table like this:
create table List (
Id UNIQUEIDENTIFIER not null,
Name NVARCHAR(255) null,
OwnerId ...
1
vote
1answer
513 views
NHibernate - SchemaExport Tool Question?
Is it posible to control what objects get generated when using the SchemaExport tool. For example if I have NH mapping files for an EntityA, EntityB, and EntityC how can I exclude C from being ...
0
votes
1answer
153 views
Partial schema export in hibernate
EDIT: Hibernate version is 3.6
I am trying to do a partial schema export using hbm2dll SchemaExport. Therefore I access the current hibernate configuration, retrieve the PersistentClass the table ...
0
votes
0answers
124 views
Hibernate SchemaExport problem with import file
I am trying to export the SQL schema from hibernate mapping (.hbm.xml) files.
I have managed to export it successfully and all the tables, views etc.. are created in the database.
But the problem ...
0
votes
2answers
72 views
Execute Script after NHibernate SchemaExport
Can you execute a script (say, one that inserts constant values into the table) after SchemaExport finishes executing?
0
votes
1answer
256 views
Fluent NHibernate AutoMapping SchemaExport - Change object model and Keeping Data
Is there a way for the fluent automapping to alter a schema when the data object model changes (adding a new property to a class), currently it only drops and recreates the database schema, which ...
0
votes
1answer
59 views
NHibernate SchemaExport With Abstract Class Lists Not Being Created
I am currently trying to create a base class for my domain objects that contains a list because we have to model an excel spreadsheet with very particular requirements.
My classes look like this:
...
0
votes
2answers
332 views
Suppress ORA-00942 errors in ddl create scripts
Say you generate ddl to create all your db tables etc via Hibernate SchemaExport etc. What you get is a script which starts with drop statements at the beginning. Not a problem, as I want this. But ...
0
votes
2answers
198 views
NHibernate does not create Tables
var cfg = new Configuration();
cfg.Configure();
cfg.AddAssembly(typeof(<ClassName>).Assembly);
new SchemaExport(cfg).Execute(false, true, false, false);
The above piece of code is supposed to ...
0
votes
1answer
1k views
SchemaExport with FluentNhibernate
Is there anything wrong with this code. I am not getting anything generated and no exceptions are thrown.
public static void ExportSchema()
{
Configuration cfg = ...
0
votes
1answer
326 views
Using Schema Export Efficiently
We are using NHibernate as our ORM framework.
We have a need to persist classes we load at run time. We do that according to metadata they come with, that holds names and types of the data they have.
...
0
votes
2answers
9k views
Hibernate: How to map a *.hbm.xml file in a different folder?
I have some *.hbm.xml files that are placed in the same folder at the hibernate.cfg.xml file. Now, I want to map some other *.hbm.xml files that are in a subfolder of this folder. How could I do it? ...
0
votes
1answer
693 views
NHibernate SchemaExport with generated properties
I'm wondering if there is a way to get SchemaExport to generate and identity column for a generated property.
<id name="Id" column="Id" type="Guid">
<generator class="guid.comb" />
...