1
0
mirror of synced 2024-11-05 02:59:16 +00:00

Rename fixes

This commit is contained in:
Menno van Lavieren 2017-07-27 16:02:03 +02:00
parent 86ffd5ab2b
commit 8d069e1c48

View File

@ -18,7 +18,7 @@ namespace Tapeti.Flow.SQL
FlowID uniqueidentifier not null, FlowID uniqueidentifier not null,
ServiceID int not null, ServiceID int not null,
CreationTime datetime2(3) not null, CreationTime datetime2(3) not null,
Flowdata nvarchar(max) null, StateJson nvarchar(max) null,
constraint PK_Flow primary key clustered (FlowID) constraint PK_Flow primary key clustered (FlowID)
); );
@ -44,8 +44,8 @@ namespace Tapeti.Flow.SQL
using (var connection = await GetConnection()) using (var connection = await GetConnection())
{ {
var flowQuery = new SqlCommand($"select FlowID, StateJson from {schema}.Flow " + var flowQuery = new SqlCommand($"select FlowID, StateJson from {schema}.Flow " +
"where ServiceID = @ServiceID " + "where ServiceID = @ServiceID ",
"order by FlowID", connection); connection);
var flowServiceParam = flowQuery.Parameters.Add("@ServiceID", SqlDbType.Int); var flowServiceParam = flowQuery.Parameters.Add("@ServiceID", SqlDbType.Int);
flowServiceParam.Value = serviceId; flowServiceParam.Value = serviceId;