c# - Entity Framework backup database - Operating system error 53 (The network path was not found.) -


i trying create backup using following code:

public bool backupdatabase(string filename) {         ministeriodeportesentitydatamodel modeloministerio = new ministeriodeportesentitydatamodel();         modeloministerio.database.executesqlcommand(transactionalbehavior.donotensuretransaction, @"backup database [db9ce858d6b9cb47658934a46901350226]  disk = 'd:\users\octa8_000\documents\isw\backup'  ");         return true; } 

but returns following message:

operating system error 53 (the network path not found)

any ideas doing wrong?


Popular posts from this blog

c# - ODP.NET Oracle.ManagedDataAccess causes ORA-12537 network session end of file -

matlab - Compression and Decompression of ECG Signal using HUFFMAN ALGORITHM -

utf 8 - split utf-8 string into bytes in python -