The official Fatica Labs Blog! RSS 2.0
# Friday, May 01, 2009

When an field name conflict with some database dialect keywords, NHibernate offer a syntax in the mapping to escape the identifier so that the mapping can behave properly: quote the identifier with the "`" sign.

Unfortunately the dialect implementer is not obliged to espose a list of keywords that needs to be escaped, so I decided to put something in the NHModeller syntax to achieve the same results.

This is the sample entity:

 

NHModel{
Entity From 
{
@Select:int
@Count:int  
Another:string(30)
} in @From
}
The sign @ forces the correct escape generation in the mapping:
 
 <?xml version='1.0' ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="MyTest" namespace="MyTest.Entities">
<class name="From" table="`From`">
<id name="Id" column="Id" access="field.camelcase-underscore">
<generator class="native" />
</id>
<property name="Select" column="`Select`" type="System.Int32" not-null="true" />
<property name="Count" column="`Count`" type="System.Int32" not-null="true" />
<property name="Another" column="Another" type="String" not-null="true" length="30" />
</class>
</hibernate-mapping>
and will issue   the correct db script ( ie MsSql2005 ):
 
 
if exists (select * from dbo.sysobjects where id = object_id(N'[From]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) drop table [From];
create table [From] (
Id INT IDENTITY NOT NULL,
[Select] INT not null,
[Count] INT not null,
Another NVARCHAR(30) not null,
primary key (Id)
);
 
 

 

	

 

Friday, May 01, 2009 5:13:00 PM (GMT Daylight Time, UTC+01:00)  #    Comments [0] - Trackback
NHModeller
# Sunday, April 19, 2009

Well,

Some words about NHModeller. The basic idea is to have a central point where you define the entities of your model, that is not the Xml Mapping itself,neigther a databse schema nor the classes. The idea actually is not so different from modelling starting from the mapping files, but Xml is orrible to write, even with intellisense. NHModeller aim to make simpler writing a mapping, and generates the real one as one of the artifacts.

The project uses MGrammar as a parser generator for the DSL  and Intellipad as the preferred editor. Both these comes from the Microsoft "Oslo" Project, still CTP at present.

The version I have developed till now deal correctly with:

  • Native Keys ( implicit ) or any other simple key ( not composite )
  • Property Mapping
  • One-To-Many mappings
  • Many-To-One mappings
  • Many-To-Many Mappings
  • Lazy / Eager fetching
  • Subclass

 I will post here a screenshot of the actual present version, running a just for fun blog model:

 



When a model is created, we have to launch the code generation. This is achieved by a console application, and intellipad is just spawning the process after asking the parameters.

The UI is not so good, due to my inexperience both in WPF and intellipad :(

 



After the generation we can have a glance to the artifacts generated we have:

  • Classes files
  • Xml for NHibernate mapping
  • And, expecialli thanks to NHibernate SchemaExport class, the DDL for our preferred DB ( at least if it is NH compliant )

 

 



The DDL is the most interesting part, expecially for me that I hate dealing with DB schemas... Here below an example of a DDL created for the blog model for SQL Server and Oracle.

 

 



Well, there is some more works, even if the generator till now let a newbie to start using NHibernate in minutes. We just need to compile the files in an assembly ( remember to put "Compile as" "Embedd Resource" for the hbm files), and start using the model.

Further Step-- Let use SchemaUpdate to modify a running model, deal with Components, Composite Key, Indices, One-to-One mapping. 

Sunday, April 19, 2009 7:51:00 PM (GMT Daylight Time, UTC+01:00)  #    Comments [0] - Trackback
NHModeller
# Wednesday, April 15, 2009

 

The first test of NHModeller in intellipad:

 



A new "Mode" that show sintax coloring and run time error checking. This allow writing the DSL a little better than using the old friend Notepad.
Wednesday, April 15, 2009 5:10:00 PM (GMT Daylight Time, UTC+01:00)  #    Comments [0] - Trackback
NHModeller
# Saturday, April 11, 2009

I decided to stops developing a completely new GUI for NHModeller, but I would like to use Intellipad instead. Intellipad is a higly configurable editor that ships with Microsoft "Oslo" SDK ctp. So far I wrote an initial NHModeller command line version, and decided to start writing a plugin for Intellipad, or, better a "Mode". The task is not so difficult, thanks to these blogs:

Until now i found a little annoying thing: It is not possible to add a command to the MiniBuffer without directly modifying a script that in shipped with Intellipad. It would be really nice if some extension point were exposed, so that a new mode can add new commands to the minibuffer.

 

Saturday, April 11, 2009 10:41:00 PM (GMT Daylight Time, UTC+01:00)  #    Comments [0] - Trackback
NHModeller
# Tuesday, February 17, 2009

I'm working on a little project to satisfy my idea on creating a mapping for NHibernate describing the model entities in a notepad like fashion. The application I created leverage a new SDK from microsof, at present in CTP: Microsoft Oslo SDK.

The application starts from a very simple language, and starting from this creates the clsses, the hbm's and the database script ( Database script at the moment does not work... ;)

). The application deal with collections,references, subclassing, and many-to-many relationship.

Lets have a couple of screenshot, the first one about a relation Books-Authors...

  This is the hbm (whit all the mapping in a single view ):


and this the mapping ( all the classes in a view):

 



A sample with subclassing ( a just for fun financial model )

 




Well, there is still some bugs, but the application really do what expected: a lot of boring code line autogenerated from an intuitive textual DSL.
Tuesday, February 17, 2009 2:40:00 AM (GMT Standard Time, UTC+00:00)  #    Comments [0] - Trackback
NHModeller
# Friday, January 30, 2009

Piccolo problema affrontato al volo oggi: Un client WCF non raggiunge un server quando tra i due c'è un proxy che richiede autenticazione. Le credenziali dell'utente però sono sufficienti ad autenticarsi al proxy, e l'utente ha effettuato già il login. La soluzione è ( xEsempio ) dire a .NET di usare le credenziali attive, questo si fa modificanto/aggiungendo la seguenter sezione nel machine.config:

 <system.net>

<defaultProxy enabled="true" useDefaultCredentials="true">

</defaultProxy>

</system.net>

 

Friday, January 30, 2009 2:40:00 AM (GMT Standard Time, UTC+00:00)  #    Comments [0] - Trackback

# Thursday, January 22, 2009

L'applicazione non è un granchè, almeno non è come dovrebbe essere. Il motivo è che è stata scritta imparando la tecnologia "al momento", e quindi la qualità lascia un po' a desiderare.

Servono gli ultimi chart di microsoft per poter compilare l'esempio.

 

QuasiChart.zip (2.26 mb)

Thursday, January 22, 2009 3:18:00 AM (GMT Standard Time, UTC+00:00)  #    Comments [0] - Trackback

# Wednesday, December 31, 2008

Ho da poco pubblicato questo video sul forum di Channel9. Vale davvero scaricare il Microsoft OSLO SDK vedere quanto è facile scrivere una semplice grammatica ed usarla immediatamente.

Il tool intellipad ( compreso nell SDK di cui sopra ) permette di avere un feedback immediato di come il linguaggio che si sta implementando sia interpretato, permettendo uno sviluppo interattivo della grammatrica stessa. 

Wednesday, December 31, 2008 4:16:00 PM (GMT Standard Time, UTC+00:00)  #    Comments [0] - Trackback

# Friday, May 16, 2008

The ListView VirtualMode allow very efficient data display of very large resultset. We can mix this ability with Linq Skip(n) and Take(m) to bind a IQueryable<T> to a virtual list view.  To efficently avoid to query the underlaying database, we have to cache in some way the results with some paging strategy.

Below the solution I used:

public class LinqPager<T>

{

Dictionary<int, List<T>> pages = new Dictionary<int,List<T>>();

IQueryable<T> queryable;

int pageSize;public LinqPager(IQueryable<T> queryable,int pageSize)

{

this.pageSize = pageSize;

this.queryable = queryable;

}

public void InvalidatePages()

{

pages.Clear();

}

public T this[int index]

{

get {int page, offset;

page = index / pageSize;

offset = index % pageSize;

if (!pages.ContainsKey(page))

{

pages[page] =
new List<T>(pageSize);int start = pageSize * page;

pages[page].AddRange(queryable.Skip<T>(start).Take<T>(pageSize));

}

return pages[page][offset];

}

}

}

The class above has a constructor taking an IQueryable<T> and a page size. It will query the DB with chunks pageSize long, and provide an indexer to randomly access the result. This accessor can be used to fill the item on the RetrieveVirtualItem event.
Friday, May 16, 2008 1:43:00 PM (GMT Daylight Time, UTC+01:00)  #    Comments [0] - Trackback

# Tuesday, May 13, 2008

 

We can found more information here. 
The new namespace to investigate inside the library is Microsoft.Practices.CompositeUI.WPF .
Tuesday, May 13, 2008 1:15:00 PM (GMT Daylight Time, UTC+01:00)  #    Comments [0] - Trackback

Archive
<May 2009>
SunMonTueWedThuFriSat
262728293012
3456789
10111213141516
17181920212223
24252627282930
31123456
About the author/Disclaimer

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

© Copyright 2010
Felice Pollano
Sign In
Statistics
Total Posts: 67
This Year: 41
This Month: 2
This Week: 0
Comments: 34
This blog visits
Locations of visitors to this page
All Content © 2010, Felice Pollano
DasBlog theme 'Business' created by Christoph De Baene (delarou) and modified by Felice Pollano