I am using this library to perfom db actions like restore and backups using C#. We all know that we can restore a database by using the command in query analyzer.....

RESTORE DATABASE newDb
FROM DISK = 'c:\me.bak'
WITH MOVE 'me' TO 'C:\Program Files\Microsoft SQL Server\MSSQL\Data\newDb.mdf'


I am stuck at a point that how can i specify the Move attribute through restoreclass of this library...i would appreciate if you can come up with some immediate responses......